/* 
   Project: Chiara Smaldone - Ultimate Premium Experience
   Value: 20k€ | Award-Winning Design Level
   Features: Video Hero, Parallax, Advanced Animations, Gallery, Rich Typography
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Turquoise Mediterranean Palette - Inspired by Chiara's Sea */
    --deep-ocean: #0B3D59;
    --ocean-mid: #0E5175;
    --ocean-light: #1A6B8F;
    --teal-glow: #00B4D8;
    --teal-soft: #48CAE4;
    --gold-accent: #FFD166;
    --sand-warm: #F4F1DE;

    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    /* Premium Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;

    /* Sizing */
    --container-max: 1400px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--deep-ocean);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Excellence */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--teal-glow);
}

p {
    color: var(--white-70);
    font-weight: 300;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease-out-expo);
}

img,
video {
    display: block;
    max-width: 100%;
}

/* Utility Classes */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    padding: 0 var(--space-sm);
}

.overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-glow);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 60px;
    line-height: 1.5;
}

.overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--teal-glow);
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-glow), var(--teal-soft), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--teal-glow);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-glow), var(--teal-soft));
    color: var(--deep-ocean);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 212, 170, 0.4);
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white-20);
}

.btn-ghost:hover {
    background: var(--white-10);
    border-color: var(--white-50);
}

/* Glass Morphism Cards */
.glass {
    background: var(--white-05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
}

.glass-card {
    padding: var(--space-md);
    transition: all 0.5s var(--ease-out-expo);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--white-10);
    border-color: var(--teal-glow);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-wrapper.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    color: var(--teal-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-70);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-glow);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px !important;
    font-size: 0.8rem !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section - Video Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-wrapper video,
.hero-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(10, 22, 40, 0.7) 50%,
            rgba(10, 22, 40, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content .overline {
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-content h1 {
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
    margin-bottom: var(--space-md);
}

.hero-content p {
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg) auto;
}

.hero-buttons {
    animation: fadeInUp 1s var(--ease-out-expo) 0.8s both;
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 1s var(--ease-out-expo) 1.2s both;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-50);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white-30);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--teal-glow);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* Stats Bar */
.stats-bar {
    background: var(--ocean-mid);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    padding: var(--space-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--teal-glow);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-50);
}

/* About / Philosophy Split Section */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, var(--deep-ocean), transparent);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    background: var(--deep-ocean);
}

.about-content p {
    margin-bottom: var(--space-md);
    font-size: 1.15rem;
}

.signature {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gold-accent);
    margin-top: var(--space-md);
}

/* Credentials Badges */
.credentials-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--teal-glow), var(--teal-soft));
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-ocean);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    transition: transform 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-3px);
}

/* Journey / Process Section */
.journey-section {
    background: linear-gradient(180deg, var(--deep-ocean) 0%, var(--ocean-mid) 100%);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.journey-step {
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

.journey-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--teal-glow), transparent);
}

.journey-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-glow), var(--teal-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--deep-ocean);
    font-weight: 600;
}

.journey-step h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

/* Services Grid */
.services-section {
    background: var(--ocean-mid);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.service-card {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--teal-glow), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.service-features {
    list-style: none;
    margin: var(--space-md) 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--white-10);
    color: var(--white-70);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: var(--teal-glow);
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: var(--space-md);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
}

.price-period {
    color: var(--white-50);
    font-size: 0.9rem;
}

/* Media / As Seen On Section */
.media-section {
    background: var(--deep-ocean);
}

.media-section .section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* New Feature Layout */
.media-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white-05);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--white-10);
}

.media-feature-images {
    position: relative;
    height: 400px;
}

.media-img-main {
    position: absolute;
    width: 75%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 2;
    top: 0;
    left: 0;
}

.media-img-secondary {
    position: absolute;
    width: 55%;
    height: 65%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    bottom: 0;
    right: 0;
    border: 3px solid var(--deep-ocean);
}

/* Video Wrapper */
.media-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.media-video-wrapper video {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

.play-icon {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.media-video-wrapper video:not([paused])~.video-play-overlay,
.media-video-wrapper:has(video[controls]:focus) .video-play-overlay {
    opacity: 0;
}

/* Experience Review Box with Image */
.experience-review-wrapper {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    align-items: flex-start;
}

.review-image {
    flex: 0 0 auto;
    max-width: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--white-20);
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
}

.review-content {
    flex: 0 0 auto;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(59, 89, 152, 0.3);
    border: 1px solid rgba(59, 89, 152, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--white);
}

.fb-icon {
    font-size: 1.5rem;
}

.review-stars {
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.media-feature-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.media-feature-content p {
    margin-bottom: var(--space-sm);
    font-size: 1.05rem;
}

.media-badge-large {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #E31B1B, #B71515);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 20px rgba(227, 27, 27, 0.4);
    margin-bottom: var(--space-md);
}

.media-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.media-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-70);
    font-size: 0.9rem;
}

