/* ===== PAGE 0027 — OCEAN IMMERSIVE FULLSCREEN ===== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: #1e293b;
    background: #fff;
    overflow-x: hidden;
}

/* Full-viewport section */
.snap-section {
    min-height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .snap-section {
        min-height: auto;
        padding: 60px 0;
    }
}

/* ===== NAVBAR ===== */
.navbar-ocean {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    background: transparent;
}
.navbar-ocean.scrolled {
    background: rgba(8, 51, 68, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    padding: 0.6rem 0;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span { color: #22d3ee; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #22d3ee; }
.nav-cta {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #fff;
    padding: 0.55rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow 0.3s;
}
.nav-cta:hover { box-shadow: 0 0 24px rgba(6,182,212,0.5); }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
@media (max-width: 767px) {
    .nav-links { display: none; }
    .nav-cta.desktop { display: none; }
    .nav-toggle { display: block; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8,51,68,0.98);
        backdrop-filter: blur(12px);
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
}

/* ===== HERO (Full viewport) ===== */
.hero-ocean {
    min-height: 100vh;
    background: linear-gradient(170deg, #06b6d4 0%, #0891b2 25%, #0e7490 50%, #1e40af 85%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}
.hero-ocean::before {
    content: '';
    position: absolute;
    top: -50%; left: -25%;
    width: 150%; height: 150%;
    background: radial-gradient(ellipse at 30% 50%, rgba(34,211,238,0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 40%, rgba(59,130,246,0.15) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #cffafe;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-ocean h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.hero-ocean h1 .accent { color: #67e8f9; }
.hero-ocean .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-ocean {
    padding: 0.85rem 2.2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.938rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-ocean-primary {
    background: #fff;
    color: #0e7490;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-ocean-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.btn-ocean-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.btn-ocean-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.hero-image-wrap {
    margin-top: 2.5rem;
}
.hero-image-wrap img {
    max-width: 400px;
    width: 80%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Wave SVG at bottom of hero */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ===== FEATURES (Alternating rows) ===== */
.feature-row {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}
@media (max-width: 767px) {
    .feature-row { flex-direction: column !important; min-height: auto; padding: 50px 0; }
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-img, .feature-text {
    flex: 1;
    min-width: 0;
}
.feature-img { display: flex; justify-content: center; padding: 2rem; }
.feature-img img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.feature-text { padding: 2rem 3rem; }
.feature-text .num {
    font-size: 4rem;
    font-weight: 900;
    color: #06b6d4;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.feature-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.feature-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.75;
}

/* ===== STATS (Parallax bg + floating overlay) ===== */
.stats-ocean {
    min-height: 100vh;
    background: url('https://picsum.photos/1920/1080?random=28') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}
.stats-ocean::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,182,212,0.88) 0%, rgba(30,64,175,0.9) 100%);
}
.stats-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 1.5rem;
}
.stats-overlay h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 3rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 767px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.stat-card-ocean {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}
.stat-card-ocean:hover { transform: translateY(-6px); }
.stat-card-ocean .num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-card-ocean .label {
    font-size: 0.875rem;
    color: #cffafe;
    font-weight: 500;
}

/* ===== TESTIMONIALS (Full-width carousel) ===== */
.testimonials-ocean {
    min-height: 100vh;
    background: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    overflow: hidden;
}
.testimonial-carousel {
    max-width: 900px;
    width: 100%;
    padding: 0 1.5rem;
    position: relative;
}
.testimonial-carousel h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 3rem;
}
.carousel-track-wrap {
    overflow: hidden;
    border-radius: 20px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
.carousel-slide {
    min-width: 100%;
    padding: 3rem;
    text-align: center;
}
.carousel-slide .quote-icon {
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 1.25rem;
    opacity: 0.4;
}
.carousel-slide blockquote {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 2rem;
    font-style: italic;
}
.carousel-slide .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.carousel-slide .author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #06b6d4;
}
.carousel-slide .author .name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}
.carousel-slide .author .role {
    font-size: 0.8rem;
    color: #64748b;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}
.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: #06b6d4; transform: scale(1.3); }

/* ===== FAQ (Split screen) ===== */
.faq-ocean {
    min-height: 100vh;
    display: flex;
    scroll-snap-align: start;
    background: #fff;
}
@media (max-width: 767px) {
    .faq-ocean { flex-direction: column; min-height: auto; }
}
.faq-left {
    flex: 1;
    background: linear-gradient(180deg, #06b6d4, #1e40af);
    display: flex;
    align-items: center;
    padding: 3rem;
}
.faq-left h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}
.faq-left h2 span { color: #67e8f9; }
.faq-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
}
.faq-list { width: 100%; }
.faq-ocean-item {
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
}
.faq-ocean-q {
    padding: 1.15rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    user-select: none;
    transition: color 0.2s;
}
.faq-ocean-q:hover { color: #06b6d4; }
.faq-ocean-q .indicator {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid #06b6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #06b6d4;
    transition: all 0.35s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-ocean-item.active .faq-ocean-q .indicator {
    background: #06b6d4;
    color: #fff;
    transform: rotate(45deg);
}
.faq-ocean-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
}
.faq-ocean-item.active .faq-ocean-a {
    max-height: 180px;
    padding-bottom: 1rem;
}
.faq-ocean-a p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.7;
}

/* ===== CTA (Full viewport) ===== */
.cta-ocean {
    min-height: 100vh;
    background: linear-gradient(160deg, #06b6d4 0%, #0891b2 30%, #1e40af 80%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}
.cta-ocean::before {
    content: '';
    position: absolute;
    top: 20%; left: 10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-ocean::after {
    content: '';
    position: absolute;
    bottom: 15%; right: 5%;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(103,232,249,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-ocean-inner {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding: 0 1.5rem;
}
.cta-ocean-inner h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.25rem;
}
.cta-ocean-inner p {
    font-size: 1.1rem;
    color: #cffafe;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.cta-ocean-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-ocean-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.25rem;
    border-radius: 9999px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.cta-ocean-form input::placeholder { color: rgba(255,255,255,0.6); }
.cta-ocean-form input:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.2);
}
.cta-ocean-form button {
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    background: #fff;
    color: #0e7490;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}
.cta-ocean-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer-ocean {
    background: #0a1628;
    padding: 1.5rem 0;
    text-align: center;
    scroll-snap-align: start;
}
.footer-ocean p {
    color: #64748b;
    font-size: 0.8rem;
}

/* ===== Reveal animation ===== */
.reveal-ocean {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-ocean.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Parallax (handled by JS) ===== */
.parallax-bg {
    background-attachment: fixed;
}
@media (max-width: 767px) {
    .parallax-bg { background-attachment: scroll; }
}
