/* Baby Bump to Nappy - Main Stylesheet */

/* ========================================
   CENTRALIZED FONT CONFIGURATION
   All fonts are now managed through CSS variables below
   Change fonts, sizes, and weights in :root for site-wide updates
   ======================================== */

/* Import Google Fonts - Crimson Text with multiple weights for better typography */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Great+Vibes&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: var(--line-height-body);
    color: var(--text-dark);
    background-color: #fff;
    font-size: var(--font-size-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure page sections do not have top or bottom margins
   This targets semantic <section> elements and common section classes.
   We use !important so this rule wins over page-level overrides where necessary. */
section,
.section,
.page-section,
.content-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Changed from semibold to normal */
    margin-bottom: 1rem;
    line-height: var(--line-height-heading);
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 400;
    /* Changed from bold to normal */
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

/* Center section headers globally
   Targets common patterns across pages so section headings (h2/h3)
   and hero titles are centered by default. This is intentionally
   specific to section/header areas to avoid centering utility
   elements like navigation links or card titles. */
.section-header h2,
.section-header h3,
.section-title,
.hero-title,
section h2,
section h3 {
    text-align: center;
}

.section-header h2 {
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
    text-align: center;
    line-height: var(--line-height-body);
}

/* ========================================
   DESIGN SYSTEM: CSS VARIABLES
   Centralized configuration for typography, colors, and spacing
   ======================================== */
:root {
    /* === COLOR PALETTE === */
    --primary-pink: #F2DCDC;
    --soft-peach: #D9B26A;
    --lavender: #A0D9D3;
    --mint: #A0D9D3;
    --cream: #F2DCDC;
    --soft-gray: #F2DCDC;
    --text-dark: #0D0D0D;
    --text-light: #595959;
    --white: #ffffff;
    --accent-gold: #D9B26A;
    --accent-teal: #A0D9D3;
    --dark-gray: #595959;

    /* === FONT FAMILIES === */
    /* Body Font: Calibri - Clean, professional, pre-installed on Windows */
    --font-body: 'Calibri', 'Segoe UI', Tahoma, Arial, sans-serif;

    /* Heading Font: Crimson Text - Elegant serif for titles and headings */
    --font-heading: 'Crimson Text', Georgia, 'Times New Roman', serif;

    /* Decorative Font: Great Vibes - Flowing script for special elements */
    --font-decorative: 'Great Vibes', cursive;

    /* === FONT SIZES === */
    /* Heading Sizes */
    --font-size-h1: 2.5rem;
    /* 40px - Main page titles */
    --font-size-h2: 2rem;
    /* 32px - Section headings */
    --font-size-h3: 1.5rem;
    /* 24px - Subsection headings */
    --font-size-h4: 1.25rem;
    /* 20px - Card titles */
    --font-size-h5: 1.125rem;
    /* 18px - Small headings */
    --font-size-h6: 1rem;
    /* 16px - Smallest headings */

    /* Body Sizes */
    --font-size-base: 1rem;
    /* 16px - Standard body text */
    --font-size-large: 1.125rem;
    /* 18px - Emphasized text */
    --font-size-small: 0.875rem;
    /* 14px - Captions, labels */
    --font-size-xs: 0.75rem;
    /* 12px - Fine print */

    /* Decorative Sizes */
    --font-size-decorative-lg: 3rem;
    /* 48px - Hero decorative text */
    --font-size-decorative-md: 2.5rem;
    /* 40px - Section decorative */
    --font-size-decorative-sm: 1.75rem;
    /* 28px - Accent decorative */

    /* === FONT WEIGHTS === */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* === LINE HEIGHTS === */
    --line-height-tight: 1.2;
    /* Headings, titles */
    --line-height-heading: 1.3;
    /* H1-H6 */
    --line-height-body: 1.6;
    /* Paragraphs, body text */
    --line-height-relaxed: 1.8;
    /* Spacious reading */
}

/* === RESPONSIVE FONT SIZES === */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 2rem;
        /* 32px - Mobile */
        --font-size-h2: 1.75rem;
        /* 28px - Mobile */
        --font-size-h3: 1.375rem;
        /* 22px - Mobile */
        --font-size-decorative-lg: 2.5rem;
        /* 40px - Mobile */
        --font-size-decorative-md: 2rem;
        /* 32px - Mobile */
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-h1: 1.75rem;
        /* 28px - Small mobile */
        --font-size-h2: 1.5rem;
        /* 24px - Small mobile */
        --font-size-base: 0.9375rem;
        /* 15px - Small mobile */
    }
}

/* === UTILITY CLASSES === */
.font-body {
    font-family: var(--font-body);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-decorative {
    font-family: var(--font-decorative);
}

.font-weight-light {
    font-weight: var(--font-weight-light);
}

.font-weight-regular {
    font-weight: var(--font-weight-regular);
}

.font-weight-medium {
    font-weight: var(--font-weight-medium);
}

.font-weight-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-weight-bold {
    font-weight: var(--font-weight-bold);
}

/* Page transition overlay */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.98));
    pointer-events: none;
    z-index: 2000;
    opacity: 1;
    transition: opacity 450ms ease, transform 450ms ease;
    transform: scale(1);
}

/* Hidden state (page loaded) */
.page-transition-overlay.page-enter {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.995);
}

/* Visible state (when navigating away) */
.page-transition-overlay.page-exit {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* Animations for elements that should animate into view */
.animate-in {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 600ms ease, transform 650ms cubic-bezier(.2, .9, .2, 1);
}

/* Initial hidden state for animate-on-scroll elements */
.service-card,
.testimonial-slide,
.catalogue-card {
    opacity: 0;
    transform: translateY(18px) scale(0.995);
    transition: opacity 600ms ease, transform 650ms cubic-bezier(.2, .9, .2, 1);
}

/* Card hover polish */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 15, 15, 0.04);
    transition: transform 350ms ease, box-shadow 350ms ease;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 14px 28px rgba(15, 15, 15, 0.08);
}

/* Service link icon styling */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #595959;
    text-decoration: none;
    font-weight: 600;
}

.service-link .icon {
    font-size: 0.95rem;
    transition: transform 220ms ease, color 220ms ease;
}

.service-link:hover .icon {
    transform: translateX(4px);
}

/* Button/links polish */
.btn {
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:active {
    transform: translateY(1px) scale(0.998);
}

.social-icon {
    transition: color 220ms ease, transform 220ms ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Link subtle underline on hover */
a {
    transition: color 220ms ease;
}

a:hover {
    color: var(--accent-gold);
}

/* Top Header Styles */
.top-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--soft-peach));
    padding: 6px 0;
    /* reduced vertical padding to shrink top strip */
    font-size: 14px;
    color: var(--text-dark);
}

.top-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-left span {
    margin-right: 15px;
}

.divider {
    margin: 0 10px;
    opacity: 0.7;
}

.social-icon {
    color: var(--text-dark);
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-gold);
}

/* Header contact links: make email/phone in the top header black and remove underline */
.top-header .top-left a {
    color: var(--dark-gray);
    text-decoration: none;
    /* remove underline */
    font-weight: 600;
}

.top-header .top-left a:hover,
.top-header .top-left a:focus {
    color: var(--dark-gray);
    text-decoration: none;
}

/* ===== NEW HEADER NAVIGATION STYLES ===== */

