/* Services Section Styles */
.services {
    padding: 80px 5%;
    text-align: center;
    background: white;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.subtitle {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 20px;
}

.services h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0;
}

.service-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.icon-cube {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
}

.icon-cube svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.btn-learn-more,
.btn-book-now {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn-book-now {
    background: #000;
    border: 1px solid #000;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-cards {
        flex-direction: column;
        gap: 40px;
    }

    .services h2 {
        font-size: 32px;
    }

    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .service-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-learn-more,
    .btn-book-now {
        width: 100%;
    }
}

:root {
    --primary-color: #2A3B4C;
    --secondary-color: #4A90E2;
    --accent-green: #4CAF50;
    --accent-pink: #FF4081;
    --accent-purple: #9C27B0;
    --background: #F5F7FA;
    --animate-duration: 600ms;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--background);
}

/* Animation helpers */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity var(--animate-duration) ease,
        transform var(--animate-duration) ease;
    transition-delay: var(--animate-delay, 0ms);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="scale-in"] {
    transform: scale(0.96);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

[data-animate="scale-in"].is-visible {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    display: block;
    height: auto;
    max-height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--primary-color);
}

.login-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: min(92vh, 820px);
    padding: 7.5rem 5% 4rem;
    background: linear-gradient(rgba(42, 59, 76, 0.06), rgba(42, 59, 76, 0.06));
    margin-top: 60px;
}

.hero-content {
    max-width: 680px;
}

.hero h1 {
    font-size: clamp(2rem, 3.8vw + 1rem, 3.75rem);
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
    color: #3a4452;
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
    max-width: 52ch;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
}

.secondary-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(42,59,76,0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.secondary-btn:hover, .secondary-btn:focus {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(42,59,76,0.12);
    outline: none;
}

.hero-image {
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Buttons */
.primary-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.primary-btn:hover { opacity: 0.92; }

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: unset;
        padding-top: 7rem;
    }

    .hero-content { max-width: 720px; }
}

@media (max-width: 600px) {
    .hero { padding: 6.5rem 5% 3rem; }
    .hero-buttons { gap: 10px; }
    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn { width: 100%; text-align: center; }
}

