/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --charcoal: #2E2E2E;
    --maroon: #6e0001;
    --deep-teal: #0B5E58;
    --teal: #0F766E;
    --mustard: #F0A428;
    --mustard-gradient: linear-gradient(135deg, #E89110 0%, #F5B942 100%);
    --off-white: #FAF9F7;
    
    /* Harmonized Palette */
    --primary-color: var(--mustard);
    --secondary-color: var(--teal);
    --accent-color: var(--maroon);
    --text-dark: var(--charcoal);
    --text-light: var(--off-white);
    --bg-light: #F5F3EF;
    --bg-white: #FFFFFF;
    --kids-color: #E89110;
    --adults-color: #0F766E;
    --shadow: 0 4px 6px rgba(46, 46, 46, 0.1);
    --shadow-lg: 0 10px 25px rgba(46, 46, 46, 0.15);

    /* Type Scale */
    --font-section-title: 2.2rem;   /* Section headings e.g. "Regular Classes" */
    --font-card-title: 1.5rem;      /* Card headings e.g. "Kids – Beginner Mode" */
    --font-sub-heading: 1.2rem;     /* Sub-section headings, product titles */
    --font-section-sub: 1.1rem;     /* Section subtitle / intro line */
    --font-body: 1rem;              /* Regular text */
    --font-small: 0.9rem;           /* Labels, meta info */
    --font-xs: 0.85rem;             /* Fine print, tags */
}

/* Responsive Font Scaling for Tablets */
@media (max-width: 768px) {
    :root {
        --font-section-title: 1.9rem;   /* Was 2.2rem */
        --font-card-title: 1.35rem;     /* Was 1.5rem */
        --font-sub-heading: 1.15rem;    /* Was 1.2rem */
        --font-section-sub: 1rem;       /* Was 1.05rem */
        --font-body: 1rem;              /* Keep at 1rem - 16px for readability */
        --font-small: 0.88rem;          /* Was 0.9rem */
        --font-xs: 0.8rem;              /* Was 0.85rem */
    }
}

/* Responsive Font Scaling for Mobile */
@media (max-width: 480px) {
    :root {
        --font-section-title: 1.7rem;   /* Smaller for mobile screens */
        --font-card-title: 1.25rem;     /* Readable on small screens */
        --font-sub-heading: 1.1rem;     /* Proper hierarchy */
        --font-section-sub: 0.95rem;    /* Slightly smaller */
        --font-body: 1rem;              /* 16px - prevents iOS auto-zoom */
        --font-small: 0.875rem;         /* 14px minimum readable */
        --font-xs: 0.8rem;              /* Small but still legible */
    }
}

html {
    color-scheme: light only;
    scroll-behavior: smooth;
}

body {
    background: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    font-size: var(--font-body);
}

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

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
}

.section-title {
    font-size: var(--font-section-title);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    display: none;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-section-sub);
    color: #555;
    margin-bottom: 2rem;
}

.title-accent, .title-accent-maroon {
    color: var(--maroon);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(232, 145, 16, 0.13);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    padding-right: 1.5rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(1.15) contrast(1.1) saturate(1.1) drop-shadow(0 3px 8px rgba(232, 145, 16, 0.4)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: brightness(1.2) contrast(1.15) saturate(1.15) drop-shadow(0 4px 12px rgba(232, 145, 16, 0.6)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transform: scale(1.02);
}

.monogram-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #6e0001;
    font-weight: 600;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-shadow: none;
    padding: 0.5em 0.8em;
    border-radius: 18px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e89110 0%, #6e0001 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
    opacity: 0.7;
}

.nav-link:hover {
    color: #fff;
    background: linear-gradient(90deg, #e89110 0%, #6e0001 100%);
    box-shadow: 0 2px 12px rgba(232,145,16,0.10), 0 1px 6px rgba(110,0,1,0.10);
}

.nav-link:hover::after {
    width: 80%;
}

/* Navigation Dropdown */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown a:hover {
    background: linear-gradient(90deg, rgba(232, 145, 16, 0.1) 0%, rgba(110, 0, 1, 0.05) 100%);
    color: #6e0001;
    border-left-color: #e89110;
    padding-left: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle:hover span {
    background: var(--maroon);
}

/* Hero Section */
.hero {
    background: url('images/website/home_hero_desktop.png') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    padding-top: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Hero Buttons - Split left and right at bottom with lady in center */
.hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    bottom: 8%;
    left: calc(-5% + 280px);
    gap: 20px;
    z-index: 2;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    display: inline-block;
    padding: 18px 34px;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    animation: fadeInUp 1s ease 0.8s backwards;
    opacity: 1;
}

.hero-btn:nth-child(2) {
    animation-delay: 1s;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.78), rgba(139, 0, 35, 0.82));
    color: #ffffff !important;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, rgba(139, 0, 35, 0.95), rgba(165, 42, 42, 0.95));
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 0, 32, 0.5);
    opacity: 1;
}

.hero-btn-secondary {
    background: rgba(232, 145, 16, 0.78);
    color: #ffffff !important;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(232, 145, 16, 0.95);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 145, 16, 0.5);
    color: #ffffff !important;
    opacity: 1;
}

.hero-btn-tertiary {
    background: rgba(15, 138, 130, 0.78);
    color: #ffffff !important;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btn-tertiary:hover {
    background: rgba(15, 138, 130, 0.95);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 138, 130, 0.5);
    color: #ffffff !important;
    opacity: 1;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Hero Buttons - Responsive */
@media (max-width: 768px) {
    .hero {
        background: url('images/website/home_hero_mobile.png') center top no-repeat;
        background-size: 100% auto;
        min-height: auto;
        height: auto;
        padding: 1.5rem;
        padding-top: 6rem;
        padding-bottom: calc(159.3vw - 6rem);
    }
    
    .hero-buttons {
        position: absolute;
        top: calc(30vw + 6rem + 55px);
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        max-width: 240px;
        bottom: auto;
        right: auto;
    }
    
    .hero-btn {
        padding: 11px 22px;
        font-size: 0.9rem;
        opacity: 1;
    }
    
    .hero-btn-primary {
        background: linear-gradient(135deg, rgba(128, 0, 32, 0.78), rgba(139, 0, 35, 0.82));
        border: 2.5px solid rgba(255, 255, 255, 0.6);
    }
    
    .hero-btn-secondary {
        background: rgba(232, 145, 16, 0.78);
        border: 2.5px solid rgba(255, 255, 255, 0.6);
    }
}

@media (max-width: 480px) {
    .hero {
        background: url('images/website/home_hero_mobile.png') center top no-repeat;
        background-size: 100% auto;
        min-height: auto;
        height: auto;
        padding: 1rem;
        padding-top: 6rem;
        padding-bottom: calc(159.3vw - 6rem);
    }
    
    .hero-buttons {
        position: absolute;
        top: calc(30vw + 6rem + 55px);
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        max-width: 240px;
        bottom: auto;
        right: auto;
    }
    
    .hero-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.875rem;
        min-height: 42px;
        opacity: 1;
    }
    
    .hero-btn-primary {
        background: linear-gradient(135deg, rgba(128, 0, 32, 0.78), rgba(139, 0, 35, 0.82));
        border: 2.5px solid rgba(255, 255, 255, 0.6);
    }
    
    .hero-btn-secondary {
        background: rgba(232, 145, 16, 0.78);
        border: 2.5px solid rgba(255, 255, 255, 0.6);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 145, 16, 0.35);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-title {
    margin-bottom: 1.4rem;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    align-items: center;
}

