/* ==========================================================================
   Design System Variables & Token Setup
   ========================================================================== */
:root {
    --sage-green: #99b795;
    --sage-green-light: #c0d6bd;
    --sage-green-ultra-light: #e5f6e4;
    --sage-green-dark: #384835;
    --text-dark: #161c15;
    --text-muted: #536450;
    --gold: #b6ab68;
    --gold-light: #dfd89d;
    --gold-dark: #8d8143;
    --white: #ffffff;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
    
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(153, 183, 149, 0.15);
    --shadow-lg: 0 20px 50px rgba(63, 78, 60, 0.25);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --max-width: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   Base CSS & Normalization
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--sage-green-ultra-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Typography & Accents
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.calligraphy-text {
    font-family: var(--font-cursive);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold-dark);
    display: block;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--sage-green-dark);
    font-style: italic;
    font-family: var(--font-serif);
}

.section-subtitle {
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--sage-green-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title.dark-text {
    color: var(--text-dark);
}

.section-desc {
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Gold line separator */
.gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.gold-line.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--sage-green-dark);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(63, 78, 60, 0.2);
}

.btn-primary:hover {
    background-color: var(--sage-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 183, 149, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--sage-green-light);
    border-color: var(--sage-green-light);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Preview Banner
   ========================================================================== */
.preview-banner {
    background-color: #d32f2f; /* Red */
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 35px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-animation 25s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 6rem;
}

@keyframes marquee-animation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
    background-color: rgba(229, 246, 228, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 55px;
    width: auto;
    border-radius: 5px;
    border: 1.5px solid var(--text-dark);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--sage-green-dark);
    cursor: pointer;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--sage-green-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-btn {
    background-color: var(--sage-green-dark);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: calc(var(--header-height) + 35px + 3rem);
    padding-bottom: 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-color: var(--sage-green-light);
    opacity: 0.35;
    z-index: -1;
    border-bottom-left-radius: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(153, 183, 149, 0.3);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sage-green-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.gold-star {
    font-size: 1.3rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Hero Collage */
.hero-images {
    display: flex;
    justify-content: center;
}

.image-collage {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 480px;
}


.collage-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 4px solid var(--white);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-img {
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    z-index: 2;
}

.sub-img {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}

.collage-accent-box {
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 40%;
    height: 40%;
    background-color: var(--sage-green);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.15;
}

.image-collage:hover .main-img {
    transform: translate(-10px, -10px) scale(1.02);
}

.image-collage:hover .sub-img {
    transform: translate(10px, 10px) scale(1.02);
}

/* ==========================================================================
   About Us Section (Georgina & Serena)
   ========================================================================== */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sage-green-ultra-light) 100%);
}

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

.about-collage {
    position: relative;
    height: 520px;
    width: 100%;
    max-width: 500px;
}


.about-photo-item {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--white);
}

.about-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-sofa {
    top: 0;
    left: 0;
    width: 75%;
    height: 65%;
    z-index: 2;
}

.photo-caption {
    position: absolute;
    bottom: 10px;
    left: 15px;
    background-color: rgba(22, 28, 21, 0.85);
    color: var(--white);
    padding: 3px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

.photo-chair {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}

/* iMessage Tag Overlays */
.tagged-image-container {
    overflow: visible !important;
}

.image-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(22, 28, 21, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* iMessage style bubbles tails */
.image-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    border-width: 8px 6px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95) transparent;
    display: block;
    width: 0;
}

/* Georgina is standing on the left */
.tag-georgina {
    top: -8%;
    left: 8%;
    animation: tag-float-georgina 5s ease-in-out infinite;
}

.tag-georgina::after {
    left: 20px;
}

/* Serena is sitting on the right */
.tag-serena {
    top: -6%;
    right: 25%;
    animation: tag-float-serena 5s ease-in-out infinite 2.5s;
}

.tag-serena::after {
    right: 20px;
}

@keyframes tag-float-georgina {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes tag-float-serena {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-4px) rotate(-1deg); }
}