.stat-icon {
    font-size: 1.2rem;
}

/* Legacy Media Grid (keep for backwards compatibility) */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.media-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.media-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.media-card:hover .media-image img {
    transform: scale(1.1);
}

.media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #E31B1B, #B71515);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(227, 27, 27, 0.5);
}

.media-content {
    padding: var(--space-md);
}

.media-content h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.media-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* Experience / Un Tuffo nella Storia Section */
.experience-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 61, 89, 0.9) 0%,
            rgba(11, 61, 89, 0.6) 50%,
            rgba(11, 61, 89, 0.8) 100%);
    z-index: 1;
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.experience-lead {
    font-size: 1.3rem !important;
    color: var(--white-90) !important;
    font-weight: 400;
    font-style: italic;
}

.experience-content p {
    margin-bottom: var(--space-sm);
}

.experience-content .btn {
    margin-top: var(--space-md);
}

/* Community Section */
.community-section {
    background: linear-gradient(180deg, var(--deep-ocean) 0%, var(--ocean-mid) 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.community-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-content h2 {
    margin-bottom: var(--space-md);
}

.community-content p {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.community-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.community-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.community-stat .stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--teal-glow);
    line-height: 1;
}

.community-stat .stat-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-50);
}

/* Gallery Section */
.gallery-section {
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: var(--space-md);
    animation: infiniteScroll 30s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, var(--ocean-mid) 0%, var(--deep-ocean) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    padding: var(--space-lg);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white-90);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--teal-glow);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--teal-glow);
}

/* FAQ Accordion */
.faq-section {
    background: var(--deep-ocean);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.faq-content {
    max-width: 500px;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.accordion-item {
    background: var(--white-05);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--white-10);
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: var(--teal-glow);
}

.accordion-header {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: var(--teal-glow);
    color: var(--deep-ocean);
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.accordion-body-inner {
    padding: 0 var(--space-md) var(--space-md);
}

.accordion-item.active .accordion-body {
    max-height: 300px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-methods {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-details h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.method-details p {
    color: var(--white-50);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    background: var(--white-05);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--white-10);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-70);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal-glow);
    background: var(--white-10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* Footer */
.footer {
    background: #050a10;
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--white-10);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--white-50);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--teal-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-50);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--teal-glow);
    color: var(--deep-ocean);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease-out-expo);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ================== */
/* RESPONSIVE - MOBILE FIRST OPTIMIZATION */
/* Designed for 90% mobile traffic */
/* ================== */

/* Tablet */
@media (max-width: 1024px) {

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        height: 50vh;
    }

    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-step::after {
        display: none;
    }

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

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

    .media-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

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

    .community-image {
        height: 400px;
    }
}