/* Top Contact Bar */
.top-contact-bar {
    background: linear-gradient(135deg, #F2DCDC, #D9B26A);
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Crimson Text', serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-gold);
}

.contact-info span {
    color: var(--text-dark);
    opacity: 0.6;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Top Contact Bar Social Icons */
.top-contact-bar .social-links a {
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    background-color: transparent;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: relative;
}

.top-contact-bar .social-links a i {
    font-size: 14px;
    width: auto;
    height: auto;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

.top-contact-bar .social-links a:hover {
    background-color: var(--primary-pink);
    color: #000000;
    transform: translateY(-2px);
}

.social-links a {
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-navigation {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 9999 !important;
    padding: 10px 0;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
    position: relative;
    z-index: 9999 !important;
}

/* Mobile Menu Toggle - Hidden by default (desktop header only) */
.desktop-header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.desktop-header .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Navigation Lists */
.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-left li,
.nav-right li {
    position: relative;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--accent-gold);
    background: #f3dddd;
    border-radius: 5px;
}

.nav-left a.active,
.nav-right a.active,
.nav-left .dropdown.active>a,
.nav-right .dropdown.active>a {
    color: rgb(56, 56, 56) !important;
    background: #f3dddd !important;
    border-bottom: 2px solid #A0D9D3 !important;
    border-radius: 5px !important;
}

/* Logo Center */
.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    z-index: 10001 !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    list-style: none;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-menu a:hover {
    background: #f3dddd;
    color: var(--accent-gold);
}

/* Mobile Menu - Hidden by default (desktop header only) */
.desktop-header .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.desktop-header .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.desktop-header .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    text-transform: uppercase;
}

.desktop-header .mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.desktop-header .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-header .mobile-menu li {
    border-bottom: 1px solid #eee;
}

.desktop-header .mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.desktop-header .mobile-menu a i {
    margin-right: 10px;
    width: 20px;
}

.desktop-header .mobile-menu a:hover {
    background: #f3dddd;
}

.desktop-header .mobile-submenu {
    padding-left: 40px !important;
    font-size: 14px;
}

/* Mobile Menu Active States (desktop header) */
body.mobile-menu-active {
    overflow: hidden;
}

body.mobile-menu-active .desktop-header .mobile-menu-overlay {
    display: block;
    opacity: 1;
}

body.mobile-menu-active .desktop-header .mobile-menu {
    display: block;
    right: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-header .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-wrapper {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo-center {
        position: relative;
    }

    .nav-logo {
        height: 60px;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }

    .contact-info span {
        display: none;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        font-size: 14px;
    }

    .nav-logo {
        height: 50px;
    }
}

/* Main Header Styles - Centered Logo Design */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    /* slightly reduced header padding */
}

.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    /* tighten horizontal gap so header is more compact */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    /* slightly reduce side padding */
}

.left-nav,
.right-nav {
    display: flex;
    justify-content: center;
}

.left-nav {
    justify-content: flex-end;
}

.right-nav {
    justify-content: flex-start;
}

/* changed: only target direct child ULs so nested dropdown ULs stay vertical */
.left-nav>ul,
.right-nav>ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.left-nav a,
.right-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.left-nav a:hover,
.right-nav a:hover {
    color: var(--accent-gold);
}

.nav-left a.active,
.nav-right a.active,
.nav-left .dropdown.active>a,
.nav-right .dropdown.active>a {
    color: rgb(56, 56, 56) !important;
    background: #f3dddd !important;
    /* Flat pink background */
    border-bottom: 2px solid #A0D9D3 !important;
    padding: 8px 15px !important;
    border-radius: 5px !important;
    box-shadow: none !important;
    transform: none !important;
    font-weight: 500;
}

.center-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo .logo-image {
    height: 64px;
    /* reduced logo height to shrink header visually */
    width: auto;
    max-width: 260px;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown .fas {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* changed: make dropdown a vertical block list, tighten spacing and improve visuals */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.35rem 0;
    /* reduced vertical padding */
    min-width: 240px;
    /* wider for clear labels */
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s ease;
    z-index: 1001;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ensure any nested ULs remain vertical */
.dropdown-menu ul {
    display: block;
}

/* subtle dividers and rounded corners for first/last */
.dropdown-menu li+li a {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dropdown-menu a:hover {
    background: var(--soft-gray);
    color: var(--accent-gold);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    /* apply secondary visuals by default */
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    cursor: pointer;
    font-size: 1rem;
}

/* Icon inside buttons */
.btn .icon {
    margin-right: 10px;
    font-size: 1.05rem;
    vertical-align: middle;
    transition: transform 220ms ease, color 220ms ease;
    display: inline-block;
    color: var(--primary-pink);
}

/* Small tweak for secondary button icons */
.btn-secondary .icon {
    color: var(--primary-pink);
}

/* Screen-reader only text (accessible labels) */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   ENQUIRE NOW BUTTON - Standardized Style
   Uses CSS variables for maintainability
   ======================================== */
.btn-enquire {
    /* Typography - Using Crimson Text for all buttons */
    font-family: 'Crimson Text', serif;
    font-size: var(--font-size-base);
    font-weight: 400;
    /* Changed to normal weight - no bold */
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;

    /* Layout */
    display: inline-block;
    padding: 16px 45px;
    border-radius: 35px;
    text-align: center;

    /* Colors - Gold background with dark text */
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;

    /* Visual Effects */
    box-shadow: 0 4px 12px rgba(217, 178, 106, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enquire:hover {
    background: var(--accent-teal);
    color: var(--text-dark);
    box-shadow: 0 6px 18px rgba(160, 217, 211, 0.4);
    transform: translateY(-3px);
}

.btn-enquire:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(217, 178, 106, 0.3);
}

/* Variant for larger buttons (e.g., hero sections) */
.btn-enquire-lg {
    font-size: var(--font-size-large);
    padding: 18px 50px;
}

/* Variant for smaller buttons */
.btn-enquire-sm {
    font-size: var(--font-size-small);
    padding: 12px 35px;
}


.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    /* kept as alias for clarity */
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: white;
    border: 2px solid white;


}

/* base btn hover should act like secondary hover */
.btn:hover {
    background: var(--primary-pink);
    color: white;
}

/* Re-declare .btn-primary:hover after base hover to ensure primary buttons keep their original hover visuals */
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Button hover icon lift */
.btn:hover .icon {
    transform: translateY(-3px) scale(1.02);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 82vh;
    /* reduced hero height */
    overflow: hidden;
    z-index: 1 !important;
}

/* Hero Section for Index Page */
.hero-section {
    position: relative;
    z-index: 1 !important;
}

.hero-slider-container {
    position: relative;
    z-index: 1 !important;
}

.hero-slide {
    position: relative;
    z-index: 1 !important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 82vh;
    /* match hero height */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 82vh;
    /* fill the reduced hero area */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-family: var(--font-decorative);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Section Styles */
.section-title {
    text-align: center;
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

/* Story section spacing: add top margin so the "How It All Began…" heading sits lower on the page */
.story-section {
    margin-top: 60px;
    /* original value */
    padding: 60px 0;
    /* original value */
    background: var(--white);
}

/* Meet Dimple section spacing: add top and bottom margin/padding to separate it from adjacent sections */
.dimple-bio {
    margin: 60px 0;
    /* original value */
    padding: 40px 0;
    /* original value */
    background: var(--lavender);
}

/* Slightly reduce spacing on small screens for better fit */
@media (max-width: 600px) {

    .story-section,
    .dimple-bio {
        margin: 30px 0;
        /* original value */
        padding: 30px 0;
        /* original value */
    }
}

/* Highlights section spacing: spacing above and below the Trusted by Parents block */
.highlights-section {
    margin: 60px 0;
    /* original value */
    padding: 60px 0;
    /* original value */
    background: var(--white);
}

@media (max-width: 600px) {
    .highlights-section {
        margin: 30px 0;
        /* original value */
        padding: 30px 0;
        /* original value */
    }
}

.welcome-section {
    margin: 0;
    /* remove top and bottom margins */
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: var(--white);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--soft-peach), var(--lavender));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: #595959;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-gold);
}

/* Featured Gallery */
.featured-gallery {
    margin: 0;
    /* remove top and bottom outer spacing */
    padding: 80px 0;
    /* internal vertical padding retained */
    background: var(--soft-gray);
    /* override global section reset to add top spacing for this featured section */
    /* margin-top: 50px !important; */

}

/* About page gallery section spacing */
.about-gallery-section {
    padding-top: 80px;
    /* match other section vertical spacing */
    padding-bottom: 80px;
}

/* Simple Gallery Slider Styles */
.simple-gallery-slider {
    position: relative;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.simple-gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}

.gallery-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.simple-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.simple-gallery-slide.active {
    opacity: 1;
}

.simple-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.simple-gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.simple-gallery-controls button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.simple-gallery-controls button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.simple-gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.simple-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-dot.active {
    background: var(--accent-teal);
    transform: scale(1.2);
}

.simple-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
    background: var(--accent-teal);
    transform: scale(1.2);
}

/* Testimonials */
.testimonials {
    margin: 0;
    /* remove top and bottom outer margin */
    padding: 60px 0;
    /* internal vertical padding retained */
    background: var(--lavender);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}

.testimonial-slide {
    display: none;
    padding: 40px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-content cite {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .testimonials {
        margin: 0;
        /* keep outer margin removed on small screens */
        padding: 30px 0;
    }
}

/* Final CTA */
.final-cta {
    /* outer spacing removed to make CTA sit flush with adjacent sections */
    margin: 0;
    /* remove top and bottom outer margin */
    padding: 80px 0;
    min-height: 340px;
    background: linear-gradient(135deg, var(--soft-peach), var(--mint));
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-family: var(--font-decorative);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: #E8CDD0;
    color: #0D0D0D;
    padding: 80px 0 30px;
}

/* Footer logo sizing: control site-wide, remove inline styles from HTML */
.footer-logo {
    width: 220px;
    /* slightly larger so logo details are clearer */
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

/* Put the logo on a subtle light panel so pastel logo colors read clearly on a dark footer */
.footer-logo-wrapper {
    display: inline-block;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 320px repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section h4 {
    color: #0D0D0D;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgb(89, 89, 89);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(2px);
}

.footer-section p {
    color: var(--primary-pink);
    margin-bottom: 10px;
    text-align: left;
}

.footer-social {
    margin-top: 20px;
}

.footer-social .social-icon {
    color: #0D0D0D;
    margin-right: 14px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 13, 13, 0.08);
    transition: background 180ms ease, transform 160ms ease, color 160ms ease;
}

.footer-social .social-icon:hover {
    background: #F2DCDC;
    transform: scale(1.1);
    color: #0D0D0D;
}

.footer-bottom {
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid rgba(13, 13, 13, 0.1);
    color: #595959;
    margin-top: 24px;
}

/* Responsive footer: stack columns and center content on small screens */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo-wrapper {
        margin: 0 auto;
    }

    .footer-section ul {
        display: inline-block;
        text-align: left;
    }
}

/* About Page Specific Styles */
.about-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-family: var(--font-decorative);
}

.story-section {
    padding: 80px 0;
    background: var(--lavender);
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.what-we-do {
    padding: 80px 0;
    background: var(--white);
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-overview-item {
    text-align: center;
    padding: 30px;
    background: var(--soft-gray);
    border-radius: 15px;
}

.service-overview-item i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.dimple-bio {
    padding: 40px 0;
    background: var(--lavender);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.bio-image {
    border-radius: 15px;
    overflow: hidden;
}

.bio-image img {
    width: 100%;
    height: auto;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.highlights-section {
    padding: 80px 0;
    background: var(--soft-gray);
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

/* Catalogue Page Styles */
.catalogue-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1544717297-fa95b6ee9643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalogue-hero-content {
    text-align: center;
    color: white;
}

.catalogue-hero h1 {
    font-size: 3rem;
    font-family: var(--font-decorative);
    margin-bottom: 20px;
}

.catalogue-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.catalogue-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.catalogue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.catalogue-card-image {
    height: 300px;
    overflow: hidden;
}

.catalogue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogue-card-content {
    padding: 30px;
    text-align: center;
}

.catalogue-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.catalogue-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.session-guide {
    padding: 80px 0;
    background: var(--soft-gray);
}

.guide-table {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guide-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--soft-gray);
}

.guide-row:last-child {
    border-bottom: none;
}

.guide-cell {
    padding: 25px;
}

.guide-cell:first-child {
    background: var(--soft-peach);
    font-weight: 600;
    color: var(--text-dark);
}

.guide-cell:last-child {
    background: var(--white);
    color: var(--text-light);
}

/* Catalogue Hero Gallery - 4 Image Row */
.catalogue-hero-gallery {
    padding: 0;
    margin: 0;
    background: linear-gradient(180deg, #F9F9F9 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    height: 65vh;
    min-height: 450px;
    max-height: 600px;
}

.hero-gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85);
}

.hero-gallery-item:hover .hero-image-wrapper img {
    transform: scale(1.1);
    filter: brightness(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
    transition: background 0.4s ease;
}

.hero-gallery-item:hover .hero-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(160, 217, 211, 0.4) 50%,
            rgba(160, 217, 211, 0.85) 100%);
}

.hero-text {
    text-align: center;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.hero-gallery-item:hover .hero-text {
    transform: translateY(-10px);
}

.hero-text h3 {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    margin: 0;
}

/* Tablet View - 2x2 Grid */
@media (max-width: 1024px) {
    .hero-gallery-container {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        min-height: 600px;
    }

    .hero-text h3 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* Mobile View - Single Column */
@media (max-width: 768px) {
    .hero-gallery-container {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }

    .hero-gallery-item {
        height: 300px;
    }

    .hero-text h3 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-overlay {
        padding: 30px 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-gallery-item {
        height: 250px;
    }

    .hero-text h3 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }
}

/* Catalogue Slogan Section */
.catalogue-slogan-section {
    padding: 50px 0;
    background: #FFF8F3;
    position: relative;
    overflow: hidden;
}

.catalogue-slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(160, 217, 211, 0.3) 20%,
            rgba(160, 217, 211, 0.6) 50%,
            rgba(160, 217, 211, 0.3) 80%,
            transparent 100%);
}

.slogan-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.slogan-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.7;
    color: #595959;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 40px;
}

.slogan-text::before,
.slogan-text::after {
    content: '"';
    font-family: var(--font-decorative);
    font-size: 3.5rem;
    color: #999999;
    opacity: 0.5;
    position: absolute;
    font-style: normal;
    line-height: 1;
}

.slogan-text::before {
    top: -10px;
    left: 5px;
}

.slogan-text::after {
    bottom: -20px;
    right: 5px;
    transform: rotate(180deg);
}

/* Responsive Slogan Section */
@media (max-width: 768px) {
    .catalogue-slogan-section {
        padding: 40px 0;
    }

    .slogan-text {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 0 30px;
    }

    .slogan-text::before,
    .slogan-text::after {
        font-size: 2.5rem;
    }

    .slogan-text::before {
        top: -10px;
    }

    .slogan-text::after {
        bottom: -18px;
    }
}

@media (max-width: 480px) {
    .catalogue-slogan-section {
        padding: 35px 0;
    }

    .slogan-text {
        font-size: 1.05rem;
        line-height: 1.6;
        padding: 0 25px;
    }

    .slogan-text::before,
    .slogan-text::after {
        font-size: 2rem;
    }

    .slogan-text::before {
        top: -8px;
    }

    .slogan-text::after {
        bottom: -15px;
    }
}

/* ================================
   CATALOGUE HERO GALLERY - PROFESSIONAL DESIGN
   ================================ */

.catalogue-hero-gallery {
    width: 100%;
    background: #ffffff;
    padding: 0;
    margin: 0;
}

.hero-gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    padding: 0;
}

.hero-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
}

.hero-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px 15px;
    transition: background 0.3s ease;
}

.hero-text {
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.hero-text h3 {
    font-family: var(--font-decorative);
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.hero-text p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Hover Effects - Subtle and Professional */
.hero-gallery-item:hover {
    box-shadow: none;
    transform: none;
}

.hero-gallery-item:hover img {
    transform: scale(1.05);
}

.hero-gallery-item:hover .hero-overlay {
    background: linear-gradient(to bottom,
            rgba(160, 217, 211, 0.1) 0%,
            rgba(160, 217, 211, 0.3) 40%,
            rgba(0, 0, 0, 0.65) 100%);
}

.hero-gallery-item:hover .hero-text {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero-gallery-container {
        gap: 0;
        padding: 0;
    }

    .hero-text h3 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-gallery-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-gallery-item {
        border-radius: 0;
    }

    .hero-text h3 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.8rem;
    }
}

/* Why I Chose Section */
.why-chose-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.why-chose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23A0D9D3" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.why-chose-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.why-chose-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #0D0D0D;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.why-chose-text {
    background: #FFF8F3;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(160, 217, 211, 0.2);
}

.intro-text,
.heart-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.9;
    color: #595959;
    margin: 0;
    font-weight: 400;
}

