﻿/* ========================================
   Meaningful Memories Travel - Main Styles
   Inspired by Travel by Darcy
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #1F2A44;
    --primary-dark: #18263C;
    --primary-light: #2F8F9D;
    --accent-color: #2F8F9D;
    --accent-light: #59AAB6;
    --text-dark: #2c3e50;
    --text-medium: #566573;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-cream: #fdfbf7;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 16px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.nav-logo img {
    height: 90px;
    width: auto;
}

body.home-hero-brand-enabled .navbar .nav-logo {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

body.home-hero-brand-enabled .navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}

body.home-hero-brand-enabled.home-brand-docked .navbar .nav-logo {
    opacity: 1;
    transform: scale(1);
}

body.home-hero-brand-enabled.home-brand-docked .navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(31, 42, 68, 0.1);
}

.hero-brand-logo {
    position: fixed;
    left: 132px;
    top: 212px;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1105;
    pointer-events: none;
    opacity: 1;
    will-change: left, top, transform, opacity;
}

.hero-brand-logo img {
    height: clamp(150px, 19vw, 270px);
    width: auto;
    filter: drop-shadow(0 9px 22px rgba(31, 42, 68, 0.22));
}

body.home-brand-docked .hero-brand-logo {
    opacity: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Nav CTA Button */
.nav-menu a.nav-cta {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-menu a.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.nav-menu a.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Value Propositions */
.value-props {
    padding: 80px 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    font-size: 15px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--background-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(26, 82, 118, 0.95) 0%,
        rgba(26, 82, 118, 0.7) 50%,
        transparent 100%
    );
    color: var(--white);
    transition: var(--transition);
}

.service-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.read-more {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .read-more {
    opacity: 1;
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(201, 162, 39, 0.95) 0%,
        rgba(201, 162, 39, 0.7) 50%,
        transparent 100%
    );
}

/* Meet Section */
.meet-section {
    padding: 100px 0;
    background: var(--white);
}

.meet-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.meet-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.meet-content h2 {
    margin-bottom: 24px;
    position: relative;
}

.meet-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 16px;
}