/* Services Section */
.services {
    padding: 5rem 5%;
    text-align: center;
    background: white;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.service-card {
    flex: 1;
    padding: 2rem;
    background: var(--background);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Pricing Grid */
.pricing {
    padding: 5rem 5%;
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    padding: 2rem;
    border-radius: 10px;
    color: white;
}

.price-card.green { background: var(--accent-green); }
.price-card.pink { background: var(--accent-pink); }
.price-card.purple { background: var(--accent-purple); }

/* Testimonial Section */
.testimonial {
    padding: 80px 5%;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.testimonial-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    padding: 40px;
}

.star-rating {
    margin-bottom: 20px;
}

.star {
    color: #4A90E2;
    font-size: 24px;
    margin-right: 4px;
}

.testimonial-content blockquote {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #000;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.author-title {
    font-size: 16px;
    color: #666;
}

.powered-by img {
    height: 24px;
    opacity: 0.7;
}

.testimonial-nav {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 10px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Testimonials */
@media (max-width: 968px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-content blockquote {
        font-size: 24px;
    }

    .testimonial-nav {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 30px;
    }
}

/* Testimonial slider controls */
.testimonial-slides { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }

/* Optional fade (kept simple for layout stability) */
/*
.testimonial-slide { opacity: 0; transition: opacity 300ms ease; }
.testimonial-slide.active { opacity: 1; }
*/

/* Newsletter Section */
.newsletter {
    padding: 5rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.subscribe-form {
    margin-top: 2rem;
}

.subscribe-form input {
    padding: 1rem;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-right: 1rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 0.5rem 0;
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   =========================================== */

/* Base mobile styles (320px+) */
@media (max-width: 480px) {
    /* Typography adjustments for mobile */
    body {
        font-size: 14px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    /* Navigation mobile styles */
    .navbar {
        padding: 0.75rem 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .logo img {
        max-height: 28px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        border-top: 1px solid #eee;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.75rem 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
        font-weight: 500;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Mobile hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: auto;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 999px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero section mobile */
    .hero {
        padding: 5rem 1rem 3rem;
        margin-top: 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Video wrapper mobile */
    .video-wrapper {
        margin-top: 2rem;
        border-radius: 8px;
    }
    
    /* Brands section mobile */
    .brands {
        padding: 3rem 1rem;
    }
    
    .brands-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-card {
        width: 100%;
        height: auto;
        min-height: 150px;
        padding: 1rem;
    }
    
    .brand-card img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .brand-card .brand-info {
        position: static;
        transform: none;
        opacity: 1;
        background: transparent;
        padding: 0.5rem 0 0 0;
    }
    
    .brand-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .brand-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Testimonial mobile */
    .testimonial {
        padding: 3rem 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .testimonial-nav {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }
    
    /* Footer mobile */
    .site-footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Products page mobile */
    .brands-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-top: 80px;
    }
    
    .brand-logo {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0.5rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
    
    /* Modal mobile */
    .modal-content {
        flex-direction: column;
        gap: 1rem;
        max-width: 95vw;
        min-height: unset;
        padding: 1.5rem;
    }
    
    .modal-image {
        margin-bottom: 1rem;
        height: auto;
    }
    
    .modal-image img {
        max-width: 150px;
        max-height: 150px;
    }
    
    /* Contact page mobile */
    .contact-hero {
        padding: 5rem 1rem 3rem;
        margin-top: 60px;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .info-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* About page mobile */
    .about-overview > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    /* Activities grid mobile */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Team grid mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Partners mobile */
    .partners {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partners img {
        height: 40px;
    }
}

/* Small mobile devices (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .brand-card {
        min-height: 120px;
        padding: 0.75rem;
    }
    
    .product-card {
        padding: 0.75rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
}

/* Large mobile devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Slide-out navigation for large mobile */
    .navbar {
        padding: 0.75rem 1.25rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: auto;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 999px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
        border: none;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 1rem 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        font-weight: 500;
        font-size: 1.1rem;
        color: var(--primary-color);
        transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
        color: #007bff;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Overlay for slide menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .brands-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Tablet styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 7rem 2rem 4rem;
    }
    
    .brands-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop styles (1025px+) */
@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        flex-direction: row;
    }
    
    .nav-links a {
        padding: 0;
        margin: 0 1rem;
        border: none;
    }
}

/* Ensure hamburger is hidden on larger screens */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        flex-direction: row;
    }
    
    .nav-links a {
        padding: 0;
        margin: 0 1rem;
        border: none;
    }
}

/* Large desktop styles (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero {
        padding: 8rem 5% 5rem;
    }
    
    .brands {
        padding: 5rem 5%;
    }
    
    .testimonial {
        padding: 5rem 5%;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .brands {
        padding: 2rem 1rem;
    }
    
    .testimonial {
        padding: 2rem 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve button interactions */
    .primary-btn, .secondary-btn, .add-to-cart, .learn-more-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better form inputs on mobile */
    input, select, textarea {
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    /* Improve modal on mobile */
    .product-modal, .workshop-modal {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
}

/* About Page Styles */
.about-overview {
    padding: 5rem 5%;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.mission-vision {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.6;
}

.what-we-do {
    padding: 5rem 5%;
    background: white;
}

.what-we-do h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.activities-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.activities-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 1.5rem;
}

.activity-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-section {
    padding: 5rem 5%;
    background: white;
}

.team-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.team-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partners-section {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.partners-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
}

.partner-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.milestones-section {
    padding: 5rem 5%;
    background: white;
}

.milestones-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.milestone-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-5px);
}

.milestone-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.milestone-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.milestone-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-btn {
    background: #0ea5e9;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #0284c7;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .what-we-do h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-overview {
        padding: 3rem 1rem;
    }
    
    .mission-vision {
        padding: 3rem 1rem;
    }
    
    .what-we-do {
        padding: 3rem 1rem;
    }
    
    .overview-content h2 {
        font-size: 1.75rem;
    }
    
    .what-we-do h2 {
        font-size: 1.75rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .testimonial-nav,
    .site-footer {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        padding: 2rem 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Brands Section */
.brands {
    padding: 80px 5%;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    width: 100%;
    max-width: 400px;
    flex-basis: calc(33.33% - 20px);
}

/* Brand Card Colors */
.brand-card.lime {
    background: linear-gradient(135deg, #CDDC39, #8BC34A);
}

.brand-card.coral {
    background: linear-gradient(135deg, #FF7043, #FF5252);
}

.brand-card.purple {
    background: linear-gradient(135deg, #AB47BC, #7E57C2);
}

.brand-card.violet {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.brand-card.yellow {
    background: linear-gradient(135deg, #FDD835, #FFB300);
}

.brand-logo-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
}

.brand-text p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Hover Effects */
.brand-card {
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-logo-container {
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo-container {
    transform: scale(1.05);
}

/* Responsive Design for Brands */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Services Page Styles */
.services-hero {
    background: #000;
    color: white;
    padding: 120px 5% 80px;
    text-align: left;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero .label {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.book-now-btn {
    background: white;
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.learn-more-btn {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 1px solid white;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

/* Service Details Section */
.service-details {
    padding: 80px 5%;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-info {
    direction: ltr;
}

.service-info {
    padding-right: 40px;
}

.service-icon {
    margin-bottom: 24px;
}

.service-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.stat h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat p {
    font-size: 14px;
    margin: 0;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature p {
    font-size: 14px;
    margin: 0;
}

.book-now-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.service-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.book-btn {
    padding: 12px 24px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.learn-more-btn {
    padding: 12px 24px;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #000;
    font-weight: 500;
}

/* Responsive Design for Services Page */
@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-info {
        padding-right: 0;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .service-info h2 {
        font-size: 30px;
    }

    .service-stats,
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .service-buttons {
        flex-direction: column;
    }

    .book-now-btn,
    .learn-more-btn,
    .book-btn {
        width: 100%;
    }
}

/* Shop Page Styles */
.shop-hero {
    background: linear-gradient(rgba(42, 59, 76, 0.06), rgba(42, 59, 76, 0.06));
    color: inherit;
    padding: 7.5rem 5% 4rem;
    text-align: left;
    margin-top: 60px;
}

.shop-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.shop-hero .label {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.shop-hero h1 {
    font-size: clamp(2rem, 3.8vw + 1rem, 3.2rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.shop-hero p {
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
    margin-bottom: 28px;
    opacity: 0.9;
    max-width: 52ch;
}

/* .shop-actions now uses .hero-buttons shared styles */

.view-btn {
    background: #000;
    color: white;
    padding: 12px 32px;
    border: 1px solid white;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.cart-btn {
    background: white;
    color: black;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

/* Products Section */
.products {
    padding: 80px 5%;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    color: #666;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info .category {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.product-info .price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

.view-all {
    display: block;
    margin: 0 auto;
    padding: 16px 32px;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: #000;
    color: white;
}

/* Responsive Design for Products */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 580px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }
}

/* Filters Section */
.filters {
    padding: 80px 5%;
    background: white;
    text-align: center;
}

.filters .label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    color: #666;
}

.filters h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filters > p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.filter-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.filter-feature {
    text-align: center;
}

.feature-image {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.filter-feature:hover .feature-image img {
    transform: scale(1.05);
}

.filter-feature h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.filter-feature p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.apply-btn {
    padding: 12px 32px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.reset-btn {
    padding: 12px 32px;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design for Filters */
@media (max-width: 968px) {
    .filter-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters h2 {
        font-size: 30px;
    }
}

@media (max-width: 580px) {
    .filter-features {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
    }

    .apply-btn,
    .reset-btn {
        width: 100%;
    }
}

/* Featured Products Section */
.featured-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 5%;
    background: white;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    color: #666;
}

.featured-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
    line-height: 1.2;
}

.featured-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
}

.feature-list li:before {
    content: "•";
    margin-right: 12px;
    color: #000;
}

.featured-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.add-btn {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: #000;
    color: white;
}

.view-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.view-link .arrow {
    transition: transform 0.3s ease;
}

.view-link:hover .arrow {
    transform: translateX(4px);
}

.featured-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Second Featured Section */
.featured-products.alt {
    background: #f8f8f8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.feature-box p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Responsive Design for Featured Sections */
@media (max-width: 968px) {
    .featured-products {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-content h2 {
        font-size: 36px;
    }

    .featured-image {
        min-height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .featured-content h2 {
        font-size: 28px;
    }

    .featured-buttons {
        flex-direction: column;
        width: 100%;
    }

    .add-btn,
    .view-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: #000;
    color: white;
    padding: 120px 5% 80px;
    text-align: left;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .label {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 5%;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.contact-info > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.info-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    padding: 24px;
    background: #f8f8f8;
    border-radius: 12px;
}

.info-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #333;
}

/* Map Section */
.map-section {
    padding: 80px 5%;
    background: #f8f8f8;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-items {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 580px) {
    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 24px;
    }
}

/* Newsletter Hero Section */
.newsletter-hero {
    background: #000;
    color: white;
    padding: 120px 5%;
    text-align: center;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.newsletter-content p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.newsletter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.subscribe-btn {
    padding: 12px 32px;
    background: white;
    color: black;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.explore-btn {
    padding: 12px 32px;
    background: transparent;
    color: white;
    border: 1px solid white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    opacity: 0.9;
}

.explore-btn:hover {
    background: white;
    color: black;
}

/* Blog Listing Section */
.blog-listing {
    padding: 80px 5%;
    background: white;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.blog-header .label {
    display: inline-block;
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.blog-header p {
    font-size: 18px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-content .category {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.4;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.author span {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.post-info {
    font-size: 14px;
    color: #666;
}

.post-info span {
    margin: 0 4px;
}

.blog-actions {
    text-align: center;
}

.view-all-btn {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #000;
    color: white;
}

/* Subscribe Section */
.subscribe-section {
    padding: 80px 5%;
    background: #f8f8f8;
    text-align: center;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.subscribe-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.subscribe-form button {
    padding: 12px 32px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #333;
}

.privacy-note {
    font-size: 14px;
    color: #666;
}

/* Responsive Design for Blog Sections */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .newsletter-content h1 {
        font-size: 36px;
    }

    .newsletter-buttons {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form button {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .newsletter-content h1 {
        font-size: 28px;
    }

    .blog-header h2 {
        font-size: 28px;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
}

.placeholder-text {
    color: #666;
    font-size: 16px;
}

.author-placeholder {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
}

/* Training Programs Page Styles */
.training-hero {
    background-color: #000;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.training-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.training-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.training-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.program-details li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.courses-list {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.course-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-date {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-right: 1.5rem;
}

.course-date .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.course-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.course-info {
    flex: 1;
}

.course-info h3 {
    margin: 0 0 0.5rem 0;
}

.course-info p {
    color: #666;
    margin: 0 0 0.5rem 0;
}

.spots-left {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .course-item {
        flex-direction: column;
        text-align: center;
    }

    .course-date {
        margin: 0 0 1rem 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.product-modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    align-items: center; justify-content: center;
}

.product-modal .modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.modal-image {
    flex: 1 1 250px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.modal-image img {
    max-width: 200px;
    max-height: 300px;
    border-radius: 8px;
}

.modal-details {
    flex: 2 1 300px;
    min-width: 220px;
}

.modal-details h2 {
    margin-top: 0;
    font-size: 2rem;
}

.modal-price {
    color: #2e7d32;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.modal-qty {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.modal-qty button {
    width: 32px; height: 32px;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    background: #f8f8f8;
    cursor: pointer;
}

.modal-qty input {
    width: 50px;
    text-align: center;
    margin: 0 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 32px;
}

.modal-add {
    margin-top: 1rem;
    width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    .product-modal .modal-content {
        flex-direction: column;
        padding: 1rem;
    }
    .modal-image {
        margin-right: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }
}

.brand-card.placeholder {
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    width: 100%;
    max-width: 400px;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
} 

/* Testimonial slider animations (overrides) */
.testimonial-slides { position: relative; transition: height 350ms ease; min-height: 460px; }
@media (max-width: 968px) { .testimonial-slides { min-height: 420px; } }
@media (max-width: 600px) { .testimonial-slides { min-height: 380px; } }
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: block; /* override earlier display:none */
  opacity: 0;
  transform: translateX(0);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
/* directional helpers */
.testimonial-slide.enter-from-right { transform: translateX(24px); }
.testimonial-slide.enter-from-left  { transform: translateX(-24px); }
.testimonial-slide.exit-to-left     { opacity: 0; transform: translateX(-24px); }
.testimonial-slide.exit-to-right    { opacity: 0; transform: translateX(24px); } 

/* Footer (redesigned) */
.site-footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo { height: 40px; width: auto; display: block; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-tagline { opacity: 0.9; margin-bottom: 1rem; max-width: 36ch; }

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 { margin-bottom: 1rem; font-size: 1.05rem; }

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: 0.5rem 0; display: flex; align-items: center; gap: 10px; }
.footer-list a { color: white; text-decoration: none; opacity: 0.95; }
.footer-list a:hover { opacity: 1; text-decoration: underline; }

.icon { display: inline-flex; width: 20px; height: 20px; color: white; opacity: 0.9; }
.icon svg { width: 20px; height: 20px; display: block; }

.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: white; opacity: 0.9; transition: all 0.2s ease; }
.social-link:hover { opacity: 1; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.social-link svg { width: 18px; height: 18px; }

.footer-form { display: flex; gap: 10px; margin-bottom: 8px; }
.footer-form input { flex: 1; min-width: 180px; padding: 10px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; outline: none; }
.footer-form input::placeholder { color: rgba(255,255,255,0.8); }
.footer-btn { padding: 10px 14px; background: #fff; color: #000; border: 0; border-radius: 6px; font-weight: 600; cursor: pointer; }
.footer-note { display: block; opacity: 0.85; font-size: 0.85rem; }

.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-legal { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; }
.footer-legal a { color: white; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; opacity: 1; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-form { flex-direction: column; }
  .footer-btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
} 

/* Make contact hero visually match the main hero section */
.contact-hero {
    background: linear-gradient(rgba(42, 59, 76, 0.06), rgba(42, 59, 76, 0.06));
    color: inherit;
    padding: 7.5rem 5% 4rem;
    text-align: left;
}

.contact-hero h1 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3.8vw + 1rem, 3.75rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.contact-hero p {
    color: #3a4452;
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
    max-width: 52ch;
    opacity: 1;
} 

/* Blog Hero Section styled like .hero */
.hero.blog-hero {
    background: linear-gradient(rgba(42, 59, 76, 0.06), rgba(42, 59, 76, 0.06));
    color: inherit;
    padding: 7.5rem 5% 4rem;
    margin-top: 60px;
}
.hero.blog-hero h1 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3.8vw + 1rem, 3.75rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.hero.blog-hero p {
    color: #3a4452;
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
    max-width: 52ch;
    opacity: 1;
}

/* Blog Content Layout */
.blog-content .content-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 80px;
    align-items: flex-start;
}
.blog-content .main-content {
    flex: 2;
    min-width: 0;
}
.blog-content .sidebar {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 32px 24px;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .blog-content .content-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    .blog-content .sidebar {
        max-width: 100%;
        width: 100%;
        margin-top: 32px;
    }
} 

/* Training Hero Section styled like .hero */
.hero.training-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Ensures vertical stacking */
    background: linear-gradient(rgba(42, 59, 76, 0.06), rgba(42, 59, 76, 0.06));
    color: inherit;
    padding: 7.5rem 5% 4rem;
    margin-top: 60px;
    min-height: min(92vh, 820px); /* Ensures vertical centering in viewport */
}

.hero.training-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.hero.training-hero h1 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3.8vw + 1rem, 3.75rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.hero.training-hero p {
    color: #3a4452;
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
    max-width: 52ch;
    opacity: 1;
}
.hero.training-hero .primary-btn {
    margin-top: 1.5rem;
} 

.program-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
}
.program-modal.active {
    display: flex;
}
.program-modal .modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(42,59,76,0.18);
    position: relative;
    text-align: left;
}
.program-modal .close-modal {
    position: absolute;
    top: 18px; right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.program-modal .close-modal:hover {
    color: var(--primary-color);
} 

.footer-section a svg {
    vertical-align: middle;
    margin-right: 6px;
}
.footer-section a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
} 

@media (max-width: 600px) {
  .brands-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0.5rem;
    margin-top: 70px;
  }
  .brand-logo {
    width: auto !important;
    max-width: 80px;
    max-height: 50px;
    height: auto;
    margin: 0 0.5rem;
    flex-shrink: 0; /* Prevent shrinking so horizontal scroll works */
    display: block;
  }
}