/* Modern Clean & Impactful Styles - Stable Minds Brand Colors */
:root {
    /* Brand Colors */
    --primary-color: #05315e; /* Prussian Blue */
    --accent-color: #09a6ab;  /* Viridian Green */
    --accent-hover: #09758e;  /* Teal Blue */
    --dark-bg: #05315e;       /* Prussian Blue */
    --yellow-accent: #ffec00; /* Middle Yellow */
    
    --text-color: #353535;    /* Jet */
    --text-light: #6d6d6d;    /* Dim Grey */
    
    --light-bg: #f7f7f7;      /* Davys Grey (Light) */
    --white: #ffffff;
    
    --transition-speed: 0.4s;
    --header-height: 100px;
    
    /* Spacing - Tighter & More Dynamic */
    --section-padding: 5rem; 
}

/* Typography */
@font-face {
    font-family: 'Bebas Neue';
    src: url('Artwork/Fonts/Bebas Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yorris Note';
    src: url('Artwork/Fonts/Yorris Note/YorrisNote-Handwriting.woff2') format('woff2'),
         url('Artwork/Fonts/Yorris Note/YorrisNote-Handwriting.woff') format('woff'),
         url('Artwork/Fonts/Yorris Note/YorrisNote-Handwriting.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400; /* Bebas is bold by default */
    line-height: 1.1;
    margin-top: 0;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

h1 { font-size: 4.5rem; letter-spacing: 0.05em; }
h2 { font-size: 3.5rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
h3 { font-size: 2rem; margin-bottom: 0.5rem; }

.container {
    width: 88%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 
   ---------------------------
   SCROLL ANIMATIONS (The "Wow" Factor)
   ---------------------------
*/
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* 
   ---------------------------
   HEADER 
   ---------------------------
*/
.site-header {
    background: rgba(255, 255, 255, 0.9);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(14, 77, 100, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    height: 70px; /* Shrink on scroll */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.logo img {
    max-height: 90px;
    width: auto;
    display: block;
    transform: scale(1.6);
    transform-origin: top left;
    margin-top: -58px; /* Moved up by another ~5mm (approx 19px) to roughly -58px */
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.site-header.scrolled .logo img {
    transform: scale(1);
    margin-top: 0;
    margin-left: 0;
}

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

.main-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn { display: none; }
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.header-cart-wrap {
    display: flex;
    align-items: center;
    min-height: 44px;
}
.header-cart-wrap .ec-cart-widget {
    display: block;
}
.header-account-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-decoration: none;
}
.header-account-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 
   ---------------------------
   HERO & SECTIONS with WAVES
   ---------------------------
*/
/* Wave Divider SVG Data URI */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: #ffffff;
}

.wave-bottom.alt .shape-fill {
    fill: var(--light-bg);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-bottom: 4rem;
    overflow: hidden; /* Ensure video doesn't spill out */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%; /* Increased height to force crop of bottom text */
    z-index: 0;
    object-fit: cover;
    object-position: center top; /* Align to top, crop bottom */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 49, 94, 0.85) 0%, rgba(5, 49, 94, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2; /* Sit on top of video and overlay */
}

.hero h1 {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Handwritten Accent Style */
.handwritten-accent {
    font-family: 'Yorris Note', cursive;
    color: var(--yellow-accent);
    font-size: 1.8rem;
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Internal Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(14, 77, 100, 0.95) 0%, rgba(21, 102, 131, 0.85) 100%), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--accent-color);
    color: #05202b; /* Dark text on mint for readability */
}

.btn-primary:hover {
    background: var(--yellow-accent);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 236, 0, 0.4);
}

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

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

.btn-yellow {
    background: var(--primary-color);
    color: var(--white);
}

.btn-yellow:hover {
    background: var(--yellow-accent);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 236, 0, 0.4);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
}

.btn-light:hover {
    background: var(--yellow-accent);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 236, 0, 0.4);
}

/* Sections */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-about {
    background: var(--white);
}

.section-services {
    background: var(--light-bg);
}

.section-intro p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

/* 
   ---------------------------
   CARDS & GRIDS 
   ---------------------------
*/
.values-grid, .services-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1200px) {
    .values-grid, .services-grid, .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid, .services-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

.value-card, .service-item, .team-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(14, 77, 100, 0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-item {
    background: var(--light-bg); /* Unless it's on a light background, then white */
}
/* Fix for service items on light background */
.section-services .service-item,
.section-about .service-item {
    background: var(--white);
}

/* Team Card Updates */
.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.team-role {
    color: var(--accent-hover);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.value-card::before, .service-item::before, .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transition: height 0.3s ease;
    z-index: -1;
}

.value-card:hover, .service-item:hover, .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 77, 100, 0.08);
}

.value-card:hover::before, .service-item:hover::before, .team-card:hover::before {
    height: 100%; 
    opacity: 0.05;
}

.value-card h3, .service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

/* Split Layout */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.split-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

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

/* Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Booking Form Styles */
.booking-form-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-button-container {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
    background: rgba(14, 77, 100, 0.06);
    border-radius: 12px;
}
.booking-form-cta-intro {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}
.booking-form-cta-sub {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(14, 77, 100, 0.3);
}

.booking-form-button:hover {
    background: var(--yellow-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 236, 0, 0.4);
}

.booking-form-wrapper {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-form-wrapper.active {
    display: block;
}

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

.booking-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.booking-form-container .form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-form label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.booking-form .form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.booking-form .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 77, 100, 0.1);
}