.about-lead {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--sage-green-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
    text-align: justify;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: var(--sage-green-ultra-light);
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.badge-icon {
    font-size: 2rem;
    color: var(--sage-green-dark);
}

.experience-badge h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.experience-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Individual Trainer Bios Grid */
.trainers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.trainer-card {
    background-color: var(--sage-green-ultra-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(153, 183, 149, 0.2);
    border-top: 4px solid var(--sage-green-dark);
    transition: var(--transition-smooth);
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--gold);
}

.trainer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(153, 183, 149, 0.2);
    padding-bottom: 1rem;
}

.trainer-card-icon {
    font-size: 1.6rem;
    color: var(--sage-green-dark);
}

.trainer-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 700;
}

.trainer-bio {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.trainer-bio:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Training Days Experience Section
   ========================================================================== */
.training-days-section {
    padding: 8rem 0;
    background-color: var(--sage-green-ultra-light);
}

.training-card {
    background-color: var(--sage-green-light);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 3rem 4rem;
    max-width: 900px;
    margin: 3rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.training-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.training-card-logo {
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 5px;
    border: 1px solid var(--text-dark);
}

.card-main-title {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

/* Recreating the gold glow line under the header in the screenshot */
.gold-divider-glow {
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    margin: 0.5rem auto;
    box-shadow: 0 0 10px rgba(182, 171, 104, 0.8);
    border-radius: 1px;
}

.training-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2.5rem;
}

.training-features-grid li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(63, 78, 60, 0.15);
}

.training-features-grid li:nth-child(9),
.training-features-grid li:nth-child(10) {
    border-bottom: none;
}

.bullet-star {
    font-size: 1.1rem;
    color: var(--gold-dark);
    text-shadow: 0 0 5px rgba(223, 216, 157, 0.6);
    line-height: 1.2;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* CPD Accreditation Explanation Card */
.accreditation-details-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
    border: 1px solid rgba(153, 183, 149, 0.15);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.accreditation-icon-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-glow-icon {
    font-size: 3.5rem;
    color: var(--gold-dark);
    text-shadow: 0 0 15px rgba(182, 171, 104, 0.4);
}

.accreditation-card-title {
    font-size: 1.8rem;
    color: var(--sage-green-dark);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.accreditation-intro-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.accreditation-points-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.accreditation-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.accreditation-points-list li i {
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-top: 0.1rem;
}

.accreditation-footer-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    border-top: 1px solid rgba(153, 183, 149, 0.2);
    padding-top: 1.2rem;
}

/* ==========================================================================
   Courses & Pricing Section (Interactive Tabs)
   ========================================================================== */
.courses-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sage-green-ultra-light) 100%);
}

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

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(153, 183, 149, 0.3);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--sage-green-dark);
    background-color: var(--sage-green-ultra-light);
}

.tab-btn.active {
    background-color: var(--sage-green-dark);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(63, 78, 60, 0.15);
}

/* Tab Panes */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.pane-header-box {
    text-align: center;
    background-color: var(--sage-green-ultra-light);
    border-radius: 12px;
    padding: 2.2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--sage-green);
}

/* Glowing gold headers matching the image styling */
.pane-glowing-title {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(223, 216, 157, 0.3);
}

.pane-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.course-item {
    background-color: var(--sage-green-ultra-light);
    border: 1px solid rgba(153, 183, 149, 0.2);
    border-radius: 10px;
    padding: 1.8rem 2.2rem;
    transition: var(--transition-fast);
}

.course-item:hover {
    transform: translateY(-2px);
    border-color: var(--sage-green);
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
    gap: 2rem;
}

.course-name {
    font-size: 1.35rem;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 700;
}

.course-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-dark);
    background-color: rgba(182, 171, 104, 0.1);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-family: var(--font-sans);
}

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

.pane-footer-info {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background-color: rgba(223, 216, 157, 0.15);
    border-radius: 8px;
    border: 1.5px dashed var(--gold);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pane-footer-info p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pane-footer-info p i {
    color: var(--gold-dark);
}

/* ==========================================================================
   Google Reviews & Testimonials Section
   ========================================================================== */
.reviews-section {
    padding: 8rem 0;
    background-color: var(--sage-green-ultra-light);
}

.google-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(153, 183, 149, 0.2);
}