/* Mobile - Main Breakpoint */
@media (max-width: 768px) {

    /* Base adjustments */
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
    }

    body {
        font-size: 15px;
    }

    /* Typography mobile optimization */
    h1 {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
        line-height: 1.2;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    /* Container mobile spacing */
    .container {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .section-header {
        margin-bottom: var(--space-md);
        padding: 0 var(--space-xs);
    }

    /* Overline mobile */
    .overline {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding-left: 40px;
    }

    .overline::before {
        width: 25px;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(11, 61, 89, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-lg);
        transition: right 0.5s var(--ease-out-expo);
        gap: var(--space-md);
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: var(--space-sm) 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
        /* Use svh for better mobile viewport */
    }

    .hero-content {
        padding: 0 var(--space-xs);
        text-align: center;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 0 auto var(--space-md) auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-scroll {
        bottom: 15px;
    }

    /* Stats Bar Mobile */
    .stats-bar {
        padding: var(--space-md) 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .stat-item {
        padding: var(--space-sm) var(--space-xs);
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    /* About Section Mobile */
    .about-image {
        height: 45vh;
        min-height: 280px;
    }

    .about-image img {
        object-position: center 20%;
        /* Better face cropping on mobile */
    }

    .about-image::after {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, var(--deep-ocean), transparent);
    }

    .about-content {
        padding: var(--space-md);
    }

    .about-content p {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .signature {
        font-size: 1.8rem;
        margin-top: var(--space-sm);
    }

    /* Credentials Badges Mobile - 2x2 Grid */
    .credentials-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: var(--space-sm);
    }

    .credential-badge {
        padding: 10px 12px;
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
    }

    /* Media Section Mobile */
    .media-section .section-header p {
        font-size: 0.95rem;
    }

    .media-feature {
        grid-template-columns: 1fr;
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .media-feature-images {
        height: 280px;
        order: -1;
    }

    .media-img-main {
        width: 70%;
        height: 80%;
    }

    .media-img-secondary {
        width: 50%;
        height: 55%;
    }

    .media-feature-content h3 {
        font-size: 1.5rem;
    }

    .media-feature-content p {
        font-size: 0.95rem;
    }

    .media-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .media-grid {
        gap: var(--space-md);
    }

    .media-image {
        height: 200px;
    }

    .media-content {
        padding: var(--space-sm);
    }

    .media-content h3 {
        font-size: 1.2rem;
    }

    /* Experience Section Mobile */
    .experience-section {
        min-height: 70vh;
        padding: var(--space-lg) 0;
    }

    .experience-content {
        padding: 0 var(--space-sm);
    }

    .experience-content h2 {
        font-size: 2.2rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .experience-lead {
        font-size: 1.1rem !important;
    }

    .experience-overlay {
        background: linear-gradient(180deg,
                rgba(11, 61, 89, 0.85) 0%,
                rgba(11, 61, 89, 0.75) 50%,
                rgba(11, 61, 89, 0.9) 100%);
    }

    /* Journey Timeline Mobile */
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .journey-step {
        padding: var(--space-sm);
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        text-align: left;
    }

    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
        margin: 0;
    }

    .journey-step h3 {
        margin-bottom: 4px;
        font-size: 1.1rem;
    }

    .journey-step p {
        font-size: 0.9rem;
    }

    /* Services Cards Mobile */
    .services-grid {
        gap: var(--space-sm);
    }

    .service-card {
        padding: var(--space-md);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: var(--space-sm);
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-features {
        margin: var(--space-sm) 0;
    }

    .service-features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .service-card .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Gallery Mobile */
    .gallery-item {
        width: 280px;
        height: 350px;
    }

    /* Community Section Mobile */
    .community-image {
        height: 280px;
        max-height: 40vh;
    }

    .community-content {
        padding: var(--space-sm) 0;
    }

    .community-content p {
        font-size: 1rem;
    }

    .community-stats {
        gap: var(--space-md);
        flex-wrap: wrap;
    }

    .community-stat .stat-num {
        font-size: 2.2rem;
    }

    /* Testimonials Mobile - IMPROVED CONTRAST */
    .testimonials-grid {
        gap: var(--space-sm);
    }

    .testimonial-card {
        padding: var(--space-md);
        background: rgba(255, 255, 255, 0.08);
        /* Slightly more visible */
    }

    .testimonial-quote {
        font-size: 1.15rem;
        margin-bottom: var(--space-sm);
        color: var(--white);
        /* Full white for better contrast */
        line-height: 1.6;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    /* FAQ Mobile */
    .faq-content {
        max-width: 100%;
    }

    .faq-grid {
        gap: var(--space-md);
    }

    .accordion-header {
        padding: var(--space-sm);
        font-size: 1.05rem;
    }

    .accordion-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        min-width: 36px;
    }

    .accordion-body-inner {
        padding: 0 var(--space-sm) var(--space-sm);
    }

    /* Contact Mobile */
    .contact-grid {
        gap: var(--space-md);
    }

    .contact-info h2 {
        margin-bottom: var(--space-sm);
    }

    .contact-methods {
        margin-top: var(--space-md);
    }

    .contact-method {
        gap: var(--space-sm);
    }

    .method-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: var(--space-md);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevent iOS zoom */
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    /* Footer Mobile */
    .footer {
        padding: var(--space-lg) 0 var(--space-sm);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding-bottom: var(--space-md);
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    /* Buttons Mobile - Touch friendly */
    .btn {
        min-height: 48px;
        /* Touch target */
        padding: 14px 28px;
    }
}

/* Small Mobile (iPhone SE, older devices) */
@media (max-width: 375px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .credential-badge {
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: var(--space-sm);
    }

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

    .experience-content h2 {
        font-size: 1.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
    }

    .experience-section {
        min-height: 100vh;
    }
}

/* High DPI / Retina optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .glass,
    .glass-card {
        backdrop-filter: blur(15px);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .gallery-scroll {
        animation: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}