.booking-form select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23155064' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    appearance: none;
    cursor: pointer;
}

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

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

.booking-form .checkbox-group,
.booking-form .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.booking-form .checkbox-item,
.booking-form .radio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.booking-form input[type="checkbox"],
.booking-form input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.booking-form .checkbox-label,
.booking-form .radio-label {
    font-weight: 400;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1.5;
}

.booking-form .form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.booking-form .gdpr-notice {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-form .gdpr-notice a {
    color: var(--accent-color);
    text-decoration: underline;
}

.booking-form .form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.booking-form .form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-form .form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 2rem 1.5rem;
    }
    
    .booking-form .form-row,
    .booking-form .form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(14, 77, 100, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 77, 100, 0.1);
}

.award-logo {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.award-year {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.award-card.finalist .award-year {
    background: var(--primary-color);
}

.award-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.award-org {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.award-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    text-align: center;
    padding: 7rem 0;
    position: relative;
}

.section-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: #E6F4F1;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: #b8c6cc;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

/* Newsletter Styles */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-newsletter p,
.newsletter-thanks {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
.newsletter-thanks.newsletter-error {
    color: #f8d7da;
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.btn-newsletter {
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: #05202b;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--yellow-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 236, 0, 0.3);
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.8rem; }

.footer-col a {
    color: #8daab6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

/* Footer social links */
.footer-social .footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social .footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #8daab6;
    transition: color 0.3s, background 0.3s, transform 0.2s;
}

.footer-social .footer-social-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social .footer-social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #5d7d8a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* 
   ---------------------------
   RESPONSIVE / MOBILE STYLES 
   ---------------------------
*/
@media (max-width: 1200px) {
    .mobile-menu-btn { 
        display: flex; 
        flex-direction: column; 
        width: 30px; 
        height: 22px;
        border:none; 
        background:none; 
        justify-content: space-between;
        cursor:pointer;
        padding: 0;
        z-index: 1002;
    }
    
    .mobile-menu-btn span { 
        width:100%; 
        height:3px; 
        background:var(--primary-color); 
        border-radius:3px;
        transition: all 0.3s;
    }
    
    /* Active Hamburger */
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .header-cta { display: none; }
    
    .main-nav {
        position: fixed; top:0; right:-100%; width:100%; height:100vh;
        background:var(--white); z-index:1001; flex-direction:column;
        justify-content:center; transition:0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        overflow-y: auto;
        padding: 4rem 1rem calc(3rem + env(safe-area-inset-bottom, 0));
        box-sizing: border-box;
    }
    .main-nav.active { right:0; }
    .main-nav ul { flex-direction:column; text-align:center; gap:2rem; }
    .main-nav a { font-size: 1.5rem; }
    
    .split-section, .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .split-image { order: -1; max-height: 400px; margin-bottom: 2rem; }
    
    /* Adjust Adults Room2 image to show more sofa, less ceiling on mobile */
    .adults-room-image {
        object-position: center 75%;
    }
    
    .hero h1 { font-size: 2.5rem; }
    section { padding: 4rem 0; }
    
    .form-group label { text-align: left; }
    .contact-info-container { text-align: center; }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
    }
}

/* 
   ---------------------------
   COOKIE CONSENT 
   ---------------------------
*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-top: 4px solid var(--accent-color);
    box-sizing: border-box;
}

.cookie-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-primary, .btn-cookie-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
}

.btn-cookie-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-cookie-primary:hover {
    background: var(--primary-color);
}

.btn-cookie-secondary {
    background: #e1e1e1;
    color: var(--text-color);
}

.btn-cookie-secondary:hover {
    background: #d1d1d1;
}

/* Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    z-index: 10001;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 { margin: 0; }

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 1rem;
}

.cookie-option:last-child { border: none; margin-bottom: 0; }

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-header label {
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.cookie-modal-footer {
    padding: 1.5rem;
    background: #f9f9f9;
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Book A Session – Children/Adults choice modal */
.book-session-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 49, 94, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.book-session-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.book-session-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.book-session-modal-overlay.active .book-session-modal {
    transform: scale(1);
}

.book-session-modal h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.book-session-modal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.book-session-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-session-modal-buttons a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.book-session-modal-buttons a.btn-children {
    background: var(--accent-color);
    color: var(--white);
}

.book-session-modal-buttons a.btn-children:hover,
.book-session-modal-buttons a.btn-adults:hover {
    background: var(--yellow-accent);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 236, 0, 0.4);
}

.book-session-modal-buttons a.btn-adults {
    background: var(--primary-color);
    color: var(--white);
}

.book-session-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
}

.book-session-modal-close:hover {
    color: var(--primary-color);
}

.book-session-modal {
    position: relative;
}