.meet-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.meet-content .btn {
    margin-top: 16px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-title::after {
    background: var(--accent-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   Google Reviews Section
   ======================================== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F2A44 0%, #18263C 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.reviews-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.reviews-stats {
    text-align: center;
}

.review-number {
    font-size: 120px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.review-stars span {
    font-size: 36px;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: starPulse 2s ease-in-out infinite;
}

.review-stars span:nth-child(2) { animation-delay: 0.1s; }
.review-stars span:nth-child(3) { animation-delay: 0.2s; }
.review-stars span:nth-child(4) { animation-delay: 0.3s; }
.review-stars span:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.review-label {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.reviews-content {
    max-width: 400px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.google-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.reviews-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
}

.reviews-tagline {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.6;
}

.reviews-section .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 14px 32px;
}

.reviews-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-showcase {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .review-number {
        font-size: 80px;
    }
    
    .review-stars span {
        font-size: 28px;
    }
    
    .review-label {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .reviews-content h2 {
        font-size: 26px;
    }
    
    .reviews-tagline {
        font-size: 16px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--background-cream);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.cert-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cert-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cert-logos img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--accent-light);
}

/* ========================================
   About Page Styles
   ======================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 80px 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-item {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* About page certifications */
.about-certifications .mexperts-logo {
    height: 110px !important;
}

@media (max-width: 768px) {
    .about-certifications {
        padding: 60px 0 !important;
    }
    
    .about-certifications > .container > div {
        gap: 24px !important;
    }
    
    .about-certifications img {
        height: 60px !important;
    }
    
    .about-certifications .mexperts-logo {
        height: 90px !important;
    }
}

/* ========================================
   Services Page Styles
   ======================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--background-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.service-detail h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-detail ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.service-detail li {
    color: var(--text-medium);
    margin-bottom: 8px;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h3 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 4px;
    color: var(--primary-color);
}

.contact-details p,
.contact-details a {
    color: var(--text-medium);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 96px;
    }

    .nav-logo img {
        height: 78px;
    }

    .nav-menu {
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 9999;
    }

    .hero-brand-logo {
        left: 106px;
        top: 188px;
    }

    .hero-brand-logo img {
        height: clamp(112px, 31vw, 178px);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 10000;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meet-grid {
        grid-template-columns: 1fr;
    }
    
    .meet-image {
        order: -1;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact form mobile spacing */
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form h3 {
        margin-bottom: 16px;
    }
    
    /* Footer landing pad for floating CTA */
    .footer::after {
        content: '';
        display: block;
        height: 80px;
        background: #fff;
        margin-top: 0;
    }
    
    .footer-bottom {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Floating CTA Button
   ======================================== */

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.floating-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.floating-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .floating-cta {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
    
    .floating-cta a {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 14px;
    }
}

/* ========================================
   FAQ Page Styles
   ======================================== */
.faq-section {
    padding: 80px 0;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
}

.faq-intro a {
    color: var(--primary-color);
    font-weight: 500;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.faq-answer li {
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--accent-color);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Calendly Widget Styles */
.calendly-section {
    padding: 48px 0;
    background: var(--background-light);
    border-radius: 8px;
    margin-top: 48px;
}

.calendly-section h3 {
    text-align: center;
    margin-bottom: 8px;
}

.calendly-section p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 630px;
}

/* ========================================
   Booking Wizard Styles
   ======================================== */

.booking-wizard-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--white) 100%);
}

.booking-wizard {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
}

/* Progress Bar */
.wizard-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.progress-step.completed .step-number {
    background: var(--accent-color);
    color: white;
}

.progress-step.completed .step-number::before {
    content: '✓';
}

.progress-step span {
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 36px;
}

.step-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-header p {
    color: var(--text-medium);
    font-size: 16px;
}

/* Choice Cards Grid */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.choice-card {
    cursor: pointer;
    position: relative;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.choice-card:hover .choice-content {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.choice-card.selected .choice-content,
.choice-card input:checked + .choice-content {
    border-color: var(--primary-color);
    background: rgba(26, 82, 118, 0.08);
}

.choice-icon {
    font-size: 32px;
}

.choice-content span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.choice-card.small .choice-content {
    padding: 16px 12px;
    flex-direction: row;
    gap: 8px;
}

.choice-card.small .choice-content span {
    font-size: 13px;
}

/* Occasion/Activity Chips */
.step-question {
    margin-top: 36px;
}

.step-question h3 {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
}

.occasion-chips,
.activity-chips,
.contact-preference,
.timeline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.chip {
    cursor: pointer;
    position: relative;
}

.chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chip span {
    display: inline-block;
    padding: 10px 20px;
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.chip:hover span {
    border-color: var(--primary-light);
}

.chip.selected span,
.chip input:checked + span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Conditional Sections */
.conditional-section {
    display: contents;
}

.conditional-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.conditional-section .form-group.full-width {
    grid-column: 1 / -1;
}

.conditional-section .activity-chips {
    margin-top: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

/* ========================================
   Legal Pages Styles
   ======================================== */

.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text .last-updated {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.legal-text h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 15px 0 25px 25px;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--accent-color);
}

/* ========================================
   Cookie Banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--accent-light);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.1);
}

/* ========================================
   Accessibility Widget
   ======================================== */

.accessibility-widget {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 9998;
}

.accessibility-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.accessibility-toggle:hover,
.accessibility-toggle:active {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.accessibility-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.accessibility-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 15px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.accessibility-menu.open {
    display: flex;
}

.accessibility-menu h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.accessibility-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--background-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.accessibility-option:hover,
.accessibility-option:active {
    background: #e8f4f8;
}

.accessibility-option.active {
    background: var(--primary-color);
    color: var(--white);
}

.accessibility-option span {
    font-weight: 500;
}

/* Accessibility Mode Styles */
body.high-contrast {
    --primary-color: #000;
    --text-dark: #000;
    --text-light: #000;
    background: #fff !important;
}

body.high-contrast * {
    border-color: #000 !important;
}

body.high-contrast .navbar,
body.high-contrast .footer,
body.high-contrast .hero,
body.high-contrast .page-hero,
body.high-contrast .cta-section {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast .navbar a,
body.high-contrast .footer a,
body.high-contrast .hero *,
body.high-contrast .page-hero *,
body.high-contrast .cta-section * {
    color: #fff !important;
}

body.high-contrast .btn,
body.high-contrast button {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

body.high-contrast .btn:hover,
body.high-contrast button:hover {
    background: #fff !important;
    color: #000 !important;
}

body.high-contrast .service-card,
body.high-contrast .value-card,
body.high-contrast .faq-item,
body.high-contrast .process-step {
    background: #fff !important;
    border: 2px solid #000 !important;
}

body.high-contrast a {
    color: #000 !important;
    text-decoration: underline !important;
}

body.grayscale {
    filter: grayscale(100%);
}

body.large-text {
    font-size: 20px;
}

body.large-text h1 { font-size: 3rem; }
body.large-text h2 { font-size: 2.5rem; }
body.large-text h3 { font-size: 2rem; }

body.highlight-links a {
    outline: 3px solid var(--accent-color) !important;
    outline-offset: 2px;
}

body.readable-font,
body.readable-font * {
    font-family: Arial, sans-serif !important;
}

/* Mobile adjustments for accessibility & cookie */
@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .accessibility-widget {
        left: 10px;
        bottom: 80px;
    }
    
    .accessibility-toggle {
        width: 44px;
        height: 44px;
    }
    
    .accessibility-menu {
        min-width: 200px;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Preference Sections */
.preference-section {
    margin-bottom: 36px;
}

.preference-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.style-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.style-card {
    cursor: pointer;
    position: relative;
}

.style-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.style-content {
    padding: 24px;
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.style-card:hover .style-content {
    border-color: var(--primary-light);
}

.style-card.selected .style-content,
.style-card input:checked + .style-content {
    border-color: var(--primary-color);
    background: rgba(26, 82, 118, 0.08);
}

.style-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.style-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.style-content p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
}

.accommodation-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.wizard-nav .btn {
    min-width: 140px;
}

#prevBtn {
    margin-right: auto;
}

#nextBtn,
#submitBtn {
    margin-left: auto;
}

/* Form Disclaimer */
.form-disclaimer {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    padding: 20px 24px;
    border-radius: 12px;
    margin-top: 24px;
    text-align: center;
}

.form-disclaimer p {
    margin: 0;
    color: var(--text-dark);
    font-size: 15px;
}

/* Success Step */
.success-step.active {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.success-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.success-content p {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Booking Wizard */
@media (max-width: 768px) {
    .booking-wizard {
        padding: 24px;
        margin: 0 16px;
    }
    
    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .style-cards {
        grid-template-columns: 1fr;
    }
    
    .accommodation-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .accommodation-options .choice-card {
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-step span {
        display: none;
    }
    
    .step-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .choice-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .choice-grid .choice-card {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .choice-content {
        padding: 16px 10px;
        gap: 6px;
        height: 100%;
        min-height: 90px;
        justify-content: center;
    }
    
    .choice-icon {
        font-size: 24px;
    }
    
    .choice-content span {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .occasion-chips,
    .activity-chips,
    .contact-preference,
    .timeline-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .occasion-chips .chip,
    .activity-chips .chip,
    .contact-preference .chip,
    .timeline-options .chip {
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
    }
    
    .chip span {
        display: block;
        text-align: center;
        padding: 12px 10px;
        font-size: 13px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .accommodation-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .accommodation-options .choice-card {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .accommodation-options .choice-content {
        min-height: 70px;
        justify-content: center;
        height: 100%;
    }
    
    .wizard-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .wizard-nav .btn {
        width: 100%;
    }
    
    #prevBtn {
        order: 2;
    }
    
    .step-question {
        margin-top: 24px;
    }
    
    .step-question h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}