.rating-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.google-rating-summary .stars {
    display: flex;
    gap: 0.2rem;
    color: #fbbc05; /* Google Gold Star Color */
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-left: 1px solid rgba(153, 183, 149, 0.4);
    padding-left: 0.8rem;
}

/* Testimonials Carousel */
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 2rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--white);
    border-radius: 16px;
    padding: 3rem 4rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(153, 183, 149, 0.1);
}

.testimonial-stars {
    color: #fbbc05;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--sage-green-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--sage-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--sage-green-dark);
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.author-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.author-source i {
    color: #4285f4; /* Google Blue */
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-nav-btn {
    background: none;
    border: 1.5px solid var(--sage-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--sage-green-dark);
}

.slider-nav-btn:hover {
    background-color: var(--sage-green-dark);
    color: var(--white);
    border-color: var(--sage-green-dark);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--sage-green-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background-color: var(--sage-green-dark);
    transform: scale(1.2);
}

/* ==========================================================================
   Graduate Gallery Section (Polaroid Scrapbook Style)
   ========================================================================== */
.gallery-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sage-green-ultra-light) 100%);
    position: relative;
}

.gallery-book-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-top: 4rem;
}

.gallery-item-card {
    background-color: var(--white);
    padding: 1.2rem 1.2rem 2.2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(22, 28, 21, 0.06);
    border: 1px solid rgba(153, 183, 149, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(153, 183, 149, 0.08);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-card-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.gallery-student-name {
    font-size: 1.95rem;
    margin-bottom: 0.1rem;
    color: var(--gold-dark);
    line-height: 1.1;
}

.gallery-course-name {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
    margin-top: 0.2rem;
}

.gallery-course-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: -0.3rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    text-align: center;
}

.gallery-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.gallery-date i {
    color: var(--sage-green-dark);
}

/* Scattered Polaroid Collage Rotation Effect */
.gallery-item-card:nth-child(1) { transform: rotate(-2.5deg); }
.gallery-item-card:nth-child(2) { transform: rotate(2deg); }
.gallery-item-card:nth-child(3) { transform: rotate(-1.5deg); }
.gallery-item-card:nth-child(4) { transform: rotate(3deg); }

/* Hover effects */
.gallery-item-card:hover {
    transform: translateY(-12px) rotate(0deg) scale(1.04);
    box-shadow: 0 15px 35px rgba(63, 78, 60, 0.12);
    border-color: var(--sage-green);
    z-index: 5;
}

.gallery-item-card:hover .gallery-img-wrapper img {
    transform: scale(1.06);
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */
.contact-section {
    padding: 8rem 0;
    background-color: var(--sage-green-ultra-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-container {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(153, 183, 149, 0.15);
}

.form-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(153, 183, 149, 0.3);
    border-radius: 8px;
    background-color: var(--sage-green-ultra-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green-dark);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(153, 183, 149, 0.15);
}

/* Feedback Styling */
.form-feedback {
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.form-feedback.success {
    background-color: rgba(153, 183, 149, 0.2);
    color: var(--sage-green-dark);
    border: 1px solid var(--sage-green);
}

.form-feedback.error {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #f5c2c1;
}

.hidden {
    display: none !important;
}

/* Location Card Details */
.location-details-container {
    height: 100%;
}

.location-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(153, 183, 149, 0.2);
}

.location-card-title {
    font-size: 2rem;
    color: var(--sage-green-dark);
    margin-bottom: 0.8rem;
}

.contact-info-list {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-icon {
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-top: 0.2rem;
}

.info-item h5 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.info-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hours-container {
    width: 100%;
}

.hours-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0.2rem 0 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.hours-toggle-btn * {
    pointer-events: none;
}

.hours-toggle-btn:hover {
    color: var(--sage-green-dark);
}

.hours-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--gold-dark);
}

.hours-toggle-btn[aria-expanded="true"] .hours-arrow {
    transform: rotate(180deg);
}

.hours-dropdown-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
    max-width: 280px;
}

.hours-dropdown-list.open {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.8rem;
    border-top: 1px dashed rgba(153, 183, 149, 0.25);
    padding-top: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.1rem 0;
    transition: var(--transition-fast);
}

.hours-row.today-highlight {
    background-color: rgba(153, 183, 149, 0.15);
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    border-left: 3px solid var(--sage-green);
}

.hours-day {
    font-weight: 600;
    color: var(--text-muted);
}

.hours-row.today-highlight .hours-day {
    color: var(--sage-green-dark);
}

.hours-time {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
}

.contact-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
    background-color: var(--sage-green-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 6rem 0 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--sage-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 55px;
    width: auto;
    align-self: flex-start;
    border-radius: 5px;
    border: 1px solid var(--white);
}

.footer-brand p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-accreditation h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-accreditation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accreditation-badge-footer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.badge-icon-footer {
    font-size: 1.3rem;
    color: var(--sage-green);
    margin-top: 0.2rem;
}

.badge-icon-footer.text-gold {
    color: var(--gold);
}

.accreditation-badge-footer h5 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.accreditation-badge-footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.footer-bottom {
    padding: 2rem 0;
    background-color: #0b0f0b;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-gold {
    color: var(--gold) !important;
}

/* ==========================================================================
   Responsive Navigation Menu & Adaptive Layouts
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero::before {
        width: 100%;
        height: 40%;
        border-bottom-left-radius: 0;
        bottom: 0;
        top: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-images {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-collage {
        margin: 0 auto;
        max-width: 400px;
        height: 420px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accreditation-details-card {
        grid-template-columns: 1fr;
        padding: 2.2rem 1.8rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .accreditation-points-list li {
        text-align: left;
    }

    .container {
        padding: 0 1.5rem;
    }

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

    .calligraphy-text {
        font-size: 1.8rem;
    }

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

    .mobile-nav-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--sage-green-ultra-light);
        box-shadow: var(--shadow-sm);
        padding: 2rem;
        border-top: 1px solid rgba(153, 183, 149, 0.2);
        display: none;
        animation: slideDown 0.3s ease forwards;
    }

    .nav.open {
        display: block;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        text-align: center;
    }

    .nav-link.nav-btn {
        display: inline-block;
        width: 100%;
    }

    .training-card {
        padding: 2.5rem 1.8rem;
    }

    .training-features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .training-features-grid li:nth-child(9) {
        border-bottom: 1px dashed rgba(63, 78, 60, 0.15);
    }

    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .location-card {
        padding: 2.2rem 1.8rem;
    }

    /* Mobile stats: compact horizontal pill badges */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        padding-top: 1.2rem;
        border-top: 1px solid rgba(153, 183, 149, 0.3);
    }

    .stat-item {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        background: rgba(153, 183, 149, 0.15);
        border: 1px solid rgba(153, 183, 149, 0.4);
        border-radius: 50px;
        padding: 0.35rem 0.8rem;
    }

    .stat-num {
        font-size: 1rem;
        font-weight: 700;
    }

    .stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.5px;
        margin-top: 0;
    }

    .gold-star {
        font-size: 0.8rem;
    }

    /* Keep Georgina tag above photo on left */
    .tag-georgina {
        left: 2% !important;
        top: -12% !important;
    }

    /* Move Serena tag BELOW the photo so it doesn't overlay her head */
    .tag-serena {
        right: 5% !important;
        top: auto !important;
        bottom: -30px !important;
    }

    /* Flip Serena's bubble tail to point UP (toward the photo above) */
    .tag-serena::after {
        bottom: auto !important;
        top: -8px !important;
        border-width: 0 6px 8px !important;
        border-color: transparent transparent rgba(255, 255, 255, 0.95) !important;
    }

    /* Prevent opening hours dropdown text cutoff */
    .hours-dropdown-list {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.88rem !important;
    }

    .hours-row {
        gap: 1rem !important;
    }

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

    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
        margin-top: 3rem;
    }

    .gallery-item-card {
        transform: none !important;
        padding: 1rem 1rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