.intro-text {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 0;
}

.heart-text {
    font-style: italic;
    color: #0D0D0D;
    font-weight: 500;
}

/* Responsive Why I Chose Section */
@media (max-width: 768px) {
    .why-chose-section {
        padding: 60px 0;
    }

    .why-chose-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .why-chose-text {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .intro-text,
    .heart-text {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .intro-text {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .why-chose-section {
        padding: 50px 0;
    }

    .why-chose-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .why-chose-text {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .intro-text,
    .heart-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .intro-text {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .intro-text::after {
        font-size: 1.2rem;
    }
}

/* Which Session Section */
.which-session-section {
    padding: 80px 0;
    background: #A0D9D3;
    position: relative;
}

.which-session-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.which-session-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #0D0D0D;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.which-session-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, #A0D9D3, transparent);
    border-radius: 2px;
}

.which-session-intro {
    text-align: center;
}

.which-session-intro p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.9;
    color: #595959;
    margin-bottom: 25px;
    font-weight: 400;
}

.which-session-intro p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #0D0D0D !important;
    font-weight: 600 !important;
    font-size: 1.35rem !important;
    position: relative;
    padding: 30px 0 0 0;
    margin-top: 35px !important;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #D9B26A;
    border-radius: 2px;
}

/* Responsive Which Session Section */
@media (max-width: 768px) {
    .which-session-section {
        padding: 60px 0;
    }

    .which-session-title {
        font-size: 2.4rem;
        margin-bottom: 40px;
        padding-bottom: 15px;
    }

    .which-session-title::after {
        width: 100px;
        height: 2.5px;
    }

    .which-session-intro p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .highlight-text {
        font-size: 1.2rem !important;
        padding-top: 25px;
        margin-top: 30px !important;
    }

    .highlight-text::before {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .which-session-section {
        padding: 50px 0;
    }

    .which-session-title {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }

    .which-session-title::after {
        width: 80px;
        height: 2px;
    }

    .which-session-intro p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .highlight-text {
        font-size: 1.1rem !important;
        padding-top: 20px;
        margin-top: 25px !important;
    }

    .highlight-text::before {
        width: 40px;
    }
}

/* Session Detail Sections */
.session-detail-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
}

.session-detail-section:nth-child(even) {
    background: #F9F9F9;
}

.session-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reverse layout for alternating sections */
.session-detail-row .session-detail-image {
    order: 1;
}

.session-detail-row .session-detail-content {
    order: 2;
}

.session-detail-row.reverse-layout .session-detail-content {
    order: 1;
}

.session-detail-row.reverse-layout .session-detail-image {
    order: 2;
}

.session-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.session-detail-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.session-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.session-detail-image:hover img {
    transform: scale(1.05);
}

.session-detail-content {
    padding: 20px;
}

.session-detail-title {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    color: #0D0D0D;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.session-detail-intro {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.7;
    color: #A0D9D3;
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.session-detail-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.8;
    color: #595959;
    margin-bottom: 20px;
}

.session-detail-text strong {
    color: #0D0D0D;
    font-weight: 600;
}

.session-detail-note {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.7;
    color: #595959;
    margin-top: 25px;
    font-style: italic;
}

.read-more-link {
    color: #A0D9D3;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A0D9D3;
    transition: width 0.3s ease;
}

.read-more-link:hover {
    color: #7EC4BD;
}

.read-more-link:hover::after {
    width: 100%;
    background: #7EC4BD;
}

/* Responsive Session Detail Sections */
@media (max-width: 1024px) {
    .session-detail-row {
        gap: 40px;
    }

    .session-detail-title {
        font-size: 2.2rem;
    }

    .session-detail-intro {
        font-size: 1.25rem;
    }

    .session-detail-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .session-detail-section {
        padding: 60px 0;
    }

    .session-detail-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .session-detail-image {
        border-radius: 15px;
    }

    .session-detail-content {
        padding: 10px;
    }

    .session-detail-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .session-detail-intro {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .session-detail-text {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .session-detail-note {
        font-size: 1.05rem;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .session-detail-section {
        padding: 50px 0;
    }

    .session-detail-row {
        gap: 25px;
    }

    .session-detail-image {
        border-radius: 12px;
    }

    .session-detail-title {
        font-size: 1.8rem;
    }

    .session-detail-intro {
        font-size: 1.1rem;
    }

    .session-detail-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .session-detail-note {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .left-nav,
    .right-nav {
        display: none;
    }

    .center-logo .logo-image {
        height: 54px;
        max-width: 220px;
    }

    .desktop-header .mobile-menu-toggle {
        display: flex;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guide-row {
        grid-template-columns: 1fr;
    }

    .guide-cell:first-child {
        border-bottom: 1px solid var(--text-light);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .maternity-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .center-logo .logo-image {
        height: 44px;
        max-width: 180px;
    }

    .header-top {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .maternity-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Packages Section Styles */
.packages-section {
    /* add spacing above the packages section to separate it from the gallery */
    margin-top: 40px;
    padding: 80px 0;
    background: var(--lavender);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
    /* reduced because section has outer margin */
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--primary-pink);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.popular {
    background: var(--primary-pink);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.package-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.package-features .fas.fa-check {
    color: var(--primary-pink);
    margin-right: 10px;
    font-size: 0.9rem;
}

.package-notes {
    text-align: center;
    margin-top: 40px;
}

.package-notes p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.package-notes .fas {
    color: var(--primary-pink);
    margin-right: 8px;
}

/* Maternity Gallery Grid */
.maternity-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* FAQs Section */
.faqs-section {
    /* space above the FAQs section to separate it from the previous content */
    margin-top: 60px;
    /* increased spacing above the FAQs section */
    padding: 80px 0;
    background: var(--cream);
}

.faqs-grid {
    max-width: 800px;
    margin: 30px auto 0;
    /* reduce internal top margin since section has outer margin */
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--soft-peach);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-question .fas {
    color: var(--primary-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .fas {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--soft-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   NEWBORN PAGE STYLES
   ================================ */

/* Newborn Hero Section */
.newborn-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--lavender) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newborn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1555252333-9f8e92e65df9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.newborn-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.newborn-hero .hero-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newborn-hero .hero-title {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-family: var(--font-decorative);
    font-weight: 600;
}

.newborn-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Newborn Section */
.why-newborn-section {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    width: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--soft-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    background: var(--primary-pink);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--soft-gray);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, var(--soft-peach), var(--cake-orange));
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-decorative);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--soft-gray);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-pink);
    font-size: 1rem;
}

.package-details {
    margin-top: 3rem;
    background: var(--soft-peach);
    border-radius: 20px;
    padding: 2rem;
}

/* FAQ Styling for Newborn Page */
.newborn-hero+.faq-section {
    background: var(--soft-peach);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--lavender) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-decorative);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Image Placeholder Styling */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-peach), var(--lavender));
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Design for Newborn Page */
@media (max-width: 768px) {
    .newborn-hero .hero-title {
        font-size: 2.2rem;
    }

    .newborn-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .newborn-hero .hero-overlay {
        padding: 2rem;
        margin: 0 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .newborn-hero .hero-title {
        font-size: 1.8rem;
    }

    .stage-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stage-content h4 {
        font-size: 1rem;
    }
}

/* ================================
   MILESTONE PAGE STYLES
   ================================ */

/* Additional Color Variables for Milestone Theme */
:root {
    --light-blue: var(--accent-teal);
    --soft-mint: var(--accent-teal);
    --baby-blue: var(--lavender);
}

/* Milestone Hero Section */
.milestone-hero {
    background: linear-gradient(135deg, var(--soft-mint) 0%, var(--light-blue) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.milestone-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.milestone-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.milestone-hero .hero-title {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    font-family: var(--font-decorative);
    font-weight: 600;
}

.milestone-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Why Milestone Section */
.why-milestone-section {
    background: white;
}

.milestone-stages {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.stage-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--soft-mint), var(--baby-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stage-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stage-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Milestone Gallery */
.milestone-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.milestone-gallery-grid .gallery-item {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-gallery-grid .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.milestone-gallery-grid .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--soft-mint), var(--baby-blue));
}

.milestone-gallery-grid .gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.content-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
}

.gallery-caption h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-caption p {
    color: var(--accent-teal);
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Package Extras */
.package-extras {
    margin-top: 3rem;
    background: var(--soft-mint);
    border-radius: 20px;
    padding: 2rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.extra-item i {
    color: var(--accent-teal);
    font-size: 2rem;
    width: 40px;
}

.extra-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.extra-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Milestone CTA Section */
.milestone-cta {
    background: var(--accent-teal);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.milestone-cta .cta-content h2 {
    color: var(--text-dark);
}

.milestone-cta .btn-primary {
    background: var(--text-light);
    border-color: var(--text-light);
    color: white;
    transition: all 0.3s ease;
}

.milestone-cta .btn-primary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 13, 13, 0.4) !important;
}

.milestone-cta .btn-outline {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

.milestone-cta .btn-outline:hover {
    background: var(--accent-teal);
    color: white;
}

/* CTA Question Bubble */
.milestone-cta .question-bubble {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Decorative circles animation */
.milestone-cta div[style*="border-radius: 50%"] {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* FAQ Section for Milestone Page */
.milestone-hero~.faq-section {
    background: var(--light-blue);
}

/* Responsive Design for Milestone Page */
@media (max-width: 768px) {
    .milestone-hero .hero-title {
        font-size: 2.2rem;
    }

    .milestone-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .milestone-stages {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stage-item {
        min-width: auto;
    }

    .milestone-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .milestone-cta h2 {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
    }

    .milestone-cta .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .milestone-cta .btn-primary {
        width: 80% !important;
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .milestone-hero .hero-title {
        font-size: 1.8rem;
    }

    .stage-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stage-content h4 {
        font-size: 1rem;
    }
}

/* ================================
   1 YEAR+ / CAKE SMASH PAGE STYLES
   ================================ */

/* Additional Color Variables for Cake Smash Theme */
:root {
    --pastel-yellow: var(--primary-pink);
    --bright-yellow: var(--accent-gold);
    --cake-orange: var(--accent-gold);
    --party-purple: var(--lavender);
    --fun-pink: var(--primary-pink);
    --celebration-blue: var(--accent-teal);
}

/* Cake Smash Hero Section */
.cake-smash-hero {
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--fun-pink) 50%, var(--celebration-blue) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cake-smash-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1527678310403-b6c83e38afe2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cake-smash-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}


.cake-smash-hero .hero-title {
    font-size: 3.2rem;
    color: var(--cake-orange);
    margin-bottom: 1rem;
    font-family: var(--font-decorative);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cake-smash-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Floating Birthday Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-balloon {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
}

.balloon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.balloon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.balloon-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Why One Year Section */
.why-oneyear-section {
    background: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 600px) {
    .why-oneyear-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.celebration-features {
    margin-top: 2rem;
}

.celebration-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--soft-peach));
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.celebration-features .feature-item:hover {
    transform: translateX(10px);
}

.celebration-features .feature-item i {
    color: var(--cake-orange);
    font-size: 2rem;
    width: 50px;
}

.celebration-features .feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.celebration-features .feature-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cake-smash-placeholder {
    background: linear-gradient(135deg, var(--pastel-yellow), var(--party-purple));
}

/* Cake Smash Gallery */
.cake-smash-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    gap: 1.5rem;
    margin-top: 2rem;
}

.cake-smash-gallery .gallery-item.featured-large {
    grid-row: span 2;
    grid-column: span 1;
}

.cake-smash-gallery .gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.cake-smash-gallery .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cake-smash-gallery .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--celebration-blue), var(--fun-pink));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cake-smash-gallery .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cake-smash-gallery .gallery-caption h4 {
    color: var(--cake-orange);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Premium Package Styling */
.package-card.premium {
    border: 3px solid var(--bright-yellow);
    background: linear-gradient(135deg, var(--pastel-yellow), var(--cake-orange));
    position: relative;
    overflow: hidden;
}

.package-card.premium::before {
    content: '⭐';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    animation: twinkle 2s ease-in-out infinite;
}

.premium-badge {
    background: linear-gradient(135deg, var(--bright-yellow), var(--cake-orange));
    color: var(--text-dark);
    font-weight: 700;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Package Inclusions */
.package-inclusions {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--soft-peach));
    border-radius: 25px;
    padding: 2.5rem;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.inclusion-item i {
    color: var(--cake-orange);
    font-size: 2.5rem;
    width: 50px;
}

.inclusion-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.inclusion-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Cake Smash CTA Section */
.cake-smash-cta {
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--party-purple) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.cake-smash-cta::before {
    content: '🎉🎂🎈';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: party 3s ease-in-out infinite;
}

.cake-smash-cta .cta-content h2 {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cake-smash-cta .cta-content h3 {
    color: var(--cake-orange);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-decorative);
}

.cake-smash-cta .btn-primary {
    background: var(--cake-orange);
    border-color: var(--cake-orange);
    color: white;
    font-weight: 600;
}

.cake-smash-cta .btn-primary:hover {
    background: var(--bright-yellow);
    border-color: var(--bright-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.cake-smash-cta .btn-outline {
    border-color: var(--cake-orange);
    color: var(--cake-orange);
    font-weight: 600;
}

.cake-smash-cta .btn-outline:hover {
    background: var(--cake-orange);
    color: white;
    transform: translateY(-2px);
}

@keyframes party {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(5deg) scale(1.1);
    }

    75% {
        transform: rotate(-5deg) scale(1.1);
    }
}

/* FAQ Section for Cake Smash */
.cake-smash-hero~.faq-section {
    background: var(--pastel-yellow);
}

/* Responsive Design for Cake Smash Page */
@media (max-width: 768px) {
    .cake-smash-hero .hero-title {
        font-size: 2.5rem;
    }

    .cake-smash-hero .hero-subtitle {
        font-size: 1.2rem;
    }


    .floating-balloon {
        font-size: 2rem;
    }

    .celebration-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cake-smash-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 250px);
    }

    .cake-smash-gallery .gallery-item.featured-large {
        grid-row: span 1;
        grid-column: span 1;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .cake-smash-cta .cta-content h2 {
        font-size: 2.2rem;
    }

    .cake-smash-cta .cta-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cake-smash-hero .hero-title {
        font-size: 2rem;
    }


    .floating-balloon {
        font-size: 1.5rem;
    }

    .celebration-features .feature-item i {
        font-size: 1.5rem;
        width: 40px;
    }

    .inclusion-item i {
        font-size: 2rem;
        width: 40px;
    }
}

/* ================================
   ACADEMY PAGE STYLES
   ================================ */

/* Additional Color Variables for Academy Theme */
:root {
    --academy-purple: var(--dark-gray);
    --academy-light: var(--cream);
    --academy-blue: var(--accent-teal);
    --academy-green: var(--accent-teal);
    --academy-gold: var(--accent-gold);
    --knowledge-gray: #f8f9fa;
}

/* Academy Hero Section */
.academy-hero {
    background: linear-gradient(135deg, var(--academy-light) 0%, var(--lavender) 50%, var(--soft-peach) 100%);
    min-height: 73vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.academy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1584515933487-779824d29309?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.academy-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.academy-hero .hero-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--academy-purple);
}

.academy-hero .hero-title {
    font-size: 3.2rem;
    color: var(--academy-purple);
    margin-bottom: 1rem;
    font-family: var(--font-decorative);
    font-weight: 700;
}

.academy-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.academy-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: var(--academy-purple);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    text-align: center;
}

.academy-badge i {
    font-size: 1.2rem;
}

/* Why Academy Section */
.why-academy-section {
    background: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 600px) {
    .why-academy-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.academy-features {
    margin-top: 2rem;
}

.academy-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--academy-light), white);
    border-radius: 15px;
    border-left: 5px solid var(--academy-purple);
    transition: all 0.3s ease;
}

.academy-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.academy-features .feature-item i {
    color: var(--academy-purple);
    font-size: 2.5rem;
    width: 60px;
}

.academy-features .feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.academy-features .feature-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.academy-placeholder {
    background: linear-gradient(135deg, var(--academy-light), var(--academy-blue));
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--academy-purple);
}

.program-card.featured {
    border-color: var(--academy-purple);
    background: linear-gradient(135deg, var(--academy-light), rgb(230, 228, 228));
    transform: scale(1.02);
}

.program-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.program-status {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.early-bird {
    background: var(--academy-green);
    color: white;
}

.program-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--academy-purple);
    width: 20px;
}

.program-highlights ul {
    list-style: none;
    margin-bottom: 2rem;
}

.program-highlights li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.program-highlights li i {
    color: var(--academy-green);
    font-size: 0.9rem;
}

.program-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--academy-light), white);
    border-radius: 15px;
}