.hero-title-learn {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    font-size: 2.4rem;
    color: #f0ece6;
    font-weight: 300;
    font-style: italic;
    position: relative;
    animation: fadeInUp 1s ease 0.3s backwards;
    letter-spacing: 0.08em;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-title-paint-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.brush-icon, .brush-stroke-deco {
    display: none;
}

.hero-title-paint {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    font-size: 4.2rem;
    font-weight: 700;
    font-style: italic;
    color: #F0A428;
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-overline {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.1rem;
    animation: fadeInUp 1s ease backwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero-overline::before,
.hero-overline::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.9;
}

.hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.6rem;
    margin-top: 1.6rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}
.hero-pill {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.hero-pill-sep {
    font-size: 0.75rem;
    color: var(--mustard);
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    animation: fadeInUp 1s ease 0.25s backwards;
}

.highlight-text {
    color: var(--mustard);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(46, 46, 46, 0.08);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(46, 46, 46, 0.06);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(240, 164, 40, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 46, 46, 0.1);
}

/* Hero Options Layout */
.hero-options {
    display: none;
}

.hero-option {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 300px;
}



.hero-option:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(232, 145, 16, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(232, 145, 16, 0.2);
}

.option-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.option-description {
    color: #f0f0f0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.option-btn, .btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 1.05rem;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 8px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.03em;
    cursor: pointer;
}

.option-btn:hover, .btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.option-btn:active, .btn:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    transform: translateY(0);
    opacity: 0.9;
}

/* Responsive Design for Hero Options - Maintain Horizontal Layout */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 750px;
        padding: 1.8rem 1.5rem;
    }
    
    .hero-option {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 650px;
        margin: 1.5rem;
        padding: 1.5rem;
    }
    
    .hero-options {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-option {
        padding: 1.5rem 1.2rem;
        min-width: 180px;
    }
    
    .option-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .option-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .option-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        max-width: 100%;
        margin: 1rem;
        padding: 1.2rem;
    }
    
    .hero-options {
        gap: 0.8rem;
        flex-direction: column;
    }
    
    .hero-option {
        padding: 1.2rem 1rem;
        min-width: auto;
    }
    
    .option-title {
        font-size: 1.1rem;
    }
    
    .option-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .option-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: rgba(240, 164, 40, 0.2);
    color: #F0A428 !important;
    border: 1.5px solid #F0A428;
}

