* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #E4238A 0%, #F139A6 100%);
    --accent-blue: #26607f;
    --accent-blue-hover: #1e4d66;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--primary-gradient);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 2rem;
    align-items: center;
}

.booking-button {
    display: flex;
    align-items: center;
    transform: scale(0.85);
    transform-origin: center center;
}

/* Style the Timely booking button */
.booking-button a,
.booking-button button,
.booking-button [class*="timely"] {
    background: var(--accent-blue) !important;
    color: white !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: background 0.3s ease !important;
}

.booking-button a:hover,
.booking-button button:hover,
.booking-button [class*="timely"]:hover {
    background: var(--accent-blue-hover) !important;
    text-decoration: none !important;
}

.nav-links li {
    margin: 0.5rem 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    display: inline-block;
    line-height: 1.4;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
}

.hero-logo {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--primary-gradient);
}

.services h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
    margin-bottom: 3rem;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #E4238A;
}

.service-icon.upside-down {
    transform: rotate(180deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #E4238A;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E4238A;
}

.service-card p {
    color: #555;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: var(--primary-gradient);
    color: white;
}

.products h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
}

.product-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.product-category:hover {
    background: rgba(255, 255, 255, 0.2);
}

.product-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-category p {
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
    margin-bottom: 2rem;
    color: #E4238A;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--primary-gradient);
}

.contact h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
    margin-bottom: 3rem;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #E4238A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.hours-book-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 24px;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.hours-book-button:hover {
    background: var(--accent-blue-hover);
}

/* Footer */
footer {
    background: #131313;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
}

/* ==========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ========================================== */

/* Large screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .nav-container {
        max-width: 1400px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-links {
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Portrait Tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
    }
    
    .hero-logo {
        max-height: 60vh;
    }
}

/* Services Grid 2x2 Layout for medium screens */
@media (min-width: 600px) and (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Contact Grid 2x2 Layout for medium screens */
@media (min-width: 600px) and (max-width: 1300px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Tablet */
@media (max-width: 768px) {
    header {
        padding: 0;
    }
    
    .nav-container {
        justify-content: center;
        padding: 0 10px;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-links li {
        margin: 0.2rem 0;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
        min-height: auto;
    }
    
    .booking-button {
        transform: scale(0.75);
        margin-left: 0;
    }
    
    .booking-button a,
    .booking-button button,
    .booking-button [class*="timely"] {
        padding: 8px 16px !important;
        font-size: 1rem !important;
        white-space: nowrap !important;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 20px 20px;
    }
    
    .hero-logo {
        max-width: 100%;
        max-height: none;
        height: auto;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .services,
    .products,
    .about,
    .contact {
        padding: 60px 15px;
    }
    
    .services-grid,
    .products-grid,
    .contact-info {
        gap: 1.5rem;
    }
    
    .service-card,
    .product-category,
    .contact-item {
        padding: 1.5rem;
    }
}

/* Small Phone */
@media (max-width: 550px) {
    .nav-container {
        padding: 0 5px;
    }
    
    .nav-links {
        gap: 0.4rem;
    }
    
    .nav-links li {
        margin: 0.1rem 0;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.2rem 0.3rem;
    }
    
    .booking-button {
        transform: scale(0.65);
    }
    
    .booking-button a,
    .booking-button button,
    .booking-button [class*="timely"] {
        padding: 12px 12px 12px 12px !important;
        font-size: 1rem !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .nav-links {
        gap: 0rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }

    .cta-button {
        padding: 12px 30px;
    }

    .hero {
        padding: 50px 10px 30px;
    }

    .services,
    .products,
    .about,
    .contact {
        padding: 50px 10px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card,
    .product-category,
    .contact-item {
        padding: 1.25rem;
    }
}