.program-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.btn-secondary {
    background: var(--academy-blue);
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--academy-blue);
    transform: translateY(-2px);

}

/* Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--academy-purple);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.module-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--academy-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.module-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding-right: 50px;
}

.module-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.modules-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--academy-light);
    border-radius: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-item i {
    color: var(--academy-green);
    font-size: 1.5rem;
}

/* Showcase Section */
.showcase-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.before-after .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 10px;
}

.before-after .before {
    background: linear-gradient(135deg, var(--text-light), var(--dark-gray));
}

.before-after .after {
    background: linear-gradient(135deg, var(--academy-green), var(--academy-blue));
}

.mentoring-image .image-placeholder {
    aspect-ratio: 16/10;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--academy-purple), var(--academy-blue));
    margin-bottom: 2rem;
}

.showcase-testimonial blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    border-left: 4px solid var(--academy-purple);
}

.showcase-testimonial cite {
    color: var(--academy-purple);
    font-weight: 600;
    font-size: 1rem;
}

/* Portal Section */
.portal-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.portal-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--knowledge-gray);
    border-radius: 15px;
    border-left: 4px solid var(--academy-blue);
}

.portal-feature i {
    color: var(--academy-blue);
    font-size: 2rem;
    width: 50px;
}

.portal-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.portal-feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.portal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Academy CTA Section */
.academy-cta {
    background: linear-gradient(135deg, var(--academy-light) 0%, var(--lavender) 100%);
    color: var(--text-dark);
}

.academy-cta .cta-content h2 {
    color: var(--academy-purple);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.academy-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.academy-cta .btn-primary {
    background: var(--academy-purple);
    border-color: var(--academy-purple);
}

.academy-cta .btn-primary:hover {
    background: var(--academy-blue);
    border-color: var(--academy-blue);
    transform: translateY(-2px);
}

.academy-cta .btn-outline {
    border-color: var(--academy-purple);
    color: var(--academy-purple);
}

.academy-cta .btn-outline:hover {
    background: var(--academy-purple);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Academy Page */
@media (max-width: 768px) {
    .academy-hero .hero-title {
        font-size: 2.5rem;
    }

    .academy-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .academy-hero .hero-overlay {
        padding: 2.5rem;
        margin: 0 1rem;
    }

    .academy-badge {
        position: static;
        margin: 1rem auto 2rem;
        width: fit-content;
    }

    .academy-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card.featured {
        transform: none;
    }

    .modules-benefits {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .showcase-slider {
        grid-template-columns: 1fr;
    }

    .portal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .portal-actions {
        flex-direction: row;
        justify-content: center;
    }

    .academy-cta .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .academy-hero .hero-title {
        font-size: 2rem;
    }

    .academy-hero .hero-overlay {
        padding: 2rem;
        border-width: 2px;
    }

    .academy-features .feature-item i {
        font-size: 2rem;
        width: 50px;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .portal-actions {
        flex-direction: column;
    }
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mint) 50%, var(--lavender) 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1546833999-b9f581a1996d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.contact-hero .hero-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-hero .hero-title {
    font-size: 2.8rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-family: var(--font-decorative);
    font-weight: 600;
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: #FFF9E6;
    padding-top: 60px;
    padding-bottom: 60px;
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(217, 178, 106, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-bottom: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 16px;
    font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    background: #fafafa;
    line-height: 1.5;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D9B26A;
    box-shadow: 0 0 0 4px rgba(217, 178, 106, 0.1);
    background: white;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    background: #fff5f5;
}

.form-group .error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: none;
    font-family: var(--font-body);
}

.form-group input.error+.error-message,
.form-group select.error+.error-message,
.form-group textarea.error+.error-message {
    display: block;
}

/* Conditional Fields Styling */
.conditional-fields {
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 2px dashed rgba(217, 178, 106, 0.3);
    transition: all 0.4s ease;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.form-submit .btn-secondary {
    font-family: var(--font-body);
    background: transparent;
    color: var(--primary-pink);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid var(--primary-pink);
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit .btn-secondary:hover {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 5px 15px rgba(242, 220, 220, 0.4);
    transform: translateY(-2px);
    border-color: white;
}

/* Success Message */
.success-message {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.success-content i {
    font-size: 3rem;
    color: var(--academy-green);
    margin-bottom: 1rem;
}

.success-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

/* Quick Contact Section */
.quick-contact-section {
    background: var(--soft-gray);
    padding-top: 2.5rem;
    /* slightly more top spacing */
    padding-bottom: 1.5rem;
    margin-top: 0.5rem;
    /* small gap from header */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
    /* tightened vertical margin */
}

.contact-item {
    background: white;
    padding: 1.5rem;
    /* slightly smaller cards */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #A0D9D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 18px;
    font-family: var(--font-heading);
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    font-family: var(--font-heading);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--text-dark);
}

.studio-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.info-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* Map Section */
.map-container {
    max-width: 800px;
    margin: 2rem auto;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--soft-gray), var(--mint));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-pink);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-placeholder small {
    color: var(--text-light);
    font-style: italic;
}

/* Social Section */
.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link.instagram .social-icon-large {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.facebook .social-icon-large {
    background: #1877f2;
}

.social-link.whatsapp .social-icon-large {
    background: #25d366;
}

.social-icon-large i {
    font-size: 1.8rem;
    color: white;
}

.social-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 18px;
    font-family: var(--font-heading);
}

.social-text span {
    color: var(--text-light);
    font-size: 16px;
    font-family: var(--font-heading);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--mint) 100%);
    text-align: center;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1rem;
}

.final-cta-section .cta-content h2 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 0.6rem;
    font-family: var(--font-decorative);
}

.final-cta-section .cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.final-cta-section .cta-buttons .btn {
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-size: 1.05rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.final-cta-section .cta-buttons .btn:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
    .final-cta-section {
        min-height: 340px;
        padding: 2.2rem 1rem;
    }

    .final-cta-section .cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-section .cta-buttons .btn {
        display: block;
        width: 80%;
        margin: 0.6rem auto;
    }

    .final-cta-section .cta-buttons .btn:hover {
        background: white;
        color: var(--text-dark);
    }
}

/* ================================
   FLOATING ENQUIRY FORM STYLES
   ================================ */

/* Floating Button - Most Popular Badge Color */
.floating-enquiry {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    background: #FF6B6B;
    color: #FFFFFF;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    background: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.floating-btn i {
    font-size: 1.2rem;
    color: #FFFFFF;
}

/* Modal - Premium Design */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.enquiry-modal.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(217, 178, 106, 0.08);
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 2.5rem 0;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    color: rgb(105, 105, 105);
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: rgba(89, 89, 89, 0.5);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(242, 220, 220, 0.3);
    color: rgb(89, 89, 89);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0 2.5rem 3rem 2.5rem;
}

.modal-body h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: rgb(89, 89, 89);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

/* Step 1: Enquiry Options - Premium Golden CTA Style */
.enquiry-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enquiry-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 18px 32px;
    background: linear-gradient(135deg, #D9B26A 0%, #C9A85F 100%);
    border: none;
    border-radius: 35px;
    box-shadow: 0 4px 15px rgba(217, 178, 106, 0.25);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    color: #0D0D0D;
    position: relative;
    overflow: hidden;
}

.enquiry-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #A0D9D3 0%, #8FC9C3 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.enquiry-option:hover {
    box-shadow: 0 6px 20px rgba(160, 217, 211, 0.35);
    transform: translateY(-2px);
}