.btn-primary:hover {
    background: rgba(240, 164, 40, 0.35);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-primary:active {
    background: rgba(240, 164, 40, 0.25);
    transform: translateY(0);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border: 2px solid var(--off-white);
}

.btn-outline:hover {
    background: rgba(250, 249, 247, 0.15);
    border-color: var(--off-white);
    transform: translateY(-2px);
}

.btn-outline-alt {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline-alt:hover {
    background: rgba(15, 138, 130, 0.1);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: auto;
}

/* CTA Section */
.cta-section {
    padding: 52px 0 60px;
    background: #FDFCFB;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 164, 40, 0.4), transparent);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.cta-content {
    padding: 0;
    width: 100%;
    text-align: center;
}

.cta-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.cta-subtitle {
    font-size: var(--font-section-sub);
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    letter-spacing: 0.01em;
}

.cta-description {
    font-size: var(--font-section-sub);
    color: #5a5a5a;
    max-width: 920px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.cta-desc-highlight {
    color: var(--maroon);
    font-weight: 700;
    font-style: normal;
}

.cta-options {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.cta-option {
    background: #fff;
    padding: 2.8rem 2.2rem 2.4rem;
    border-radius: 20px;
    border: 1px solid rgba(46, 46, 46, 0.07);
    box-shadow: 0 6px 28px rgba(46, 46, 46, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Individual card color themes */
.cta-maroon {
    border-top: none;
    background: linear-gradient(160deg, #fff5f5 0%, #fff 55%);
    border-left: 4px solid var(--maroon);
}
.cta-maroon::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,0,1,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.cta-maroon:hover {
    box-shadow: 0 20px 50px rgba(110, 0, 1, 0.14);
    transform: translateY(-8px) scale(1.01);
    border-left-color: var(--maroon);
}
.cta-maroon .cta-icon { color: var(--maroon); }
.cta-maroon .cta-btn {
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.3);
}
.cta-maroon .cta-btn:hover {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 7px 22px rgba(110, 0, 1, 0.4);
}

.cta-teal {
    border-top: none;
    background: linear-gradient(160deg, #f0faf9 0%, #fff 55%);
    border-left: 4px solid var(--teal);
}
.cta-teal::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,118,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-teal:hover {
    box-shadow: 0 20px 50px rgba(15, 118, 110, 0.14);
    transform: translateY(-8px) scale(1.01);
}
.cta-teal .cta-icon { color: var(--teal); }
.cta-teal .cta-btn {
    background: linear-gradient(135deg, #0F8A82, #0F766E);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}
.cta-teal .cta-btn:hover {
    background: linear-gradient(135deg, #0fa89e, #0F8A82);
    box-shadow: 0 7px 22px rgba(15, 118, 110, 0.4);
}

.cta-mustard {
    border-top: none;
    background: linear-gradient(160deg, #FFF8EC 0%, #FFFDF7 55%, #fff 100%);
    border-left: 4px solid var(--mustard);
    position: relative;
    overflow: hidden;
}

.cta-mustard::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,164,40,0.13) 0%, transparent 70%);
    pointer-events: none;
}
.cta-mustard::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,164,40,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-mustard:hover {
    box-shadow: 0 20px 50px rgba(240, 164, 40, 0.22);
    transform: translateY(-8px) scale(1.01);
}
.cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 1.4rem;
    text-align: left;
    width: 100%;
}

.cta-bullets li {
    font-size: var(--font-small);
    color: #3a3a3a;
    padding: 0.35rem 0 0.35rem 1.6rem;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cta-bullets li:last-child {
    border-bottom: none;
}

.cta-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mustard);
    font-weight: 700;
}

.cta-mustard .cta-bullets li::before {
    color: #b07a10;
}

.cta-mustard .cta-icon { color: #b07a10; }

.cta-maroon .cta-bullets li::before {
    color: var(--maroon);
}

.cta-teal .cta-bullets li::before {
    color: var(--teal);
}

.cta-mustard .cta-option-title { color: #3a3a3a; }
.cta-mustard .cta-btn {
    background: linear-gradient(135deg, #c98c10, #b07a10);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(176, 122, 16, 0.3);
}
.cta-mustard .cta-btn:hover {
    background: linear-gradient(135deg, #dba020, #c98c10);
    box-shadow: 0 7px 22px rgba(176, 122, 16, 0.4);
}

.cta-icon {
    width: 64px;
    height: 64px;
    display: block;
    opacity: 0.9;
    flex-shrink: 0;
}

.cta-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    transition: transform 0.3s ease;
}
.cta-option:hover .cta-icon-wrap {
    transform: scale(1.1);
}

.cta-maroon .cta-icon-wrap {
    background: rgba(110, 0, 1, 0.08);
    box-shadow: 0 0 0 6px rgba(110,0,1,0.05);
}

.cta-teal .cta-icon-wrap {
    background: rgba(15, 118, 110, 0.08);
    box-shadow: 0 0 0 6px rgba(15,118,110,0.05);
}

.cta-mustard .cta-icon-wrap {
    background: rgba(240, 164, 40, 0.12);
    box-shadow: 0 0 0 6px rgba(240,164,40,0.07);
}

.cta-option-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    letter-spacing: 0;
}

.cta-option-description {
    font-size: 0.9rem;
    color: #3a3a3a;
    font-weight: 600;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0;
    font-style: normal;
    flex: 1;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    margin-top: auto;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.25);
}

.cta-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(46, 46, 46, 0.12);
    transition: all 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(46, 46, 46, 0.16);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .cta-wrapper {
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-options {
        gap: 1.4rem;
    }
    
    .cta-option {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0 70px;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .cta-options {
        gap: 1rem;
        flex-direction: column;
    }
    
    .cta-option {
        padding: 1.8rem 1.5rem;
    }
    
    .cta-content .trust-grid {
        margin-top: 2.5rem;
    }
    
    .cta-option-title {
        font-size: 1.2rem;
    }
    
    .cta-btn {
        padding: 9px 22px;
        font-size: 0.8rem;
    }
}

/* Meet Mamta Section */
.meet-mamta {
    scroll-margin-top: 75px;
    padding: 52px 0 60px;
    background: #F7F3EE;
    position: relative;
}

.meet-mamta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 0, 1, 0.25), transparent);
}

.mamta-inner {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.mamta-image-wrap {
    flex: 0 0 300px;
    position: relative;
}

.mamta-image-wrap::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--mustard);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}

.mamta-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.mamta-text {
    flex: 1;
    padding-top: 0.5rem;
}

.mamta-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.mamta-subtitle {
    font-size: var(--font-sub-heading);
    color: #5a5a5a;
    font-style: italic;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(110, 0, 1, 0.15);
}

.mamta-text p {
    font-size: var(--font-body);
    color: #3a3a3a;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.mamta-highlight {
    color: var(--maroon);
    font-style: italic;
    font-weight: 700;
}

.mamta-accent {
    color: var(--maroon);
    font-weight: 700;
}

.mamta-brand {
    color: var(--maroon);
    font-weight: 700;
}

.mamta-invite {
    font-size: 1.05rem !important;
    font-style: italic;
    color: #4a4a4a !important;
    border-left: 3px solid var(--mustard);
    padding-left: 1rem;
    margin-top: 1.6rem !important;
}

.mamta-welcome {
    font-size: 1.05rem !important;
    font-weight: 600;
    color: var(--maroon) !important;
    margin-top: 0.5rem !important;
}

@media (max-width: 768px) {
    .mamta-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .mamta-image-wrap {
        flex: 0 0 auto;
        width: 220px;
        margin: 0 auto;
    }

    .mamta-text {
        text-align: center;
    }

    .mamta-title {
        font-size: 1.9rem;
    }
}

/* About Section */
.about {
    padding: 48px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder svg {
    width: 80%;
    height: 80%;
}

/* Classes Section */
.classes {
    padding: 48px 0;
    background: var(--bg-light);
}

.classes .section-title::after {
    display: none;
}

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

.class-card {
    background: #fff;
    padding: 2.8rem 2.2rem 2.4rem;
    border-radius: 20px;
    border: 1px solid rgba(46, 46, 46, 0.07);
    box-shadow: 0 6px 28px rgba(46, 46, 46, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.class-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(46, 46, 46, 0.12);
}

/* Kids Card Maroon Styling */
.kids-card-maroon {
    border-top: none;
    background: linear-gradient(160deg, #fff5f5 0%, #fff 55%);
    border-left: 4px solid var(--maroon);
}

.kids-card-maroon::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,0,1,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.kids-card-maroon:hover {
    box-shadow: 0 20px 50px rgba(110, 0, 1, 0.14);
    transform: translateY(-8px) scale(1.01);
}

/* Kids Card Mustard Styling */
.kids-card-mustard {
    border-top: none;
    background: linear-gradient(160deg, #FFF8EC 0%, #FFFDF7 55%, #fff 100%);
    border-left: 4px solid var(--mustard);
}

.kids-card-mustard::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,164,40,0.13) 0%, transparent 70%);
    pointer-events: none;
}

.kids-card-mustard::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,164,40,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.kids-card-mustard:hover {
    box-shadow: 0 20px 50px rgba(240, 164, 40, 0.22);
    transform: translateY(-8px) scale(1.01);
}

/* Adults Card Styling */
.adults-card {
    border-top: none;
    background: linear-gradient(160deg, #f0faf9 0%, #fff 55%);
    border-left: 4px solid #0F766E;
}

.adults-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,118,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.adults-card:hover {
    box-shadow: 0 20px 50px rgba(15, 118, 110, 0.14);
    transform: translateY(-8px) scale(1.01);
}

/* Class Card Icons */
.class-card .cta-icon {
    width: 64px;
    height: 64px;
    display: block;
    opacity: 0.9;
    flex-shrink: 0;
}

.class-card .cta-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.class-card:hover .cta-icon-wrap {
    transform: scale(1.1);
}

.kids-card-maroon .cta-icon-wrap {
    background: rgba(110, 0, 1, 0.08);
    box-shadow: 0 0 0 6px rgba(110,0,1,0.05);
}

.kids-card-maroon .cta-icon {
    color: var(--maroon);
}

.kids-card-mustard .cta-icon-wrap {
    background: rgba(240, 164, 40, 0.12);
    box-shadow: 0 0 0 6px rgba(240,164,40,0.07);
}

.kids-card-mustard .cta-icon {
    color: #b07a10;
}

.adults-card .cta-icon-wrap {
    background: rgba(15, 118, 110, 0.08);
    box-shadow: 0 0 0 6px rgba(15,118,110,0.05);
}

.adults-card .cta-icon {
    color: var(--teal);
}

.card-description {
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.6;
    font-size: var(--font-body);
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.class-details {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
    margin: 0.8rem 0 1.4rem;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.class-details li {
    font-size: var(--font-small);
    color: #3a3a3a;
    padding: 0.35rem 0 0.35rem 0;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.class-details li:last-child {
    border-bottom: none;
}

.class-details strong {
    color: var(--text-dark);
}

.enrollment-bonus {
    background: linear-gradient(135deg, #FEF7E5, #F5F3EF);
    border-left: 4px solid var(--mustard);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.enrollment-bonus h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.enrollment-bonus p {
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.enrollment-bonus ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.enrollment-bonus ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    text-align: left;
}

.enrollment-bonus ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Class Card Button Styling */
.kids-card-maroon .cta-btn {
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.3);
    display: inline-block;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.kids-card-maroon .cta-btn:hover {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 7px 22px rgba(110, 0, 1, 0.4);
    transform: translateY(-2px);
}

.kids-card-mustard .cta-btn {
    background: linear-gradient(135deg, #c98c10, #b07a10);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(176, 122, 16, 0.3);
    display: inline-block;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.kids-card-mustard .cta-btn:hover {
    background: linear-gradient(135deg, #dba020, #c98c10);
    box-shadow: 0 7px 22px rgba(176, 122, 16, 0.4);
    transform: translateY(-2px);
}

.adults-card .cta-btn {
    background: linear-gradient(135deg, #0F8A82, #0F766E);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
    display: inline-block;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.adults-card .cta-btn:hover {
    background: linear-gradient(135deg, #0fa89e, #0F8A82);
    box-shadow: 0 7px 22px rgba(15, 118, 110, 0.4);
    transform: translateY(-2px);
}

/* Timezone Guide Section */
.timezone-guide-section {
    padding: 3rem 0 2rem;
    background: #fff;
}

.timezone-guide-intro {
    text-align: center;
    margin: 1rem auto 2.5rem;
    max-width: 700px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.timezone-selector-intro {
    text-align: center;
    margin: 2.5rem auto 2rem;
    max-width: 700px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Batch Types Grid */
.batch-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto 2.5rem;
    max-width: 900px;
}

/* Batch List Container */
.batch-list-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.batch-list-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* USA/Canada batches - subtle teal tint */
.batch-list-item[data-batch*="-us"] {
    background: linear-gradient(135deg, #f0fdf9, #ffffff);
    border-left: 3px solid rgba(15, 118, 110, 0.3);
}

/* Australia batches - subtle warm tint */
.batch-list-item[data-batch*="-au"] {
    background: linear-gradient(135deg, #fffbf0, #ffffff);
    border-left: 3px solid rgba(240, 164, 40, 0.3);
}

.batch-list-item.active {
    box-shadow: 0 4px 16px rgba(110, 0, 1, 0.15);
}

.batch-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    cursor: pointer;
    background: transparent;
}

.batch-list-info {
    flex: 1;
}

.batch-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.35rem 0;
}

.batch-list-meta {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.batch-list-toggle {
    padding: 0.6rem 1.25rem;
    background: var(--maroon);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* USA/Canada batch buttons - teal */
.batch-list-item[data-batch*="-us"] .batch-list-toggle {
    background: #0F766E;
}

.batch-list-item[data-batch*="-us"] .batch-list-toggle:hover {
    background: #0d5f58;
    transform: translateY(-2px);
}

/* Australia batch buttons - warm mustard */
.batch-list-item[data-batch*="-au"] .batch-list-toggle {
    background: #F0A428;
}

.batch-list-item[data-batch*="-au"] .batch-list-toggle:hover {
    background: #d89020;
    transform: translateY(-2px);
}

.batch-list-toggle:hover {
    background: #8B0000;
    transform: translateY(-2px);
}

.batch-list-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    padding: 0 1.5rem;
}

.batch-list-item.active .batch-list-details {
    padding: 0 1.5rem 1.5rem;
}

.batch-list-details .batch-details {
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.batch-list-details .batch-details p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .batch-list-header {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .batch-list-title {
        font-size: 1rem;
    }
    
    .batch-list-meta {
        font-size: 0.8rem;
    }
    
    .batch-list-toggle {
        width: 100%;
    }
    
    .batch-list-details {
        padding: 0 1rem;
    }
    
    .batch-list-item.active .batch-list-details {
        padding: 0 1rem 1rem;
    }
}

.batch-type-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid rgba(110, 0, 1, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.batch-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--maroon);
    box-shadow: 0 8px 24px rgba(110, 0, 1, 0.15);
}

.batch-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.batch-type-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.batch-type-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Batch Type Additional Styles */
.timezone-badge-small {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(110, 0, 1, 0.1), rgba(110, 0, 1, 0.05));
    color: var(--maroon);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(110, 0, 1, 0.2);
}

.starting-soon-small {
    background: linear-gradient(135deg, rgba(176, 122, 16, 0.15), rgba(176, 122, 16, 0.08));
    color: #9a6800;
    border-color: rgba(176, 122, 16, 0.25);
}

.batch-timing {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(110, 0, 1, 0.1);
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.batch-timing strong {
    color: var(--maroon);
    display: block;
    margin-bottom: 0.3rem;
}

.timezone-batches {
    transition: opacity 0.3s ease;
}

.batch-details {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(110, 0, 1, 0.1);
    text-align: left;
}

.batch-details p {
    font-size: 0.9rem;
    color: #555;
    margin: 0.6rem 0;
    line-height: 1.5;
}

.batch-details strong {
    color: var(--maroon);
    font-weight: 600;
}

.batch-type-card .cta-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.batch-type-card .cta-icon {
    color: var(--maroon);
}

/* Collapsible Batch Cards - Colorful Version */
.batch-card-maroon {
    background: linear-gradient(160deg, #fff5f5 0%, #fff 55%);
    border-left: 4px solid var(--maroon);
    position: relative;
    overflow: hidden;
}

.batch-card-maroon::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,0,1,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.batch-card-maroon .cta-icon {
    color: var(--maroon);
}

.batch-card-mustard {
    background: linear-gradient(160deg, #FFF8EC 0%, #FFFDF7 55%, #fff 100%);
    border-left: 4px solid var(--mustard);
    position: relative;
    overflow: hidden;
}

.batch-card-mustard::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,164,40,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.batch-card-mustard .cta-icon {
    color: var(--mustard);
}

.batch-card-teal {
    background: linear-gradient(160deg, #f0faf9 0%, #fff 55%);
    border-left: 4px solid #0F766E;
    position: relative;
    overflow: hidden;
}

.batch-card-teal::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,118,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.batch-card-teal .cta-icon {
    color: #0F766E;
}

.batch-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    user-select: none;
}

.batch-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.batch-header-text {
    flex: 1;
    text-align: center;
    width: 100%;
}

.batch-toggle-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.batch-card-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 1.5rem;
}

/* Enroll Buttons */
.batch-enroll-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.batch-enroll-maroon {
    background: var(--maroon);
    color: white;
}

.batch-enroll-maroon:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110,0,1,0.3);
}

.batch-enroll-mustard {
    background: var(--mustard);
    color: #333;
}

.batch-enroll-mustard:hover {
    background: #d4940a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240,164,40,0.3);
}

.batch-enroll-teal {
    background: #0F766E;
    color: white;
}

.batch-enroll-teal:hover {
    background: #0d5f58;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15,118,110,0.3);
}

/* Mobile Collapsible Behavior */
@media (max-width: 768px) {
    .batch-toggle-icon {
        opacity: 1;
        pointer-events: auto;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        z-index: 10;
        cursor: pointer;
        padding: 0.5rem;
        margin: -0.5rem;
    }

    .batch-card-header {
        padding: 0.75rem 1rem;
        position: relative;
        cursor: pointer;
    }

    .batch-card-content {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }

    .batch-type-card.expanded .batch-card-content {
        max-height: 3000px;
        opacity: 1;
        margin-top: 1.5rem;
    }

    .batch-type-card.expanded .batch-toggle-icon {
        transform: translateY(-50%) rotate(180deg);
    }

    .batch-header-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding-right: 2rem;
    }

    .batch-header-text {
        text-align: center;
    }
}

/* Desktop - Always Show Content */
@media (min-width: 769px) {
    .batch-type-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }
}

/* Class Structure Info */
.class-structure-info {
    background: linear-gradient(135deg, #FEF7E5, #F5F3EF);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    border: 1px solid rgba(240, 164, 40, 0.2);
}

.structure-main-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.structure-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.structure-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.structure-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--maroon);
    transition: all 0.3s ease;
}

.structure-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(110, 0, 1, 0.1);
}

.structure-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.structure-content h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.structure-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.pricing-currencies {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

/* Timezone Selection */
.timezone-selection-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 3rem auto 1rem;
    font-weight: 700;
}

.timezone-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.timezone-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timezone-btn:first-child {
    background: linear-gradient(135deg, #8c0001, #6e0001);
    border-color: var(--maroon);
    color: #fff;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.25);
}

.timezone-btn:last-child {
    background: linear-gradient(135deg, #c98c10, #b07a10);
    border-color: var(--mustard);
    color: #fff;
    box-shadow: 0 4px 14px rgba(176, 122, 16, 0.25);
}

.timezone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.timezone-btn:first-child:hover {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 7px 22px rgba(110, 0, 1, 0.4);
}

.timezone-btn:last-child:hover {
    background: linear-gradient(135deg, #dba020, #c98c10);
    box-shadow: 0 7px 22px rgba(176, 122, 16, 0.4);
}

.timezone-btn.active {
    transform: translateY(-3px) scale(1.05);
}

.timezone-btn:first-child.active {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 8px 24px rgba(110, 0, 1, 0.35);
}

.timezone-btn:last-child.active {
    background: linear-gradient(135deg, #dba020, #c98c10);
    box-shadow: 0 8px 24px rgba(176, 122, 16, 0.35);
}

.timezone-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.timezone-btn:first-child svg,
.timezone-btn:last-child svg {
    stroke: white;
}

.timezone-info-boxes {
    max-width: 800px;
    margin: 0 auto;
}

.timezone-info {
    display: none;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-left: 4px solid var(--maroon);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.timezone-info.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.timezone-info h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.timezone-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.75rem;
}

.timezone-info .highlight-text {
    background: linear-gradient(135deg, #FEF7E5, #F5F3EF);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--mustard);
    margin-top: 1.25rem;
    font-weight: 600;
    color: #333;
}

/* Currency Display */
.currency-display {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #FEF7E5, #F5F3EF);
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(240, 164, 40, 0.2);
}

.currency-note {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.currency-conversions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #555;
}

.currency-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.currency-label {
    font-weight: 600;
    color: #444;
    min-width: 110px;
    text-align: right;
}

.currency-separator {
    color: #ccc;
    font-weight: 300;
    font-size: 1.2rem;
}

.currency-disclaimer {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.75rem;
    font-style: italic;
}

#cad-amount-kids,
#aud-amount-kids,
#cad-amount-adults,
#aud-amount-adults {
    color: var(--maroon);
    font-weight: 700;
}

/* Timezone Badge */
.timezone-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5f4, #d1ede9);
    color: var(--teal);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1.5px solid rgba(15, 118, 110, 0.2);
}

.timezone-badge.starting-soon {
    background: linear-gradient(135deg, #FEF7E5, #F5E5C0);
    color: #b07a10;
    border-color: rgba(176, 122, 16, 0.3);
}

/* Currency inline in cards */
.currency-approx {
    font-size: 0.9em;
    color: #777;
    font-weight: 400;
}

.cad-inline,
.aud-inline {
    color: var(--maroon);
    font-weight: 600;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FEF7E5, #F5E5C0);
    color: #b07a10;
    padding: 0.4rem 1rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .timezone-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .timezone-btn {
        width: 100%;
        justify-content: center;
    }
    
    .timezone-info {
        padding: 1.5rem;
    }
    
    .batch-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .class-structure-info {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .structure-main-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .structure-column {
        gap: 0.75rem;
    }
    
    .structure-item {
        padding: 0.875rem;
    }
    
    .timezone-selection-title {
        font-size: 1.3rem;
        margin: 2rem auto 1rem;
        padding: 0 1rem;
    }
    
    .currency-display {
        padding: 1.25rem 1rem;
    }
    
    .currency-note {
        font-size: 1.05rem;
    }
    
    .currency-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .currency-label {
        min-width: auto;
        text-align: center;
    }
    
    .currency-conversions {
        gap: 1rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .timezone-guide-section {
        padding: 2rem 0 1.5rem;
    }
    
    .timezone-guide-intro,
    .timezone-selector-intro {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .batch-types-grid {
        padding: 0 0.5rem;
    }
    
    .batch-type-card {
        padding: 1.5rem 1rem;
    }
    
    .batch-icon {
        font-size: 2.5rem;
    }
    
    .batch-type-card h3 {
        font-size: 1.1rem;
    }
    
    .batch-type-card p {
        font-size: 0.9rem;
    }
    
    .timezone-info h3 {
        font-size: 1.2rem;
    }
    
    .timezone-info p {
        font-size: 0.95rem;
    }
    
    .currency-note {
        font-size: 1rem;
    }
    
    .currency-row {
        font-size: 0.95rem;
    }
    
    .class-card {
        padding: 2rem 1.5rem;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Workshops Section */
.workshops {
    padding: 48px 0;
    background: var(--bg-white);
}

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

.workshop-card {
    background: var(--bg-white);
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.featured-workshop {
    border: 3px solid var(--mustard);
    background: linear-gradient(135deg, #FEF7E5, #F5F3EF);
}

.featured-workshop:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.workshop-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.workshop-tag.intermediate {
    background: var(--secondary-color);
    color: white;
}

.workshop-tag.featured,
.workshop-tag.upcoming {
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    font-size: 0.9rem;
}

.workshop-tag.recorded {
    background: var(--adults-color);
    color: white;
    padding: 8px 18px;
    font-size: 0.9rem;
}

.recorded-workshop {
    border: 2px solid rgba(15, 118, 110, 0.25);
    background: linear-gradient(135deg, #FDFCFB, #F5F3EF);
}

.recorded-workshop:hover {
    border-color: var(--adults-color);
}

.workshops-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.workshops-cta-text {
    margin-top: 1rem;
    color: #666;
    font-size: 1rem;
}

.workshop-card h3 {
    font-size: var(--font-card-title);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-right: 100px;
}

.workshop-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: var(--font-body);
}

.workshop-info {
    margin-bottom: 1.5rem;
}

.info-item {
    padding: 0.5rem 0;
    color: #555;
}

.info-item strong {
    color: var(--text-dark);
    display: inline-block;
    min-width: 80px;
}

/* Art Materials Guide Section (Homepage) */
.art-materials-guide {
    padding: 48px 0;
    background: linear-gradient(135deg, #FAF9F7 0%, #F5F3EF 100%);
}

.materials-guide-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.materials-icon-large {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.materials-icon-large svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.materials-overview {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.materials-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.materials-cta {
    margin-top: 2rem;
}

.materials-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.materials-cta .btn svg {
    width: 20px;
    height: 20px;
}

.materials-cta-text {
    margin-top: 1rem;
    color: #555;
    font-size: 1rem;
}

/* Art Materials Detail Page Styles */
.materials-hero {
    background: var(--charcoal);
    min-height: 300px;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.materials-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(110,0,1,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.materials-hero-overline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1rem;
    font-weight: 600;
}

.materials-hero-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.1rem;
}

.materials-hero-title span {
    color: var(--mustard);
}

.materials-hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: var(--font-section-sub);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.materials-intro-section {
    padding: 40px 40px 44px;
    background: #f0ebe4;
    border-top: 3px solid var(--maroon);
}

.materials-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.material-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-bottom: 3px solid transparent;
    border-radius: 10px;
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-bottom-color 0.2s ease;
}

.material-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-bottom-color: var(--maroon);
    text-decoration: none;
}

.material-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.material-badge-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    text-transform: uppercase;
    line-height: 1.4;
}

.material-badge-link {
    display: none;
}

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

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

.intro-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.intro-text {
    font-size: var(--font-section-sub);
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.materials-details {
    padding: 4rem 0;
    background: white;
}

.materials-details-header {
    text-align: center;
    margin-bottom: 3rem;
}

.materials-overview {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
}

.overview-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.overview-list {
    padding-left: 1.4rem;
    margin: 0;
}

.overview-list li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.45rem;
    line-height: 1.6;
}

.overview-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.overview-list a:hover {
    text-decoration: underline;
}

.purchase-note {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.amazon-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-amazon {
    display: inline-block;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.btn-amazon:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* Amazon button country colours — maroon / teal / mustard */
.btn-amazon-usa {
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.3);
}
.btn-amazon-usa:hover {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 7px 22px rgba(110, 0, 1, 0.4);
}

.btn-amazon-ca {
    background: linear-gradient(135deg, #0F8A82, #0F766E);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}
.btn-amazon-ca:hover {
    background: linear-gradient(135deg, #0fa89e, #0F8A82);
    box-shadow: 0 7px 22px rgba(15, 118, 110, 0.4);
}

.btn-amazon-au {
    background: linear-gradient(135deg, #c98c10, #b07a10);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(176, 122, 16, 0.3);
}
.btn-amazon-au:hover {
    background: linear-gradient(135deg, #dba020, #c98c10);
    box-shadow: 0 7px 22px rgba(176, 122, 16, 0.4);
}

/* Dropdown panel country colours - defined after base .amazon-dropdown */

/* View on Amazon link country colours — maroon / teal */
.btn-amazon-link-usa {
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.3);
}
.btn-amazon-link-usa:hover {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 7px 22px rgba(110, 0, 1, 0.4);
}

.btn-amazon-link-ca {
    background: linear-gradient(135deg, #0F8A82, #0F766E);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}
.btn-amazon-link-ca:hover {
    background: linear-gradient(135deg, #0fa89e, #0F8A82);
    box-shadow: 0 7px 22px rgba(15, 118, 110, 0.4);
}

.amazon-toggle {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.amazon-dropdown {
    display: none;
    background: #fffdf7;
    border: 1px solid #f0d9a0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 0.6rem;
}

.amazon-dropdown.open {
    display: block;
}

/* Dropdown panel country colours — maroon / teal */
.amazon-dropdown-usa {
    background: #fdf4f4;
    border: 1px solid #d4a0a0;
    border-left: 5px solid #8c0001;
}

.amazon-dropdown-ca {
    background: #f0faf9;
    border: 1px solid #9fd4d0;
    border-left: 5px solid #0F766E;
}

.amazon-product-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.amazon-product-notes {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-amazon-link {
    display: inline-block;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.btn-amazon-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.material-category {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--teal);
}

.category-title {
    color: var(--charcoal);
    font-size: var(--font-card-title);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(0,0,0,0.06);
}

.category-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.category-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.category-subheading {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.paint-swatch-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem 1.5rem;
}

.paint-swatch-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.97rem;
    color: var(--text-color);
    padding: 0.35rem 0;
}

.paint-alt {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.1rem;
}

.paints-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem 1rem;
}

.paint-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
}

.paint-link-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.paint-link-item a:hover {
    text-decoration: underline;
}

.paint-swatch-sm {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.paint-swatch {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}

.brush-list li {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.brush-list li:last-child {
    border-bottom: none;
}

.brush-label {
    font-size: 0.97rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.brush-size {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.brush-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.paint-tips-box {
    background: #fffbf0;
    border-left: 4px solid #f0a500;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1rem;
}

.paint-tips-box p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 0.4rem;
}

.paint-tips-box p:last-child {
    margin-bottom: 0;
}

.materials-list {
    list-style: none;
    padding: 0;
}

.materials-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.materials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.specs-box {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.specs-box p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.note-box {
    background: #FEF7E5;
    border-left: 4px solid var(--mustard);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 5px;
    color: #6B5D1F;
}

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

.paint-item {
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tips-section {
    background: linear-gradient(135deg, rgba(11, 94, 88, 0.08) 0%, rgba(15, 118, 110, 0.12) 100%);
    border-left: 3px solid var(--teal);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.tips-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--charcoal);
}

.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Shopping Links Section */
.shopping-links-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.shopping-categories {
    margin-top: 3rem;
}

.shopping-category {
    margin-bottom: 3rem;
}

.shopping-category-title {
    font-size: var(--font-card-title);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.product-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: var(--font-sub-heading);
    font-weight: 600;
}

.product-example {
    color: #666;
    font-style: italic;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.product-note {
    color: #555;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.product-alt {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.product-specs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.product-specs li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.product-link {
    margin-top: 1rem;
    display: inline-block;
}

.paint-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card.compact {
    padding: 1.25rem;
}

.product-card.compact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.materials-final-cta {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.materials-final-cta .cta-content h2 {
    font-size: var(--font-section-title);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.materials-final-cta .cta-content p {
    font-size: var(--font-section-sub);
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.materials-final-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.mat-cta-maroon {
    display: inline-block;
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.3);
}
.mat-cta-maroon:hover {
    background: linear-gradient(135deg, #a80002, #8c0001);
    box-shadow: 0 7px 22px rgba(110, 0, 1, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

.mat-cta-teal {
    display: inline-block;
    background: linear-gradient(135deg, #0F8A82, #0F766E);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}
.mat-cta-teal:hover {
    background: linear-gradient(135deg, #0fa89e, #0F8A82);
    box-shadow: 0 7px 22px rgba(15, 118, 110, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

.mat-cta-mustard {
    display: inline-block;
    background: linear-gradient(135deg, #c98c10, #b07a10);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(176, 122, 16, 0.3);
}
.mat-cta-mustard:hover {
    background: linear-gradient(135deg, #dba020, #c98c10);
    box-shadow: 0 7px 22px rgba(176, 122, 16, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Gallery Section */
.gallery {
    padding: 48px 0;
    background: var(--bg-white);
}

.gallery.gallery-alt {
    background: var(--bg-light);
    position: relative;
}

.gallery.gallery-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 0, 1, 0.25), transparent);
}

.gallery .section-title::after {
    display: none;
}

.gallery .section-title {
    padding-bottom: 0;
}

.gallery .btn-primary {
    background: var(--maroon);
    color: #fff !important;
    border: none;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.22);
}

.gallery .btn-primary:hover {
    background: #8b0002;
    color: #fff !important;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 0, 1, 0.32);
}

/* Gallery Carousel Styles */
.gallery-carousel-container {
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 0;
}

.gallery-carousel-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-carousel {
    flex: 1;
    position: relative;
    width: 100%;
    min-width: 0;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 14px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 calc(50% - 0.75rem);
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.carousel-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.carousel-slide.active {
    /* All slides are visible, no need for active state display control */
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

.carousel-caption {
    display: none;
}

.carousel-caption h3 {
    display: none;
}

.carousel-caption p {
    display: none;
}

.carousel-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    align-self: flex-end;
    margin-bottom: 1.5rem;
}

.carousel-btn:hover,
.carousel-btn:active,
.carousel-btn:focus {
    background: var(--maroon);
    border-color: var(--maroon);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(110, 0, 1, 0.3);
}

.carousel-btn:hover svg,
.carousel-btn:active svg,
.carousel-btn:focus svg {
    color: white !important;
    stroke: white;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    stroke: currentColor;
    transition: color 0.3s ease;
}

.carousel-btn-prev {
    order: -1;
}

.carousel-btn-next {
    order: 1;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(46, 46, 46, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(110, 0, 1, 0.4);
}

.indicator.active {
    background: var(--maroon);
    width: 24px;
    border-radius: 4px;
}

.gallery-cta-section {
    text-align: center;
    margin-top: 2.5rem;
}

/* Old Gallery Grid (hidden by default, kept for compatibility) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 48px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2E2E2E 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(232, 145, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 185, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1.6fr 1.2fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    color: var(--mustard);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #E89110 0%, #F5B942 100%);
    border-radius: 2px;
}

.footer-section p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--mustard) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-email:hover {
    opacity: 0.8;
    transform: none !important;
}

.footer-email .footer-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--mustard);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--mustard);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(232, 145, 16, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--mustard);
    width: 24px;
    text-align: center;
}

.whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.18);
    border-radius: 10px;
    color: #5ee088;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.wa-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #7ef0a8;
}

.wa-number {
    font-size: 0.82rem;
    opacity: 0.75;
    margin-top: 1px;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    transform: translateY(-2px);
    color: #25d366;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--mustard);
    border-color: var(--mustard);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 145, 16, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Footer SVG brand icons */
.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.whatsapp-icon {
    color: #25d366;
}

.instagram-icon {
    color: #e1306c;
}

.facebook-icon {
    color: #1877f2;
}

.youtube-icon {
    color: #c0392b;
}

.footer-quote {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(232, 145, 16, 0.1);
    border: 1px solid rgba(232, 145, 16, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
}

.footer-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--mustard);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.footer-quote p {
    color: #e8e8e8;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        justify-content: space-between;
        padding-right: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 8px;
        margin-right: 0;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background: var(--maroon);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--mustard) 0%, var(--maroon) 100%);
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin: 0.3rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-item.has-dropdown.dropdown-active {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 0.7rem 1rem;
        text-align: center;
        position: relative;
        font-size: 1rem;
        font-weight: 500;
        color: #ffffff;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }

    .nav-menu .nav-link::after {
        display: block;
    }

    .nav-menu .nav-link.active::after,
    .nav-item.has-dropdown.dropdown-active > .nav-link::after {
        display: none !important;
    }

    /* Mobile dropdown styles */
    .nav-item.has-dropdown > a::after {
        content: ' ▾';
        font-size: 0.8em;
        transition: transform 0.3s ease;
    }

    .nav-item.has-dropdown.dropdown-active > a::after {
        transform: rotate(180deg);
        display: inline-block;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        margin: 0.5rem 0;
        padding: 0;
        border-radius: 8px;
    }

    .nav-item.has-dropdown.dropdown-active .nav-dropdown {
        max-height: 200px;
        padding: 0.3rem 0;
    }

    .nav-dropdown a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        display: block;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .nav-dropdown a:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .classes-grid,
    .workshops-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-caption {
        padding: 1.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .materials-overview {
        padding: 2rem;
    }

    .materials-intro {
        font-size: 1.05rem;
    }



    .intro-box {
        padding: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .paints-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .paint-products-grid {
        grid-template-columns: 1fr;
    }

    .materials-final-cta .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .workshop-card h3 {
        padding-right: 0;
        margin-top: 2.5rem;
    }

    .logo-img {
        height: 55px;
    }

    .monogram-img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        white-space: nowrap;
        width: auto;
        }

    .btn {
        width: auto;
    }

    .gallery .container {
        padding: 0 1rem;
    }

    .gallery-carousel-container {
        margin: 0 -0.5rem 3rem;
    }

    .gallery-carousel-row {
        gap: 0;
        position: relative;
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        position: absolute;
        z-index: 10;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        bottom: 0.5rem;
        margin-bottom: 0;
    }
    
    .carousel-btn:hover,
    .carousel-btn:active,
    .carousel-btn:focus {
        background: var(--maroon);
        border-color: var(--maroon);
    }
    
    .carousel-btn:hover svg,
    .carousel-btn:active svg,
    .carousel-btn:focus svg {
        color: white !important;
        stroke: white;
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }

    .carousel-slide {
        flex: 0 0 100%;
        border-radius: 10px;
    }
    
    .carousel-slide img {
        aspect-ratio: 3 / 4;
    }

    .carousel-track {
        gap: 0.75rem;
    }

    .carousel-track-container {
        border-radius: 10px;
    }

    .carousel-indicators {
        margin-top: 1.2rem;
        gap: 0.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }
}

/* Workshop Dedicated Page Styles */
.workshop-hero {
    background: var(--charcoal);
    min-height: 300px;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.workshop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(110,0,1,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.workshop-hero .container {
    position: relative;
    z-index: 2;
}

.workshop-hero-overline {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.workshop-hero-title {
    color: #fff;
    margin: 0 0 1.1rem;
    line-height: 1.1;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.workshop-hero-title span {
    color: var(--mustard);
}

.workshop-hero-subtext {
    color: rgba(255,255,255,0.9);
    font-size: var(--font-section-sub);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.workshop-hero-content {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.registration-hero {
    padding: 60px 0 50px;
    min-height: auto;
}

.workshop-overview {
    padding: 4rem 0;
    background: var(--bg-light);
}

.workshop-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: var(--font-section-sub);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.workshop-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 240px;
    justify-content: center;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.workshop-details {
    padding: 4rem 0;
    background: white;
}

.workshop-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.media-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-content {
    padding: 1.5rem;
}

.media-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.media-placeholder {
    width: 100%;
    min-height: 250px;
    background: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    text-align: center;
    color: #999;
    padding: 2rem;
    line-height: 1.8;
}

/* Workshop Typography Classes */
.workshop-card-title {
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 0.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.workshop-card-description {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.workshop-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.workshop-secondary-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--maroon);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid var(--maroon);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.95rem;
}

.workshop-secondary-btn:hover {
    background-color: var(--maroon);
    color: white;
}

.workshop-trailer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.workshop-price-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 0.2rem;
}

.workshop-price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.workshop-date-title {
    font-size: 1rem;
    display: block;
    color: #3a3a3a;
}

.workshop-date-detail {
    font-size: 0.9rem;
    color: #666;
}

.workshop-register-btn {
    display: inline-block;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: 100%;
}

.past-workshop-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #8c0001, #6e0001);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(110, 0, 1, 0.3);
    font-size: 0.95rem;
    width: auto;
}

.past-workshops-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    max-width: 920px;
    margin: 0 auto;
    line-height: 1.6;
}

.workshop-cta-title {
    font-size: 1.6rem;
    color: var(--maroon);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.workshop-cta-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.workshop-cta-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #8c0001 0%, #6e0001 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(110, 0, 1, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 0, 1, 0.4);
}

.trailer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.trailer-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.trailer-btn svg {
    width: 20px;
    height: 20px;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 0;
}

.registration-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.registration-card.kids-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(240, 164, 40, 0.22) !important;
}

.registration-card.adults-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(15, 118, 110, 0.22) !important;
}

.registration-card.recorded-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(110, 0, 1, 0.22) !important;
}

/* Button hover effects */
.registration-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.4) !important;
}

/* Old card header and body styles - kept for backwards compatibility */
.card-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.card-body {
    padding: 2rem;
}

.registration-date {
    text-align: center;
    margin-bottom: 2rem;
}

.date-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.date-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.time-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.timezone-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.recorded-info {
    text-align: center;
    margin-bottom: 2rem;
}

.recorded-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.register-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
}

.materials-section {
    margin: 4rem 0 2rem;
}

.materials-card {
    background: linear-gradient(135deg, #FAF9F7, #F5F3EF);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--mustard);
}

.materials-icon {
    flex-shrink: 0;
}

.materials-icon svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.materials-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.materials-content p {
    color: #555;
    margin-bottom: 1rem;
}

.materials-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.materials-link:hover {
    gap: 1rem;
}

.workshop-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: var(--font-section-title);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: var(--font-section-sub);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Workshop Section Styling */
.upcoming-workshops {
    background: white;
}

.upcoming-workshops .section-title::after {
    display: none;
}

.past-workshops {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.workshop-single {
    margin-bottom: 3rem;
}

.workshop-single-title {
    font-size: var(--font-section-title);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

/* Past Workshops Grid */
.past-workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.past-workshop-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.past-workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.past-workshop-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.past-workshop-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.past-workshop-content {
    padding: 1.5rem;
}

.past-workshop-content h3 {
    font-size: var(--font-card-title);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.past-workshop-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    font-style: italic;
}

.past-workshop-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.past-workshop-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.info-badge svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-color);
}

.past-workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.past-workshop-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.past-workshop-footer .btn {
    padding: 0.75rem 1.5rem;
}

/* ========================
   TESTIMONIALS SECTION
   ======================== */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 2rem;
}

.testimonials-track-container {
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 0 0 calc(33.333% - 1.33rem);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .star {
    color: #FFD700;
    font-size: 1.5rem;
}
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    flex: 1;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.author-info p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: #777;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav span {
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
}

.testimonial-prev {
    left: -25px;
}

.testimonial-next {
    right: -25px;
}

@media (max-width: 768px) {
    .testimonial-prev {
        left: 10px;
    }
    
    .testimonial-next {
        right: 10px;
    }
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-indicators .indicator:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Gallery Page Styles */
.gallery-hero {
    background: var(--charcoal);
    min-height: 300px;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(110,0,1,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.gallery-hero-overline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1rem;
    font-weight: 600;
}
.gallery-hero-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.1rem;
}
.gallery-hero-title span {
    color: var(--mustard);
}
.gallery-hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: var(--font-section-sub);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Classes Hero Section */
.classes-hero {
    background: var(--charcoal);
    min-height: 300px;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.classes-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(110,0,1,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.classes-hero-overline {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.classes-hero-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.classes-hero-title span {
    color: var(--mustard);
}
.classes-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: var(--font-section-sub);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--mustard);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(240, 164, 40, 0.3);
}

.hero-cta-button:hover {
    background: #E89110;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 164, 40, 0.4);
}

.hero-cta-subtext {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}

.classes-hero-content {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-page-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.gallery-detailed-grid {
    display: grid;
    gap: 3rem;
}

.gallery-detailed-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-detailed-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-detailed-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.gallery-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-detailed-item:hover .gallery-detailed-image img {
    transform: scale(1.05);
}

.gallery-detailed-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.painting-title {
    font-size: var(--font-card-title);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.painting-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.painting-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.painting-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.meta-item {
    font-size: 0.9rem;
    color: #666;
}

.meta-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.gallery-cta {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
    color: var(--charcoal);
    border-top: 1px solid rgba(110, 0, 1, 0.12);
}

.gallery-cta .cta-content h2 {
    font-size: var(--font-section-title);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--maroon);
}

.gallery-cta .cta-content p {
    font-size: var(--font-section-sub);
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--charcoal);
}

.gallery-cta .btn-secondary {
    background: transparent;
    color: var(--maroon) !important;
    border: 2px solid var(--maroon);
}

.gallery-cta .btn-secondary:hover {
    background: var(--maroon);
    color: white !important;
}

/* Active nav link styling */
.nav-link.active {
    color: #fff !important;
    background: linear-gradient(90deg, #e89110 0%, #6e0001 100%) !important;
    box-shadow: 0 2px 12px rgba(232,145,16,0.10), 0 1px 6px rgba(110,0,1,0.10) !important;
}

.nav-link.active::after {
    width: 80%;
}

/* Reviews Page Styles */
.reviews-hero {
    background: var(--charcoal);
    min-height: 300px;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.reviews-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(110,0,1,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-hero-overline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reviews-hero-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.1rem;
}

.reviews-hero-title span {
    color: var(--mustard);
}

.reviews-hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: var(--font-section-sub);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}

.reviews-stats {
    background: var(--bg-light);
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(110, 0, 1, 0.12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.3;
}

.reviews-grid-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(110, 0, 1, 0.08);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(232, 145, 16, 0.3);
}

.review-quote {
    font-size: 4rem;
    color: var(--mustard);
    opacity: 0.25;
    line-height: 0.8;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(110, 0, 1, 0.1);
}

.review-name {
    font-weight: 700;
    color: var(--maroon);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.review-role {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.65;
}

.reviews-cta {
    background: var(--charcoal);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.reviews-cta .cta-content h2 {
    font-size: var(--font-section-title);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.reviews-cta .cta-content p {
    font-size: var(--font-section-sub);
    margin-bottom: 2rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Gallery Page */
@media (max-width: 768px) {
    .gallery-detailed-item {
        grid-template-columns: 1fr;
    }

    .gallery-detailed-image {
        min-height: 300px;
    }

    .painting-title {
        font-size: 1.5rem;
    }

    .painting-description {
        font-size: 0.95rem;
    }

    .gallery-cta .cta-content h2 {
        font-size: 2rem;
    }

    .gallery-cta .cta-content p {
        font-size: 1.1rem;
    }

    .classes-hero {
        padding: 80px 0 50px;
        min-height: 250px;
    }

    .classes-hero-title {
        font-size: 2rem;
    }

    .classes-hero-subtitle {
        max-width: 90%;
    }

    .hero-cta-button {
        font-size: 0.875rem;
        padding: 10px 20px;
    }

    .hero-cta-subtext {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .workshop-hero {
        padding: 80px 0 50px;
        min-height: 250px;
    }

    .workshop-hero-overline {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .workshop-hero-title {
        font-size: 2rem;
    }

    .workshop-hero-subtext {
        max-width: 90%;
    }

    .gallery-hero {
        padding: 80px 0 50px;
        min-height: 250px;
    }

    .gallery-hero-overline {
        font-size: 0.9rem;
    }

    .gallery-hero-title {
        font-size: 2rem;
    }

    .gallery-hero-subtitle {
        max-width: 90%;
    }

    .materials-hero {
        padding: 80px 0 50px;
        min-height: 250px;
    }

    .materials-hero-overline {
        font-size: 0.9rem;
    }

    .materials-hero-title {
        font-size: 2rem;
    }

    .registration-hero {
        padding: 50px 0 40px;
        background: var(--charcoal) !important;
        background-image: none !important;
    }

    .workshop-hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 1.5rem 1rem !important;
        box-shadow: none !important;
        border: none !important;
    }

    .workshop-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 400px;
    }

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

    .materials-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .workshop-media {
        grid-template-columns: 1fr;
    }

    .past-workshops-grid {
        grid-template-columns: 1fr;
    }

    .past-workshop-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .past-workshop-footer .btn {
        width: 100%;
    }

    .workshop-single-title {
        font-size: 1.5rem;
    }

    /* Workshop Typography Mobile */
    .workshop-card-title {
        font-size: 1.25rem;
    }

    .workshop-card-description {
        font-size: 0.95rem;
    }

    .workshop-details-list {
        font-size: 0.95rem;
    }

    .workshop-price-title {
        font-size: 1.25rem;
    }

    .workshop-price {
        font-size: 1.1rem;
    }

    .workshop-date-title {
        font-size: 0.95rem;
    }

    .workshop-date-detail {
        font-size: 0.85rem;
    }

    .workshop-register-btn {
        font-size: 0.9rem;
        padding: 10px 24px;
    }

    .past-workshop-badge {
        font-size: 0.9rem;
        padding: 0.35rem 0.7rem;
    }

    .past-workshops-intro {
        font-size: 1rem;
    }

    .workshop-cta-title {
        font-size: 1.4rem;
    }

    .workshop-cta-text {
        font-size: 1rem;
    }

    .workshop-cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }

    .workshop-secondary-btn {
        font-size: 0.9rem;
padding: 0.45rem 0.9rem;
    }

    .workshop-trailer-btn {
        font-size: 0.9rem;
        padding: 0.45rem 1rem;
    }

    .workshop-hero-overline {
        font-size: 0.9rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav span {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Reviews Page Mobile */
    .reviews-hero {
        padding: 80px 0 50px;
        min-height: 250px;
    }

    .reviews-hero-overline {
        font-size: 0.9rem;
    }

    .reviews-hero-title {
        font-size: 2rem;
    }

    .reviews-hero-subtitle {
        max-width: 90%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
        min-height: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
        position: relative;
        min-height: 400px;
        height: 400px;
        display: flex;
        flex-direction: column;
    }

    .review-card.expanded {
        height: auto;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .review-text.truncated {
        max-height: 120px;
        overflow: hidden;
        margin-bottom: 0;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .review-text.truncated::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
        pointer-events: none;
    }

    .review-author {
        margin-top: auto;
    }

    .review-read-more {
        display: block;
        width: 100%;
        margin-top: 1rem;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        border: none;
        background-color: #6E0001;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(110, 0, 1, 0.3);
    }

    .review-read-more:hover {
        background-color: #E89110;
        text-decoration: none;
    }

    .review-read-more.hidden {
        display: none;
    }

    .reviews-cta .cta-content h2 {
        font-size: 1.8rem;
    }

    .reviews-cta .cta-content p {
        font-size: 1rem;
    }
}

/* ===== TRUST PILLARS SECTION ===== */
.trust-section {
    background: #f0ebe4;
    padding: 40px 40px 44px;
    border-top: 3px solid var(--maroon);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-bottom: 3px solid transparent;
    border-radius: 10px;
    padding: 24px 16px 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-bottom-color 0.2s ease;
    cursor: default;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-bottom-color: var(--maroon);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.trust-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    text-transform: uppercase;
    line-height: 1.4;
}

/* Trust grid inside CTA section */
.cta-content .trust-grid {
    margin-top: 3.5rem;
    max-width: 1200px;
}

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

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .trust-section {
        padding: 36px 16px 32px;
    }
    .cta-content .trust-grid {
        margin-top: 2rem;
    }
    
    /* Registration Hero - Extra Small Mobile */
    .registration-hero {
        padding: 40px 0 30px !important;
        min-height: auto !important;
    }
    
    .workshop-hero-content {
        padding: 1rem 0.5rem !important;
    }
    
    .workshop-hero-overline {
        font-size: 0.8rem !important;
    }
    
    .workshop-hero-title {
        font-size: 1.6rem !important;
    }
    
    .classes-hero-title {
        font-size: 1.6rem;
    }
    
    .gallery-hero-overline {
        font-size: 0.8rem;
    }
    
    .gallery-hero-title {
        font-size: 1.6rem;
    }
    
    .reviews-hero-overline {
        font-size: 0.8rem;
    }
    
    .reviews-hero-title {
        font-size: 1.6rem;
    }
    
    .materials-hero-overline {
        font-size: 0.8rem;
    }
    
    .materials-hero-title {
        font-size: 1.6rem;
    }
}

/* ===== WHY PAINTING MATTERS SECTION ===== */
.painting-matters-section {
    background: #f0ebe4;
    padding: 2rem 2rem 2.5rem;
    border-top: 3px solid var(--maroon);
}

.painting-matters-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    padding-bottom: 0;
}

.painting-matters-title::after {
    display: none;
}

.painting-matters-text {
    font-size: var(--font-section-sub);
    color: #5a5a5a;
    max-width: 920px;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
    text-align: center;
}

.painting-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-bottom: 3px solid transparent;
    border-radius: 10px;
    padding: 1rem 0.875rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-bottom-color 0.2s ease;
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-bottom-color: var(--maroon);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.benefit-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 6px;
}

.benefit-description {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
}

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

@media (max-width: 768px) {
    .painting-matters-section {
        padding: 2rem 1.5rem;
    }
    .painting-matters-title {
        font-size: 2rem;
    }
    .painting-matters-text {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .painting-matters-section {
        padding: 1.5rem 1rem;
    }
    .painting-matters-title {
        font-size: 1.7rem;
    }
    .painting-matters-text {
        margin-bottom: 1.25rem;
    }
    .painting-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .benefit-card {
        padding: 20px 12px 16px;
    }
    .benefit-title {
        font-size: 0.78rem;
    }
    .benefit-description {
        font-size: 0.82rem;
    }
}

/* ===== WHY CANVAS REDEFINED SECTION ===== */
.why-cr-section {
    padding: 40px 0 48px;
    background: #F7F3EE;
}

.why-cr-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 1.5rem;
}

.why-cr-title-accent {
    white-space: nowrap;
}

.why-cr-subtext {
    font-size: var(--font-section-sub);
    color: #5a5a5a;
    line-height: 1.8;
    margin-top: 1.2rem;
}

/* Testimonial Slider */
.why-cr-header .section-title::after {
    display: none;
}

.testimonial-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.testimonial-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: 50%;
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem 2.4rem;
    box-shadow: 0 6px 30px rgba(46,46,46,0.07);
    border-left: 5px solid var(--maroon);
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
}

.testimonial-card:nth-child(3n+2) { border-left-color: var(--teal); }
.testimonial-card:nth-child(3n+3) { border-left-color: #b07a10; }

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--maroon);
    opacity: 0.15;
    font-family: Georgia, serif;
    position: absolute;
    top: 1.2rem;
    left: 2rem;
}

.testimonial-card:nth-child(3n+2) .testimonial-quote { color: var(--teal); }
.testimonial-card:nth-child(3n+3) .testimonial-quote { color: #b07a10; }

.testimonial-text {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.testimonial-role {
    font-size: 0.85rem;
    color: #7a7a7a;
    letter-spacing: 0.02em;
}

.testimonial-prev,
.testimonial-next {
    background: #fff;
    border: 1px solid rgba(46,46,46,0.12);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--charcoal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon);
    box-shadow: 0 4px 16px rgba(110,0,1,0.2);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(46,46,46,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.t-dot.active {
    background: var(--maroon);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .why-cr-section {
        padding: 32px 0 40px;
    }
    
    .why-cr-header {
        padding: 0 1rem;
    }
    
    .testimonial-slider-wrapper {
        gap: 0.75rem;
    }
    
    .testimonial-prev, .testimonial-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .testimonial-track-container {
        overflow: hidden;
    }
    
    .testimonial-track {
        display: flex;
        gap: 1rem;
    }
    
    .testimonial-card { 
        min-width: 100%;
        padding: 1.5rem 1.3rem;
        flex-shrink: 0;
    }
    
    .testimonial-quote {
        font-size: 2.8rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .why-cr-section {
        padding: 28px 0 36px;
    }
    
    .why-cr-header {
        padding: 0 1rem;
        margin-bottom: 1.2rem;
    }
    
    .why-cr-header .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .why-cr-title-accent {
        white-space: normal;
    }
    
    .testimonial-slider-wrapper {
        gap: 0;
        padding: 0;
        position: relative;
    }
    
    .testimonial-track-container {
        overflow-x: hidden;
        overflow-y: visible;
        border-radius: 10px;
        margin: 0 1rem;
        padding-bottom: 1rem;
    }
    
    .testimonial-track {
        display: flex;
        gap: 1rem;
    }
    
    .testimonial-card { 
        padding: 1.4rem 1.2rem 1.5rem;
        min-width: 100%;
        flex-shrink: 0;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 3px 15px rgba(46,46,46,0.06);
    }
    
    .testimonial-quote {
        font-size: 2.2rem;
        top: 0.4rem;
        left: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        margin-top: 0.3rem;
    }
    
    .testimonial-author {
        margin-top: 0;
    }
    
    .testimonial-read-more {
        display: block !important;
        width: 100%;
        margin-top: 1rem;
        color: #ffffff !important;
        background-color: #6E0001 !important;
        font-weight: 700 !important;
        font-size: 0.95rem !important;
        border: none !important;
        padding: 0.75rem 1rem !important;
        cursor: pointer;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(110, 0, 1, 0.3);
    }
    
    .testimonial-read-more:active {
        background-color: #E89110 !important;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
    }
    
    .testimonial-role {
        font-size: 0.8rem;
    }
    
    .testimonial-prev, .testimonial-next { 
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
        position: absolute;
        bottom: 2rem;
        transform: none;
        z-index: 10;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
    }
    
    .testimonial-prev {
        left: 0.5rem;
    }
    
    .testimonial-next {
        right: 0.5rem;
    }
    
    .testimonial-dots {
        margin-top: 1.5rem;
    }
}