.enquiry-option:hover::before {
    opacity: 1;
}

.enquiry-option:active {
    transform: translateY(0);
}

.enquiry-option i {
    font-size: 1.2rem;
    color: #0D0D0D;
    position: relative;
    z-index: 1;
}

.enquiry-option span {
    color: #0D0D0D;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Dynamic Forms */
.dynamic-form h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-pink);
}

.dynamic-form .form-group {
    margin-bottom: 1.5rem;
}

.dynamic-form .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.dynamic-form .form-group input,
.dynamic-form .form-group select,
.dynamic-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.dynamic-form .form-group input:focus,
.dynamic-form .form-group select:focus,
.dynamic-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.dynamic-form textarea {
    resize: vertical;
    min-height: 80px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.dynamic-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Confirmation Step */
.confirmation-content {
    text-align: center;
    padding: 2rem;
}

.confirmation-content i {
    font-size: 3rem;
    color: var(--academy-green);
    margin-bottom: 1rem;
}

.confirmation-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Floating Button & Modal Responsive Styles */
@media (max-width: 1024px) {
    .floating-enquiry {
        bottom: 20px;
        right: 20px;
    }

    .modal-content {
        max-width: 90%;
        border-radius: 22px;
    }

    .modal-header {
        padding: 2.2rem 2.2rem 0;
    }

    .modal-body {
        padding: 0 2.2rem 2.5rem 2.2rem;
    }
}

@media (max-width: 768px) {
    .floating-enquiry {
        bottom: 15px;
        right: 15px;
    }

    .modal-content {
        max-width: 95%;
        border-radius: 20px;
    }

    .modal-header {
        padding: 2rem 2rem 0;
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 24px;
    }

    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 26px;
    }

    .modal-body {
        padding: 0 2rem 2.5rem 2rem;
    }

    .modal-body h4 {
        font-size: 16px !important;
        margin-bottom: 1.5rem;
    }

    .enquiry-options {
        gap: 0.9rem;
    }

    .enquiry-option {
        padding: 16px 28px;
        font-size: 14px;
    }

    .enquiry-option i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-enquiry {
        bottom: 15px;
        right: 15px;
    }

    .modal-content {
        max-width: calc(100% - 20px);
        max-height: 92vh;
        border-radius: 18px;
    }

    .modal-header {
        padding: 1.8rem 1.8rem 0;
        margin-bottom: 1.2rem;
    }

    .modal-header h3 {
        font-size: 22px;
    }

    .modal-close {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .modal-body {
        padding: 0 1.8rem 2rem 1.8rem;
    }

    .modal-body h4 {
        font-size: 15px !important;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .enquiry-options {
        gap: 0.85rem;
    }

    .enquiry-option {
        padding: 15px 24px;
        font-size: 13px;
        gap: 0.6rem;
    }

    .enquiry-option i {
        font-size: 1.15rem;
    }
}

@media (max-width: 360px) {

    .modal-content {
        max-width: calc(100% - 16px);
        border-radius: 16px;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 0;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .modal-body {
        padding: 0 1.5rem 1.8rem 1.5rem;
    }

    .enquiry-option {
        padding: 14px 20px;
        font-size: 12px;
    }
}

/* Find Us (.map-section) */
.map-section {
    background: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Studio Locations Grid */
.studio-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.studio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 216, 138, 0.35);
    border-color: #F4D88A;
}

.studio-header {
    background: linear-gradient(135deg, #A0D9D3 0%, #8BC7C0 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.studio-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.studio-card:hover .studio-header::before {
    top: 100%;
}

.studio-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.studio-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #A0D9D3 0%, #8BC7C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.studio-title h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: rgb(105, 105, 105);
    margin: 0 0 0.3rem 0;
    line-height: 36px;
}

.studio-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 16px;
    color: rgb(105, 105, 105);
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
}

.studio-address {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(to bottom, #FAFAFA 0%, white 100%);
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.7rem 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--font-heading);
}

.address-line i {
    color: #A0D9D3;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
}

.address-line span {
    font-weight: 500;
}

.studio-map {
    padding: 0 2rem 1.5rem;
    background: white;
}

.studio-map iframe {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.studio-card:hover .studio-map iframe {
    transform: scale(1.02);
}

.studio-actions {
    padding: 1.5rem 2rem 2rem;
    background: white;
    text-align: center;
}

.btn-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 16px 45px;
    background: #D9B26A;
    color: #0D0D0D;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(217, 178, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-map-link::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;
}

.btn-map-link:hover::before {
    width: 300px;
    height: 300px;
}

.btn-map-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-map-link span {
    position: relative;
    z-index: 1;
}

.btn-map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(160, 217, 211, 0.4);
    background: #A0D9D3;
    color: #0D0D0D;
}

.btn-map-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .studio-locations-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .studio-locations-grid {
        gap: 2rem;
    }

    .studio-header {
        padding: 1.5rem;
    }

    .studio-title h3 {
        font-size: 1.5rem;
    }

    .studio-address {
        padding: 1.5rem;
    }

    .address-line {
        font-size: 0.95rem;
    }

    .studio-map {
        padding: 0 1.5rem 1.5rem;
    }

    .studio-actions {
        padding: 1.5rem;
    }

    .btn-map-link {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Stay Connected (.social-section) */
.social-section {
    background: var(--primary-pink);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Contact Gallery Section */
.contact-gallery-section {
    background: var(--lavender);
    padding: 50px 0;
    margin: 40px 0;
    text-align: center;
}

.contact-gallery-section .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.contact-gallery-grid img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.3s;
}

.contact-gallery-grid img:hover {
    transform: scale(1.05);
}

.about-gallery-section {
    margin-top: 48px;
}

/* Index Page Header Styles - Top Contact Bar and Main Navigation */
.top-contact-bar {
    background: #fff;
    padding: 7.5px 0;
    padding-bottom: 50px;
    font-size: 12px;
    font-family: var(--font-heading);
    line-height: 23px;
    font-weight: 400;
    color: rgb(105, 105, 105);
    position: relative;
    z-index: 1;
    margin: 0;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.contact-info span {
    color: rgb(105, 105, 105);
    margin: 0 5px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 80px;
}

.top-contact-bar a {
    color: rgb(105, 105, 105);
    text-decoration: none;
    margin: 0 10px;
    font-size: 12px;
    font-family: var(--font-heading);
    line-height: 23px;
    font-weight: 400;
}

.top-contact-bar a i {
    margin-right: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin: 0;
    color: #0D0D0D;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
    background: #F2DCDC;
}

/* Main Navigation */
.main-navigation {
    background: #A0D9D3;
    padding: 11.25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin: 0;
    margin-top: -45px;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.nav-left {
    justify-content: flex-end;
    margin-right: 100px;
    margin-left: 60px;

}

.nav-right {
    justify-content: flex-start;
    margin-left: 100px;
}

.nav-left a,
.nav-right a {
    color: rgb(56, 56, 56);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-family: var(--font-heading);
    line-height: 23px;
    border-radius: 5px;
}

.nav-left a:hover,
.nav-right a:hover {
    /* color: #A0D9D3; */
    color: rgb(56, 56, 56);
    border-bottom: 2px solid #A0D9D3;
    background-color: #f3dddd;
}

.logo-center {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-center img {
    height: 117px;
    width: 117px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid #A0D9D3;
    padding: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(160, 217, 211, 0.3);
    transition: all 0.3s ease;
}

.logo-center img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(160, 217, 211, 0.5);
    border-color: #FFB6D9;
}

/* ================================
   MOBILE MENU STYLES (desktop header only)
   ================================ */

/* Mobile Menu Toggle Button - desktop header */
.desktop-header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
}

.desktop-header .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: rgb(56, 56, 56);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.desktop-header .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.desktop-header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.desktop-header .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay - desktop header */
.desktop-header .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.desktop-header .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu - desktop header */
.desktop-header .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
}

.desktop-header .mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header - desktop header */
.desktop-header .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #A0D9D3;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.desktop-header .mobile-menu-header span {
    font-size: 18px;
    font-weight: 700;
    color: rgb(56, 56, 56);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.desktop-header .mobile-menu-close {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgb(56, 56, 56);
    font-size: 18px;
}

.desktop-header .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.desktop-header .mobile-menu-close:active {
    transform: rotate(90deg) scale(0.9);
}

.desktop-header .mobile-menu ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.desktop-header .mobile-menu ul li {
    border-bottom: 1px solid rgba(160, 217, 211, 0.2);
}

.desktop-header .mobile-menu ul li:last-child {
    border-bottom: none;
}

.desktop-header .mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    color: rgb(56, 56, 56);
    text-decoration: none;
    font-size: 15px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-header .mobile-menu ul li a i {
    font-size: 16px;
    width: 20px;
    color: #A0D9D3;
    transition: all 0.3s ease;
}

.desktop-header .mobile-menu ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 40%;
    background: #A0D9D3;
    transition: width 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.desktop-header .mobile-menu ul li a:hover {
    background: rgba(160, 217, 211, 0.1);
    color: #A0D9D3;
    padding-left: 35px;
}

.desktop-header .mobile-menu ul li a:hover i {
    color: #F2DCDC;
    transform: scale(1.1);
}

.desktop-header .mobile-menu ul li a:hover::before {
    width: 4px;
}

.desktop-header .mobile-menu ul li a:active {
    background: rgba(160, 217, 211, 0.2);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ================================
   INDEX PAGE SPECIFIC STYLES
   ================================ */

/* Homepage Body Override */
body.index-page {
    font-family: var(--font-heading);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: rgb(105, 105, 105);
    background-color: #F1EEEF;
    font-size: 12px;
    line-height: 23px;
    font-weight: 400;
}

/* Hero Slider Section */
.hero-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
    margin: 0;
    background: linear-gradient(180deg, #FBE9F0 0%, #F5F5F5 100%);
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-card {
    background: #fff;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: none;
}

.hero-card.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.hero-card-inner {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.hero-card-inner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 0;
    border-radius: 50%;
    background: rgba(217, 182, 106, 0.9);
    border: 3px solid #fff;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.hero-arrow:hover {
    background: #D9B26A;
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 15px;
}

.hero-next {
    right: 15px;
}

/* Hero - Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero-slider-wrapper {
        padding: 0 60px;
    }

    .hero-slider-container {
        gap: 20px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0 !important;
        font-size: 18px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }
}

/* Hero - Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-slider-wrapper {
        padding: 0 50px;
    }

    .hero-slider-container {
        display: block;
    }

    .hero-card {
        width: 100%;
        margin-bottom: 0;
        border-radius: 20px;
    }

    .hero-card.active {
        display: block;
    }

    .hero-card-inner img {
        aspect-ratio: 3 / 4;
        max-height: 65vh;
    }

    .hero-card:hover {
        transform: none;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0 !important;
        font-size: 16px;
        border-width: 2px;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }
}

/* Hero - Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 15px 0;
    }

    .hero-slider-wrapper {
        padding: 0 42px;
    }

    .hero-card {
        border-radius: 15px;
    }

    .hero-card-inner img {
        max-height: 55vh;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
        padding: 0 !important;
        font-size: 14px;
        border-width: 2px;
    }

    .hero-prev {
        left: 4px;
    }

    .hero-next {
        right: 4px;
    }
}

/* Hero - Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    .hero-section {
        padding: 10px 0;
    }

    .hero-slider-wrapper {
        padding: 0 38px;
    }

    .hero-card-inner img {
        max-height: 50vh;
    }

    .hero-arrow {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        padding: 0 !important;
        font-size: 12px;
    }

    .hero-prev {
        left: 3px;
    }

    .hero-next {
        right: 3px;
    }
}

/* About & Catalogue Section */
.about-catalogue-section {
    background: linear-gradient(180deg, #F2DCDC 0%, #FFE8F0 100%);
    padding: 8px 0 10px 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
    clear: both;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-box {
    text-align: center;
    padding: 40px;
}

.about-box h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 20px;
    color: rgb(56, 56, 56);
    font-weight: 400;
    line-height: 36px;
}

.about-box p {
    font-size: 12px;
    line-height: 23px;
    margin-bottom: 30px;
    color: rgb(105, 105, 105);
    font-family: var(--font-heading);
    font-weight: 400;
}

.btn-custom {
    display: inline-block;
    background: linear-gradient(135deg, #A0D9D3 0%, #8BC7C0 100%);
    color: rgb(56, 56, 56);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(160, 217, 211, 0.3);
    border: 2px solid transparent;
    font-family: var(--font-heading);
    line-height: 23px;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #8BC7C0 0%, #A0D9D3 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 217, 211, 0.5);
    border-color: #fff;
}

.studio-box {
    text-align: center;
    padding: 40px;
}

.studio-box h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 20px;
    color: rgb(56, 56, 56);
    font-weight: 400;
    line-height: 36px;
}

.studio-box p {
    font-size: 12px;
    margin-bottom: 30px;
    color: rgb(105, 105, 105);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 23px;
}

/* Catalogue & Pricing Section */
.catalogue-pricing-section {
    background: #FFFFFF;
    padding: 60px 0;
    margin: 0;
    position: relative;
    z-index: 2;
    clear: both;
}

/* Catalogue Grid */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalogue-card {
    background: #FFFFFF;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    text-align: center;
    padding: 25px;
    border: 3px solid #F0F0F0;
    position: relative;
}

.catalogue-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 45px rgba(160, 217, 211, 0.3);
    border-color: #A0D9D3;
}

.catalogue-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 12px;
    color: rgb(56, 56, 56);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    line-height: 23px;
}

.catalogue-card p {
    font-size: 12px;
    color: rgb(105, 105, 105);
    line-height: 23px;
    font-style: normal;
    margin-bottom: 12px;
    margin-top: 0;
    font-family: var(--font-heading);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.catalogue-card:hover p {
    -webkit-line-clamp: unset;
    max-height: 200px;
}

.catalogue-image-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
    border: 4px solid #E8E8E8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.catalogue-card:hover .catalogue-image-box {
    border-color: #A0D9D3;
    box-shadow: 0 8px 25px rgba(160, 217, 211, 0.3);
}

.catalogue-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalogue-card:hover .catalogue-image-box img {
    transform: scale(1.08);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FFFACD 0%, #FFF9C4 50%, #FFEB99 100%);
    padding: 50px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: rgb(56, 56, 56);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 36px;
}

.contact-section p {
    font-size: 12px;
    margin-bottom: 30px;
    color: rgb(105, 105, 105);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 23px;
}

.btn-book-session {
    display: inline-block;
    background: #fff;
    color: rgb(56, 56, 56);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 400;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-family: var(--font-heading);
    line-height: 23px;
}

.btn-book-session:hover {
    background: #A0D9D3;
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    padding: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 50px;
    color: rgb(56, 56, 56);
    font-weight: 400;
    line-height: 36px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonial-card {
    background: #FFF8F3;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: none;
    border: none;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-12px);
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F0F0F0 0%, #E0E0E0 100%);
    margin: 0 auto 25px;
    overflow: hidden;
    border: 6px solid #A0D9D3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.08);
}

.testimonial-photo i {
    font-size: 90px;
    color: #AAA;
}

.testimonial-stars {
    color: #FF9800;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 4px;
    filter: drop-shadow(0 2px 3px rgba(255, 152, 0, 0.2));
}

.testimonial-text {
    font-size: 12px;
    font-style: normal;
    margin-bottom: 2px;
    color: rgb(105, 105, 105);
    line-height: 23px;
    font-weight: 400;
    min-height: 60px;
    padding: 0 5px;
    font-family: var(--font-heading);
}

.testimonial-text strong {
    font-weight: 700;
    color: #222;
}

.testimonial-author {
    font-weight: 400;
    font-size: 14px;
    color: rgb(56, 56, 56);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    line-height: 23px;
}

.testimonial-role {
    font-size: 12px;
    color: rgb(105, 105, 105);
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    padding: 0 10px;
    font-family: var(--font-heading);
}

.testimonial-card::before {
    display: none;
}

/* Academy Section */
.academy-section {
    background: linear-gradient(180deg, #F2DCDC 0%, #FFE8F0 100%);
    padding: 80px 0;
}

/* Student Reviews Section */
.student-reviews-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.academy-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 20px;
    color: rgb(56, 56, 56);
    font-weight: 400;
    line-height: 36px;
}

.academy-dual {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.mentor-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mentor-box h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: rgb(56, 56, 56);
    line-height: 36px;
}

.mentor-box p {
    font-size: 12px;
    line-height: 23px;
    color: rgb(105, 105, 105);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.video-box {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-box iframe {
    width: 100%;
    height: 100%;
}

/* Student Reviews */
.student-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 20px;
    align-items: stretch;
}

.student-review-card {
    background: #FFF8F3;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 2px solid #F0F0F0;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.student-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(160, 217, 211, 0.3);
    border-color: #A0D9D3;
}

.student-review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: rgba(200, 200, 200, 0.3);
    font-family: Georgia, serif;
    line-height: 0;
}

.student-review-card p {
    font-size: 12px;
    font-style: normal;
    color: rgb(105, 105, 105);
    line-height: 23px;
    margin-bottom: 20px;
    font-weight: 400;
    min-height: 100px;
    font-family: var(--font-heading);
}

.student-name {
    font-weight: 400;
    font-size: 14px;
    color: rgb(56, 56, 56);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    line-height: 23px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #A0D9D3 0%, #8BC7C0 100%);
    padding: 40px 0;
    text-align: center;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 30px;
    color: rgb(56, 56, 56);
    font-weight: 400;
    line-height: 36px;
}

.faq-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.faq-links a {
    color: rgb(56, 56, 56);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: var(--font-heading);
    line-height: 23px;
}

.faq-links a:hover {
    color: #A0D9D3;
    transform: translateY(-2px);
}

/* Index Page Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.catalogue-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.catalogue-card:nth-child(1) {
    animation-delay: 0.1s;
}

.catalogue-card:nth-child(2) {
    animation-delay: 0.2s;
}

.catalogue-card:nth-child(3) {
    animation-delay: 0.3s;
}

.catalogue-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ================================
   INDEX PAGE RESPONSIVE DESIGN
   ================================ */

/* Tablet & Medium Screens (1024px and below) */
@media (max-width: 1024px) {

    .section-dual,
    .academy-dual {
        grid-template-columns: 1fr;
    }

    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .student-reviews {
        grid-template-columns: 1fr;
    }

    .nav-left,
    .nav-right {
        gap: 40px;
    }

    .nav-right {
        margin-left: 100px;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {

    /* Top Contact Bar - Mobile Optimized */
    .top-contact-bar {
        padding: 12px 0;
        font-size: 11px;
        padding-bottom: 40px;
        background: #fff;
    }

    .top-contact-bar .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 20px;
        justify-content: center;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .contact-info a {
        font-size: 11px;
        margin: 0;
        padding: 6px 10px;
        background: #f8f8f8;
        border-radius: 20px;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .contact-info a:hover {
        background: #F2DCDC;
    }

    .contact-info i {
        font-size: 11px;
        margin-right: 5px;
    }

    .contact-info span {
        display: none;
    }

    .social-links {
        margin-top: 8px;
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .social-links a:hover {
        transform: scale(1.15);
    }

    /* Main Navigation - Mobile Responsive */
    .main-navigation {
        padding: 14px 0;
        margin-top: -35px;
        position: sticky;
        top: 0;
        z-index: 9990;
        background: #A0D9D3;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-wrapper {
        padding: 0 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        min-height: 50px;
    }

    /* Show mobile menu toggle - desktop header only */
    .desktop-header .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 10002;
        margin-right: auto;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .desktop-header .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .desktop-header .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    /* Hide desktop navigation */
    .nav-left,
    .nav-right {
        display: none !important;
    }

    /* Center logo on mobile */
    .logo-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -35px;
        z-index: 10001;
    }

    .logo-center img {
        height: 98px;
        width: 98px;
        border-width: 3px;
        box-shadow: 0 4px 12px rgba(160, 217, 211, 0.4);
    }

    /* About & Catalogue Section */
    .about-catalogue-section {
        padding: 40px 0 60px 0;
    }

    .section-container {
        padding: 0 15px;
    }

    /* Pink Section with About/Badge/Studio */
    .about-catalogue-section>div:first-child {
        padding: 30px 20px !important;
        margin-bottom: 40px !important;
    }

    .about-catalogue-section .about-studio-grid,
    .about-catalogue-section>div:first-child>div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .about-catalogue-section>div:first-child>div>div {
        text-align: center !important;
    }

    .about-catalogue-section>div:first-child>div>div p {
        font-size: 13px !important;
        line-height: 1.8 !important;
        margin-bottom: 18px !important;
    }

    .about-catalogue-section>div:first-child>div>div p br {
        display: none;
    }

    .about-catalogue-section>div:first-child>div>div strong {
        font-size: 15px !important;
    }

    .about-catalogue-section img[alt*="Badge"] {
        width: 110px !important;
    }

    .btn-custom {
        font-size: 10px !important;
        padding: 11px 25px !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }

    /* Catalogue & Pricing Heading */
    .about-catalogue-section>div:nth-child(2) h2 {
        font-size: 24px !important;
    }

    /* Catalogue Grid */
    .catalogue-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin-top: 30px;
        padding: 0 10px;
    }

    .catalogue-card {
        padding: 20px;
        border-width: 2px;
    }

    .catalogue-image-box {
        aspect-ratio: 3 / 4;
        border-width: 3px;
    }

    .catalogue-card h3 {
        font-size: 17px;
        margin-top: 12px;
    }

    .catalogue-card p {
        font-size: 13px;
        line-height: 1.7;
        min-height: 44px;
        -webkit-line-clamp: 2;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 15px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-section p {
        font-size: 13px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .btn-book-session {
        padding: 13px 30px;
        font-size: 11px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 40px 0;
        margin-top: 60px !important;
    }

    .testimonials-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .testimonial-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
        border-width: 5px;
    }

    .testimonial-stars {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
    }

    /* Academy Section */
    .academy-section {
        padding: 60px 0;
    }

    .academy-section h2 {
        font-size: 24px;
    }

    .academy-dual {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 15px !important;
    }

    .mentor-box {
        padding: 30px 20px;
        min-height: auto;
    }

    .mentor-box h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .video-box {
        min-height: 250px;
        order: 1;
    }

    .academy-dual>div:nth-child(1) {
        order: 0;
    }

    .academy-dual>div:nth-child(3) {
        order: 2;
        padding: 25px 20px !important;
    }

    .academy-dual>div:nth-child(3) p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* Student Reviews */
    .student-reviews {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .student-review-card {
        padding: 25px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 30px 15px;
    }

    .faq-section h2 {
        font-size: 24px;
    }

    .faq-links {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
    body.index-page {
        font-size: 14px;
    }

    /* Top Contact Bar - Smaller Mobile */
    .top-contact-bar {
        padding: 10px 0;
        font-size: 10px;
        padding-bottom: 35px;
    }

    .top-contact-bar .container {
        padding: 0 15px;
        gap: 10px;
    }

    .contact-info {
        gap: 6px;
    }

    .contact-info a {
        font-size: 10px;
        padding: 5px 8px;
    }

    .contact-info i {
        font-size: 10px;
        margin-right: 4px;
    }

    .social-links {
        gap: 10px;
        margin-top: 6px;
    }

    .social-links a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 15px;
    }

    /* Main Navigation */
    .main-navigation {
        padding: 12px 0;
        margin-top: -30px;
    }

    .nav-wrapper {
        padding: 0 15px;
    }

    .logo-center {
        top: -30px;
    }

    .logo-center img {
        height: 85px;
        width: 85px;
    }

    /* Mobile menu adjustments - desktop header only */
    .desktop-header .mobile-menu-toggle {
        width: 28px;
        height: 22px;
        padding: 6px;
    }

    .desktop-header .mobile-menu-toggle span {
        height: 2.5px;
    }

    .desktop-header .mobile-menu {
        width: 260px;
        padding-top: 70px;
    }

    .desktop-header .mobile-menu ul li a {
        padding: 16px 20px;
        font-size: 15px;
    }

    /* About & Catalogue Section */
    .about-catalogue-section {
        padding: 35px 0 50px 0;
    }

    .section-container {
        padding: 0 12px;
    }

    /* Pink Section */
    .about-catalogue-section>div:first-child {
        padding: 25px 15px !important;
        margin-bottom: 35px !important;
    }

    .about-catalogue-section .about-studio-grid,
    .about-catalogue-section>div:first-child>div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: center !important;
    }

    .about-catalogue-section>div:first-child>div>div p {
        font-size: 12px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    .about-catalogue-section>div:first-child>div>div p br {
        display: none;
    }

    .about-catalogue-section>div:first-child>div>div strong {
        font-size: 14px !important;
        display: block;
        margin-bottom: 5px;
    }

    .about-catalogue-section img[alt*="Badge"] {
        width: 100px !important;
    }

    .about-catalogue-section .btn-custom {
        font-size: 9px !important;
        padding: 10px 22px !important;
        letter-spacing: 0.8px !important;
        white-space: nowrap !important;
    }

    /* Catalogue & Pricing Heading */
    .about-catalogue-section>div:nth-child(2) {
        margin-bottom: 35px !important;
    }

    .about-catalogue-section>div:nth-child(2) h2 {
        font-size: 22px !important;
    }

    .about-catalogue-section>div:nth-child(2) h2 div {
        width: 75px !important;
        height: 3px !important;
    }

    /* Section Headings */
    h2 {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    /* About & Studio Boxes */
    .about-box,
    .studio-box {
        padding: 25px 15px;
    }

    .btn-custom {
        padding: 12px 30px;
        font-size: 11px;
    }

    /* Catalogue Cards */
    .catalogue-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 8px;
    }

    .catalogue-card {
        padding: 15px;
    }

    .catalogue-image-box {
        aspect-ratio: 3 / 4;
    }

    .catalogue-card h3 {
        font-size: 16px;
    }

    .catalogue-card p {
        font-size: 13px;
        line-height: 1.6;
        -webkit-line-clamp: 2;
    }

    /* Contact Section */
    .contact-section {
        padding: 35px 12px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

    .contact-section p {
        font-size: 13px;
    }

    .btn-book-session {
        padding: 12px 30px;
        font-size: 11px;
    }

    .btn-book-session i {
        font-size: 15px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 35px 0;
        margin-top: 50px !important;
    }

    .testimonials-section h2 {
        font-size: 22px;
    }

    .testimonials-grid {
        padding: 0 15px;
    }

    .testimonial-photo {
        width: 120px;
        height: 120px;
    }

    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 13px;
        min-height: auto;
    }

    /* Academy Section */
    .academy-section {
        padding: 50px 0;
    }

    .academy-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .academy-dual {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 12px !important;
    }

    .mentor-box {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .mentor-box h3 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .mentor-box .btn-custom {
        font-size: 11px;
        padding: 12px 28px;
    }

    .video-box {
        min-height: 220px;
        border-radius: 12px;
    }

    .academy-dual>div:nth-child(3) {
        padding: 22px 15px !important;
        border-radius: 12px !important;
    }

    .academy-dual>div:nth-child(3) p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
    }

    .academy-dual>div:nth-child(3) .btn-custom {
        font-size: 11px;
        padding: 11px 25px;
    }

    /* Student Reviews */
    .student-reviews {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 12px !important;
    }

    .student-review-card {
        padding: 25px 18px;
    }

    .student-review-card::before {
        font-size: 50px;
    }

    .student-review-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .student-name {
        font-size: 12px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    body.index-page {
        font-size: 13px;
        line-height: 20px;
    }

    /* Top Contact Bar - Extra Small Mobile */
    .top-contact-bar {
        padding: 8px 0;
        font-size: 9px;
        padding-bottom: 30px;
    }

    .top-contact-bar .container {
        padding: 0 12px;
        gap: 8px;
    }

    .contact-info {
        gap: 5px;
        flex-direction: column;
    }

    .contact-info a {
        font-size: 9px;
        padding: 4px 8px;
        max-width: 95%;
    }

    .contact-info i {
        font-size: 9px;
        margin-right: 3px;
    }

    .social-links {
        margin-top: 6px;
        gap: 8px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }

    /* Main Navigation */
    .main-navigation {
        padding: 10px 0;
        margin-top: -25px;
    }

    .nav-wrapper {
        padding: 0 12px;
    }

    .logo-center {
        top: -25px;
    }

    .logo-center img {
        height: 75px;
        width: 75px;
        border-width: 2px;
    }

    /* Mobile menu adjustments - desktop header only */
    .desktop-header .mobile-menu-toggle {
        width: 26px;
        height: 20px;
        padding: 5px;
    }

    .desktop-header .mobile-menu-toggle span {
        height: 2px;
    }

    .desktop-header .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .desktop-header .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .desktop-header .mobile-menu {
        width: 240px;
        padding-top: 60px;
    }

    .desktop-header .mobile-menu ul li a {
        padding: 14px 18px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 260px;
        padding: 12px 0;
    }

    .hero-slider-container {
        padding: 0 34px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 13px;
        border-width: 2px;
    }

    .slider-arrow.slider-prev {
        margin-left: 3px;
    }

    .slider-arrow.slider-next {
        margin-right: 3px;
    }

    .hero-slide {
        gap: 8px;
        padding: 5px;
    }

    .hero-slide-box {
        height: 170px;
        border-radius: 10px;
        border-width: 2px;
    }

    .hero-slide-box img {
        border-radius: 8px;
    }

    /* Sections Padding */
    .about-catalogue-section {
        padding: 30px 0 50px 0;
    }

    .section-container {
        padding: 0 10px;
    }

    /* Pink Section */
    .about-catalogue-section>div:first-child {
        padding: 20px 12px !important;
        margin-bottom: 30px !important;
        border-radius: 0 !important;
    }

    .about-catalogue-section>div:first-child>div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        align-items: center !important;
    }

    .about-catalogue-section>div:first-child>div>div p {
        font-size: 11px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .about-catalogue-section>div:first-child>div>div p br {
        display: none;
    }

    .about-catalogue-section>div:first-child>div>div strong {
        font-size: 13px !important;
        display: block;
        margin-bottom: 5px;
    }

    .about-catalogue-section>div:first-child>div>div a[href*=".html"] {
        font-size: 10px !important;
    }

    /* Award Badge */
    .about-catalogue-section img[alt*="Badge"] {
        width: 90px !important;
        max-width: 90px;
    }

    .about-catalogue-section .btn-custom {
        font-size: 8px !important;
        padding: 9px 20px !important;
        letter-spacing: 0.7px !important;
        white-space: nowrap !important;
    }

    /* Catalogue & Pricing Heading */
    .about-catalogue-section>div:nth-child(2) {
        margin-bottom: 35px !important;
    }

    .about-catalogue-section>div:nth-child(2) h2 {
        font-size: 20px !important;
        line-height: 26px !important;
    }

    .about-catalogue-section>div:nth-child(2) h2 div {
        width: 70px !important;
        height: 3px !important;
        margin-top: 8px !important;
    }

    .about-catalogue-section img[alt*="Badge"] {
        width: 100px !important;
        max-width: 100px;
    }

    /* Section Headings */
    h2 {
        font-size: 20px !important;
        line-height: 26px !important;
    }

    /* About/Studio Boxes */
    .about-box,
    .studio-box {
        padding: 20px 10px;
    }

    .about-box p,
    .studio-box p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .btn-custom {
        padding: 10px 25px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* Catalogue Grid */
    .catalogue-grid {
        gap: 20px;
        margin-top: 25px;
    }

    .catalogue-card {
        padding: 15px;
        border-width: 2px;
    }

    .catalogue-image-box {
        aspect-ratio: 3 / 4;
        border-width: 3px;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .catalogue-card h3 {
        font-size: 15px;
        letter-spacing: 1.5px;
        margin-top: 10px;
    }

    .catalogue-card p {
        font-size: 13px;
        line-height: 20px;
        min-height: 40px;
        -webkit-line-clamp: 2;
    }

    /* Contact Section */
    .contact-section {
        padding: 35px 10px;
    }

    .contact-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-section p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .btn-book-session {
        padding: 12px 25px;
        font-size: 10px;
    }

    .btn-book-session i {
        font-size: 14px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 35px 0;
    }

    .testimonials-section h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .testimonials-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-photo {
        width: 100px;
        height: 100px;
        border-width: 4px;
        margin-bottom: 15px;
    }

    .testimonial-stars {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 15px;
        min-height: auto;
    }

    .testimonial-author {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .testimonial-role {
        font-size: 11px;
        line-height: 18px;
    }

    /* Academy Section */
    .academy-section {
        padding: 45px 0;
    }

    .academy-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .academy-dual {
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .mentor-box {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .mentor-box h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .mentor-box .btn-custom {
        font-size: 10px;
        padding: 10px 25px;
        letter-spacing: 1px;
    }

    .video-box {
        min-height: 180px;
        border-radius: 12px;
    }

    /* Academy Right Text Box */
    .academy-dual>div:nth-child(3) {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }

    .academy-dual>div:nth-child(3) p {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-bottom: 15px !important;
    }

    .academy-dual>div:nth-child(3) .btn-custom {
        font-size: 10px;
        padding: 10px 25px;
    }

    /* Student Reviews Section */
    .student-reviews-section {
        padding: 50px 0;
    }

    .student-reviews-section h2 {
        font-size: 20px;
    }

    .student-reviews {
        gap: 20px;
        margin-top: 25px;
        padding: 0 10px;
    }

    .student-review-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .student-review-card::before {
        font-size: 45px;
        top: 5px;
        left: 10px;
    }

    .student-review-card p {
        font-size: 13px;
        line-height: 20px;
        min-height: auto;
        margin-bottom: 15px;
    }

    .student-name {
        font-size: 12px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 30px 10px;
    }

    .faq-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .faq-links {
        gap: 15px;
    }

    .faq-links a {
        font-size: 12px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {

    /* Top Contact Bar */
    .top-contact-bar {
        padding: 6px 0;
        font-size: 7px;
    }

    .top-contact-bar .container {
        padding: 0 6px;
        gap: 6px;
    }

    .contact-info {
        gap: 3px;
    }

    .contact-info a {
        font-size: 7px;
        max-width: 80%;
    }

    .contact-info i {
        font-size: 7px;
        margin-right: 2px;
    }

    .social-links {
        gap: 5px;
    }

    .social-links a {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 11px;
    }

    /* Main Navigation */
    .main-navigation {
        padding: 7px 0;
    }

    .logo-center {
        top: 2px;
    }

    .logo-center img {
        height: 68px;
        width: 68px;
    }

    /* Logo */
    .logo-center img {
        height: 65px;
        width: 65px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 210px;
        padding: 10px 0;
    }

    .hero-slider-container {
        padding: 0 28px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .hero-slide {
        gap: 7px;
        padding: 4px;
    }

    .hero-slide-box {
        height: 140px;
        border-radius: 8px;
    }

    .hero-slide-box img {
        border-radius: 6px;
    }

    /* About & Catalogue Section */
    .about-catalogue-section {
        padding: 25px 0 40px 0;
    }

    .section-container {
        padding: 0 8px;
    }

    /* Pink Section */
    .about-catalogue-section>div:first-child {
        padding: 16px 10px !important;
        margin-bottom: 25px !important;
    }

    .about-catalogue-section>div:first-child>div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 5px !important;
        align-items: center !important;
    }

    .about-catalogue-section>div:first-child>div>div p {
        font-size: 10px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    .about-catalogue-section>div:first-child>div>div p br {
        display: none;
    }

    .about-catalogue-section>div:first-child>div>div strong {
        font-size: 12px !important;
        display: block;
        margin-bottom: 4px;
    }

    .about-catalogue-section img[alt*="Badge"] {
        width: 75px !important;
    }

    .about-catalogue-section .btn-custom {
        font-size: 7px !important;
        padding: 8px 18px !important;
        letter-spacing: 0.6px !important;
        white-space: nowrap !important;
    }

    /* Catalogue & Pricing */
    .about-catalogue-section>div:nth-child(2) {
        margin-bottom: 30px !important;
    }

    .about-catalogue-section>div:nth-child(2) h2 {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    .about-catalogue-section>div:nth-child(2) h2 div {
        width: 60px !important;
        height: 2px !important;
    }

    /* Catalogue Grid */
    .catalogue-grid {
        gap: 18px;
    }

    .catalogue-image-box {
        aspect-ratio: 3 / 4;
    }

    .catalogue-card {
        padding: 12px;
    }

    .catalogue-card h3 {
        font-size: 14px;
    }

    .catalogue-card p {
        font-size: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
    }

    /* Contact Section */
    .contact-section {
        padding: 30px 8px;
    }

    .contact-section h2 {
        font-size: 18px;
    }

    .contact-section p {
        font-size: 12px;
    }

    .btn-book-session {
        padding: 10px 22px;
        font-size: 9px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 30px 0;
        margin-top: 40px !important;
    }

    .testimonials-section h2 {
        font-size: 18px;
    }

    .testimonial-photo {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }

    .testimonial-stars {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .testimonial-author {
        font-size: 11px;
    }

    .testimonial-role {
        font-size: 10px;
    }

    /* Academy Section */
    .academy-section {
        padding: 35px 0;
    }

    .academy-section h2 {
        font-size: 18px;
    }

    .academy-dual {
        gap: 18px !important;
        padding: 0 8px !important;
    }

    .mentor-box {
        padding: 18px 12px;
    }

    .mentor-box h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .mentor-box .btn-custom {
        font-size: 9px;
        padding: 9px 22px;
    }

    .video-box {
        min-height: 150px;
    }

    .academy-dual>div:nth-child(3) {
        padding: 18px 12px !important;
    }

    .academy-dual>div:nth-child(3) p {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-bottom: 12px !important;
    }

    .academy-dual>div:nth-child(3) .btn-custom {
        font-size: 9px;
        padding: 9px 22px;
    }

    /* Student Reviews */
    .student-reviews {
        padding: 0 8px !important;
        gap: 18px !important;
    }

    .student-review-card {
        padding: 18px 12px;
    }

    .student-review-card::before {
        font-size: 40px;
    }

    .student-review-card p {
        font-size: 12px;
        line-height: 18px;
    }

    .student-name {
        font-size: 11px;
    }
}

/* Ultra Small Mobile (320px and below) */
@media (max-width: 320px) {

    /* Top Contact Bar */
    .top-contact-bar {
        padding: 5px 0;
        font-size: 6px;
    }

    .top-contact-bar .container {
        padding: 0 5px;
    }

    .contact-info a {
        font-size: 6px;
        max-width: 75%;
        display: block;
        text-align: center;
    }

    .contact-info i {
        font-size: 6px;
    }

    .social-links a {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 10px;
    }

    /* Logo */
    .logo-center img {
        height: 62px;
        width: 62px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 190px;
    }

    .hero-slider-container {
        padding: 0 25px;
    }

    .slider-arrow {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .hero-slide {
        gap: 6px;
        padding: 3px;
    }

    .hero-slide-box {
        height: 130px;
        border-radius: 6px;
    }

    .hero-slide-box img {
        border-radius: 5px;
    }

    /* About Section */
    .about-catalogue-section>div:first-child {
        padding: 14px 8px !important;
        margin-bottom: 20px !important;
    }

    .about-catalogue-section>div:first-child>div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        align-items: center !important;
    }

    .about-catalogue-section>div:first-child>div>div p {
        font-size: 9px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .about-catalogue-section>div:first-child>div>div p br {
        display: none;
    }

    .about-catalogue-section>div:first-child>div>div strong {
        font-size: 11px !important;
        display: block;
        margin-bottom: 3px;
    }

    .about-catalogue-section img[alt*="Badge"] {
        width: 65px !important;
    }

    .about-catalogue-section .btn-custom {
        font-size: 6px !important;
        padding: 7px 16px !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
}

/* ================================
   FOOTER RESPONSIVE DESIGN
   ================================ */

/* Large Tablets (900px and below) */
@media (max-width: 900px) {
    .main-footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 35px !important;
        text-align: left;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
        text-align: center !important;
    }

    .footer-logo-img {
        height: 100px !important;
        width: 100px !important;
        margin: 0 auto 15px !important;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 15px;
        margin-left: 0 !important;
    }

    .footer-section ul {
        margin-left: 0 !important;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
        gap: 15px !important;
        margin-left: 0 !important;
    }

    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Tablets Portrait (768px and below) */
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .footer-logo-section {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(13, 13, 13, 0.1);
    }

    .footer-logo-img {
        height: 90px !important;
        width: 90px !important;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: center;
        margin-left: 0 !important;
    }

    .footer-section ul {
        display: inline-block !important;
        text-align: center !important;
        margin-left: 0 !important;
    }

    .footer-section ul li {
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-section ul li a {
        display: inline-block;
    }

    .footer-section p {
        text-align: center !important;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-social {
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
        margin: 15px auto 0 !important;
    }

    .footer-social .social-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
        margin-right: 0 !important;
    }
}

/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
    .main-footer {
        padding: 40px 0 15px;
    }

    .container {
        padding: 0 15px !important;
    }

    .footer-content {
        gap: 25px !important;
    }

    .footer-logo-section {
        padding-bottom: 15px;
    }

    .footer-logo-img {
        height: 80px !important;
        width: 80px !important;
        margin-bottom: 12px !important;
    }

    .footer-logo-section p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 12px;
        letter-spacing: 0.8px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-social .social-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }

    .footer-bottom {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .main-footer {
        padding: 35px 0 12px;
    }

    .container {
        padding: 0 12px !important;
    }

    .footer-content {
        gap: 22px !important;
        margin-bottom: 25px !important;
    }

    .footer-logo-section {
        padding-bottom: 12px;
    }

    .footer-logo-img {
        height: 70px !important;
        width: 70px !important;
        margin-bottom: 10px !important;
    }

    .footer-logo-section p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        padding: 0 10px;
    }

    .footer-section h4 {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .footer-section ul {
        padding: 0 !important;
    }

    .footer-section ul li {
        margin-bottom: 7px;
    }

    .footer-section ul li a {
        font-size: 12px;
    }

    .footer-section p {
        font-size: 11px;
        margin-bottom: 7px;
        padding: 0 5px;
    }

    .footer-section p i {
        font-size: 12px;
        margin-right: 6px !important;
    }

    .footer-social {
        gap: 10px !important;
        margin-top: 12px !important;
    }

    .footer-social .social-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 15px !important;
    }

    .footer-bottom {
        padding-top: 12px;
        padding-bottom: 12px;
        border-top: 1px solid rgba(13, 13, 13, 0.08);
    }

    .footer-bottom p {
        font-size: 10px;
        line-height: 1.5;
        padding: 0 5px;
    }
}

@media (max-width: 1024px) {
    .hero-slider-wrapper {
        padding: 0 60px;
    }

    .hero-slider-container {
        height: 450px;
    }

    .hero-slide {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0;
        /* Reduced top/bottom padding */
    }

    .hero-slider-wrapper {
        padding: 0 10px;
        /* Reduced side padding */
    }

    .hero-slider-container {
        height: auto;
        /* Allow auto height */
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-card {
        padding: 0;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        padding: 0 10px;
        /* Reduced side padding further */
    }

    .hero-slider-container {
        height: auto;
    }

    .hero-card {
        padding: 0;
        border-radius: 20px;
    }

    .hero-card-inner {
        border-radius: 0;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .main-footer {
        padding: 30px 0 10px;
    }

    .footer-logo-img {
        height: 60px !important;
        width: 60px !important;
    }

    .footer-logo-section p {
        font-size: 11px !important;
    }

    .footer-section h4 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 11px;
    }

    .footer-section p {
        font-size: 10px;
    }

    .footer-social .social-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    .footer-bottom p {
        font-size: 9px;
    }
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* ======================================
   GLOBAL MOBILE RESPONSIVE ENHANCEMENTS
   ====================================== */

/* Tablet and Desktop - 1024px and below */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* Navigation adjustments */
    .main-nav ul {
        gap: 1.5rem;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {

    /* Base typography */
    body {
        font-size: 15px;
    }

    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Section padding */
    section,
    .section-padding {
        padding: 50px 20px !important;
    }

    /* Grid layouts - stack on mobile */
    .grid,
    .content-grid,
    .packages-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Hero sections */
    .hero-section,
    .about-hero,
    .catalogue-hero {
        min-height: 400px !important;
        padding: 50px 20px !important;
    }

    /* Buttons */
    .btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    /* Cards */
    .service-card,
    .package-card,
    .testimonial-card {
        margin-bottom: 25px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Navigation - mobile menu */
    .main-nav {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    /* Header adjustments */
    .top-header {
        padding: 8px 0;
    }

    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {

    /* Typography */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Section padding */
    section,
    .section-padding {
        padding: 40px 15px !important;
    }

    /* Hero sections */
    .hero-section,
    .about-hero,
    .catalogue-hero {
        min-height: 300px !important;
        padding: 40px 15px !important;
    }

    /* Buttons */
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    /* Top header */
    .top-header {
        font-size: 12px;
    }

    /* Social icons */
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra small devices - 360px and below */
@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 10px;
    }

    section,
    .section-padding {
        padding: 30px 10px !important;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {

    .hero-section,
    .about-hero {
        min-height: auto !important;
        padding: 30px 20px !important;
    }
}

/* Print styles */
@media print {

    .no-print,
    header,
    footer,
    .btn,
    .social-icon {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    body {
        background: #fff;
        color: #000;
    }

    .btn {
        border: 2px solid #000;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase tap targets for touch */
    .btn,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }

    /* Remove hover effects on touch devices */
    .service-card:hover,
    .package-card:hover {
        transform: none;
    }
}

/* ================================
   DESKTOP BUTTON FONT SIZE REDUCTION
   Reduces all button font sizes by 1px for desktop view
   ================================ */
@media (min-width: 992px) {

    /* Base button font size reduction */
    .btn {
        font-size: 0.9375rem;
        /* 15px (reduced from 16px/1rem) */
    }

    /* Button icon font size reduction */
    .btn .icon {
        font-size: 0.9875rem;
        /* Reduced from 1.05rem */
    }

    /* Large button font size reduction */
    .btn-large {
        font-size: 1.0375rem;
        /* Reduced from 1.1rem */
    }

    /* Enquiry option buttons */
    .enquiry-option {
        font-size: 14px;
        /* Reduced from 15px */
    }

    /* Map link buttons */
    .btn-map-link {
        font-size: 15px;
        /* Reduced from 16px */
    }

    /* Form submit button */
    .form-submit .btn-secondary {
        font-size: 15px;
        /* Reduced from 16px */
    }

    /* Final CTA section buttons */
    .final-cta-section .cta-buttons .btn {
        font-size: 0.9875rem;
        /* Reduced from 1.05rem */
    }

    /* Secondary button */
    .btn-secondary {
        font-size: 0.9375rem;
        /* 15px (reduced from 16px) */
    }

    /* Package card buttons */
    .package-card .btn,
    .package-card .btn-primary,
    .package-card .btn-secondary {
        font-size: 0.9375rem;
        /* 15px */
    }

    /* Hero section buttons */
    .hero-buttons .btn {
        font-size: 0.9375rem;
        /* 15px */
    }

    /* CTA section buttons */
    .cta-buttons .btn {
        font-size: 0.9375rem;
        /* 15px */
    }

    /* Academy/Milestone/Newborn CTA buttons */
    .milestone-cta .btn-primary,
    .cake-smash-cta .btn-primary,
    .academy-cta .btn-primary {
        font-size: 0.9375rem;
        /* 15px */
    }

    /* Navigation links that act as buttons */
    .catalogue-card .btn {
        font-size: 0.9375rem;
        /* 15px */
    }

    /* Service card explore links */
    .service-link {
        font-size: 0.9375rem;
        /* 15px */
    }
}