/* Yachts Hub Landing Page - Mobile First Responsive Design */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #021429;
    overflow-x: hidden;
}

/* Prevent page rubber-band overscroll and scroll chaining */
html, body {
    overscroll-behavior-y: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-blue: #1E90FF;
    --light-blue: #18E5EB;
    --dark-blue: #021429;
    --navy: #0B2545;
    --white: #FFFFFF;
    --light-gray: #AAB8C2;
    --accent-gray: #8DD8FF;
    --gradient-primary: linear-gradient(230deg, #FFFFFF 0%, #76BBFF 100%);
    --gradient-background: linear-gradient(180deg, rgba(2, 20, 41, 0) 0%, rgba(2, 20, 41, 1) 100%);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-spacing: 3rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 32px;
    
    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-floating: 0 20px 60px rgba(0, 0, 0, 0.4);
    
    /* Z-index */
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-floating: 100;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.45;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background: #0066CC;
    border-color: #0066CC;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--navy);
    font-weight: 500;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.btn-app-download {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    border-radius: var(--border-radius);
}

.btn-app-download:hover {
    background: #0066CC;
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
}

.navbar.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 108px;
}

.nav-brand-card {
    background: rgba(2, 20, 41, 0.05);
    backdrop-filter: blur(11.510791778564453px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18.417266845703125px;
    padding: 18.99280548095703px 13.812949180603027px;
    width: 223px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.nav-brand-content {
    display: flex;
    align-items: center;
    gap: 9.144683837890625px;
    width: 198px;
}

.logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 38.19px;
}

.nav-logo {
    width: 40px;
    height: auto;
}

.nav-divider {
    width: 0;
    height: 36.58px;
    border-left: 0.7034372687339783px solid #879CB3;
}

.welcome-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 99px;
    height: 41.99px;
}

.welcome-greeting {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11.254996299743652px;
    line-height: 1.4500001228634574em;
    letter-spacing: 0.6249999867604032%;
    color: var(--white);
}

.company-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16.88249397277832px;
    line-height: 1.3333333709926316em;
    letter-spacing: 0.41666666960879933%;
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 632.5px;
    justify-content: flex-end;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 16px;
    height: 42px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.450000029343825em;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn-download {
    background: var(--primary-blue);
    color: var(--white);
}

.nav-btn-download:hover {
    background: #0066CC;
    transform: translateY(-2px);
}

.nav-btn-signin {
    background: linear-gradient(230deg, rgba(255, 255, 255, 1) 0%, rgba(118, 187, 255, 1) 100%);
    color: #0B2545;
}

.nav-btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 58px;
    height: 58px;
    position: relative;
    background: rgba(2, 20, 41, 0.1);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(230deg, rgba(255, 255, 255, 1) 0%, rgba(118, 187, 255, 1) 100%);
    border-radius: 16px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.mobile-menu-toggle:hover span {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.mobile-menu-toggle:hover span:nth-child(1) {
    transform: translateY(-1px);
}

.mobile-menu-toggle:hover span:nth-child(3) {
    transform: translateY(1px);
}

.mobile-nav-brand {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.hero.animate-in {
    opacity: 1;
    transform: translateY(0);
}



.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

/* Simple video background */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
}



.hero-gradient-overlay {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-background);
    z-index: -1; /* Ensure it's above the video but below the content */
}

/* Hero Background Ellipses */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -15%;
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 229, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: float 10s ease-in-out infinite reverse;
}



.hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    text-align: center;
    padding: 0 var(--container-padding) 15vh;
    max-width: 1118px;
    width: 100%;
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.hero-content.animate-in {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-content:hover {
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.45;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.45;
    color: var(--white);
    opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 50px 0;
    background: var(--dark-blue);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Desktop/Mobile section visibility defaults */
.desktop-services { display: block; }
.mobile-services { display: none; }

.services.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services:hover {
    transform: translateY(-8px);
    transition: all 0.4s ease-out;
}

.services-container {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 108px;
    position: relative;
}

.services-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.45;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    width: 878px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.2s;
}

.services-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-title:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-out;
}

.services-wrapper {
    position: relative;
    width: 100%;
    height: 485px;
}

.services-cards {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    display: flex;
    gap: 56px;
    height: 403px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.services-cards.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.service-card {
    width: 392px;
    height: 403px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.3s;
}

.service-card:nth-child(3) {
    transition-delay: 0.5s;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-ellipse {
    position: absolute;
    width: 392px;
    height: 214px;
    background: var(--primary-blue);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.7;
    top: 189px;
    left: 0;
    z-index: -1;
}

.service-card:nth-child(2) .service-ellipse {
    top: 0;
    height: 214px;
}

.service-image-container {
    width: 100%;
    height: 261px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.service-card:nth-child(2) .service-image-container {
    border-radius: 24px;
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(1, 24, 50, 0) 60%, rgba(1, 24, 50, 0.8) 90%, rgba(1, 24, 50, 1) 100%);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
}

.service-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 217px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 74px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 153px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 181px;
}

.service-card:nth-child(2) .service-header {
    width: 320px;
}

.service-card:nth-child(2) .service-content {
    width: 334px;
}

.service-card:nth-child(3) .service-content {
    width: 324px;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.45em;
    text-transform: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 299px;
}

.service-card:nth-child(2) .service-title {
    width: 320px;
}

.service-tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45em;
    color: var(--white);
    width: 100%;
}

.service-card:nth-child(2) .service-tagline {
    width: 337px;
}

.service-description {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.45em;
    color: var(--light-gray);
    width: 324px;
}

.service-card:nth-child(2) .service-description {
    width: 324px;
}

.service-card:nth-child(3) .service-description {
    width: 324px;
}



/* Services Navigation */
.services-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0.8;
}

.nav-arrow:hover {
    background: rgba(0, 29, 63, 0.4);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    opacity: 1;
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow-left {
    margin-left: -60px;
}

.nav-arrow-right {
    margin-right: -60px;
}

/* Services Cards Transitions */
.services-cards.fade-out-left {
    opacity: 0;
    transform: translateX(-50px);
}

.services-cards.fade-out-right {
    opacity: 0;
    transform: translateX(50px);
}

.services-set-2 {
    transform: translateX(-50px);
}

.services-set-2.active {
    transform: translateX(0);
}

/* Pagination Dots */
.services-pagination {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 60px;
    height: 8px;
    z-index: 10;
}

.pagination-dot {
    height: 8px;
    border-radius: 999px;
    background: #64748B;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 16px;
}

.pagination-dot.active {
    background: var(--primary-blue);
    width: 40px;
}

.pagination-dot:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 50px 0;
    background: var(--dark-blue);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.features.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    margin-bottom: 4rem;
    position: relative;
    background: rgba(0, 29, 63, 0.5);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    min-height: 500px;
}

.feature-content {
    margin-bottom: 2rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.45;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-description {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-badge {
    height: 40px;
    width: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}

/* You Relax Section - Exact Figma Positioning */
.you-relax-section {
    position: relative;
    width: 1224px;
    height: 440px;
    margin: 0 auto 60px auto;
    background: transparent;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.you-relax-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.you-relax-section:hover {
    transform: translateY(-8px);
}

.relax-bg-image {
    position: absolute;
    top: 0;
    left: 416px;
    width: 808px;
    height: 440px;
    border-radius: 32px;
    overflow: hidden;
}

.relax-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relax-glass-container {
    position: absolute;
    top: 32px;
    left: 0;
    width: 496px;
    height: 376px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    /* border: 0.5px solid rgba(255, 255, 255, 0.15); */
    border-radius: 32px;
    padding: 32px;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* You Relax Section Background Ellipse */
.you-relax-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.relax-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.45em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    width: 292px;
}

.relax-description {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45em;
    color: var(--light-gray);
    margin: 0 0 24px 0;
    width: 384px;
}

.relax-app-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.relax-app-badge {
    height: 40px;
    width: 120px;
    transition: transform 0.3s ease;
}

.relax-app-badge:hover {
    transform: scale(1.05);
}

/* Deck2Dock Section - Exact Figma Positioning */
.deck2dock-section {
    position: relative;
    width: 1224px;
    height: 501px;
    margin: 0 auto 120px auto;
    background: transparent;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.deck2dock-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.deck2dock-section:hover {
    transform: translateY(-8px);
}

.deck2dock-glass-container {
    position: absolute;
    top: 1px;
    left: 0;
    width: 1224px;
    height: 500px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}



/* Deck2Dock Ellipses */
.deck2dock-ellipse {
    position: absolute;
    background: var(--primary-blue);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.7;
    z-index: -1;
}

.deck2dock-ellipse-left {
    top: 21.92px;
    left: -100px;
    width: 408.06px;
    height: 445.71px;
}

.deck2dock-ellipse-right {
    top: 50px;
    right: -150px;
    width: 380px;
    height: 420px;
    opacity: 0.3;
}






/* Transport Pattern - Technical Grid Background */
.transport-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 20px;
    padding: 40px 60px;
    box-sizing: border-box;
}

.transport-line {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        rgba(30, 144, 255, 0) 0%, 
        rgba(30, 144, 255, 0.6) 30%, 
        rgba(30, 144, 255, 0.8) 70%, 
        rgba(30, 144, 255, 0) 100%);
    border-radius: 4px;
    animation: pulseFlow 3s ease-in-out infinite;
}

.transport-line:nth-child(odd) {
    animation-delay: 0.5s;
}

.transport-line:nth-child(3n) {
    animation-delay: 1s;
}

.transport-line:nth-child(5n) {
    animation-delay: 1.5s;
}

@keyframes pulseFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1.1);
    }
}

/* Text Content */
.deck2dock-content {
    position: absolute;
    top: 162px;
    left: 104px;
    width: 464px;
    height: 176.64px;
    z-index: 10;
}

.deck2dock-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.45em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    width: 299px;
    height: 57.88px;
}

.deck2dock-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45em;
    color: var(--white);
    
    width: 366px;
    height: 25.95px;
}

.deck2dock-description {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: var(--light-gray);
    margin: 0;
    width: 464px;
    height: 68.86px;
}

/* Chat Section 1 */
.deck2dock-chat-1 {
    position: absolute;
    top:50%;
    left: 568px;
    width: 80px;
    z-index: 10;
}

.deck2dock-chat-1 .chat-profile-image {
    position: absolute;
    top: 48.88px;
    left: 163.33px;
    width: 120px;
    transform: rotate(30deg);

    border-radius: 50%;
    object-fit: cover;
}

.deck2dock-chat-1 .chat-bubble-driver {
    position: absolute;
    top: 0;
    left: 0;
    width: 253.75px;
    height: 62.38px;
    background: var(--gradient-primary);
    border-radius: 30px 30px 0px 30px;
    padding: 9.98px 30px;
    box-sizing: border-box;
}

.deck2dock-chat-1 .chat-bubble-driver p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45em;
    color: var(--navy);
    margin: 0;
    width: 193.75px;
    height: 43.91px;
}

/* Chat Section 2 */
.deck2dock-chat-2 {
    position: absolute;
    top: 18.74px;
    right: 12%;
    width: 300px;
    z-index: 10;
}

/* Chat bubble animations */
.deck2dock-chat-1 .chat-bubble-driver {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.8s ease-out;
}

.deck2dock-chat-2 .chat-bubble-user {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    transition: all 0.8s ease-out;
}

.deck2dock-chat-1.animate-in .chat-bubble-driver {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.deck2dock-chat-2.animate-in .chat-bubble-user {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.deck2dock-chat-2 .chat-profile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    transform: rotate(-30deg);
    border-radius: 50%;
    object-fit: cover;
}

.deck2dock-chat-2 .chat-bubble-user {
    position: absolute;
    top: 29.97px;
    left: 206.04px;
    width: 202.3px;
    height: 62.44px;
    background: var(--gradient-primary);
    border-radius: 30px 30px 30px 0px;
    padding: 21.23px 27.47px;
    box-sizing: border-box;
}

.deck2dock-chat-2 .chat-bubble-user p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45em;
    color: var(--navy);
    text-align: right;
    margin: 0;
    width: 144.86px;
    height: 21.98px;
}

/* Live the Moment Section - Exact Figma Positioning */
.live-moment-section {
    position: relative;
    width: 1224px;
    height: 500px;
    margin: 0 auto;
    background: transparent;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.live-moment-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.live-moment-section:hover {
    transform: translateY(-8px);
}

.live-moment-glass-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 392px;
    height: 500px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Live Moment Section Background Ellipse */
.live-moment-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(24, 229, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    animation: float 12s ease-in-out infinite;
}

.live-moment-title {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 333px;
    height: 174px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.45em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.live-moment-description {
    position: absolute;
    top: 222px;
    left: 32px;
    width: 340px;
    height: 58px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45em;
    color: var(--light-gray);
    margin: 0;
}

.live-moment-btn {
    position: absolute;
    top: 312px;
    left: 32px;
    width: 164px;
    height: auto;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.45em;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.live-moment-btn:hover {
    transform: translateY(-2px);
}

.live-moment-main-image {
    position: absolute;
    top: 0;
    left: 416px;
    width: 496px;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
}

.main-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-moment-phone-mockup-1 {
    position: absolute;
    top: 0;
    left: 936px;
    width: 288px;
    height: 238px;
    border-radius: 32px;
    overflow: hidden;
}

.live-moment-phone-mockup-2 {
    position: absolute;
    top: 262px;
    left: 936px;
    width: 288px;
    height: 238px;
    border-radius: 32px;
    overflow: hidden;
}

.phone-mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live the Moment Pagination Dots */
.live-moment-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 90px;
    height: 8px;
    margin: 20px auto 0;
    z-index: 10;
}

/* Hide pagination dots on desktop and tablet - only show on mobile */
@media (min-width: 768px) {
    .live-moment-pagination {
        display: none;
    }
}

/* Landmarks Section - Exact Figma Positioning */
.landmarks-section {
    position: relative;
    width: 1224px;
    height: 500px;
    margin: 120px auto;
    background: transparent;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.landmarks-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.landmarks-section:hover {
    transform: translateY(-8px);
}

.landmarks-glass-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 1224px;
    height: 500px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.landmarks-ellipse {
    position: absolute;
    top: 61px;
    left: 613px;
    width: 493.32px;
    height: 378.96px;
    background: var(--primary-blue);
    filter: blur(200px);
    opacity: 0.7;
    border-radius: 50%;
}

.landmarks-title {
    position: absolute;
    top: 129px;
    left: 104px;
    width: 520px;
    height: 243px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 56px;
    line-height: 1.45em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.landmarks-map-lines {
    position: absolute;
    top: 15px;
    left: 52.5px;
    width: 1164.5px;
    height: 440px;
    z-index: 5;
}

.connection-line-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landmark-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
}

.landmark-1 {
    top: 326px;
    left: 991px;
    width: 129px;
    height: 129px;
}

.landmark-2 {
    top: 163px;
    left: 613px;
    width: 210px;
    height: 210px;
}

.landmark-5 {
    transform: rotate(200deg);
}

.landmark-3 {
    top: 96px;
    left: 1056px;
    width: 99px;
    height: 149px;
    border-radius: 20px;
}

.landmark-4 {
    top: 41px;
    left: 786px;
    width: 107px;
    height: 107px;
}

.landmark-5 {
    top: 213px;
    left: 859px;
    width: 109.11px;
    height: 109.11px;
    
}

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

/* Final Section - One App - Exact Figma Positioning */
.final-section {
    position: relative;
    width: 1224px;
    height: 500px;
    margin: 120px auto;
    background: transparent;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.final-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.final-section:hover {
    transform: translateY(-8px);
}

.final-glass-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 1224px;
    height: 500px;
    background: rgba(0, 29, 63, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.final-ellipse {
    position: absolute;
    top: 0;
    left: 111.7px;
    width: 349.17px;
    height: 492.42px;
    background: var(--primary-blue);
    filter: blur(200px);
    opacity: 0.7;
    border-radius: 50%;
    z-index: -1;
}

.hand-phone-image {
    position: absolute;
    top: 0.44px;
    left: 123px;
    width: 390px;
    height: 499px;
    z-index: 10;
}

.hand-phone-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.final-title {
    position: absolute;
    top: 85.44px;
    left: 625px;
    width: 491px;
    height: 174px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.45em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.final-description {
    position: absolute;
    top: 275.44px;
    left: 625px;
    width: 387px;
    height: 69px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: #AAB8C2;
    margin: 0;
}

.final-app-badges {
    position: absolute;
    top: 376.44px;
    left: 624px;
    display: flex;
    gap: 10px;
}

.final-app-badge-1 {
    width: 120px;
    height: 40px;
}

.final-app-badge-2 {
    width: 135px;
    height: 40px;
}

.app-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Feature-specific styles */
.feature-relax {
    background-image: url('../assets/images/boat-background-poster-optimized.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.feature-deck2dock {
    position: relative;
    overflow: hidden;
}

.feature-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.floating-icons {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-gap: 2rem;
    padding: 2rem;
    height: 100%;
}

.transport-icon {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(2, 34, 72, 0) 40%, rgba(2, 34, 72, 0.6) 100%);
    border-radius: 4px;
}

.feature-chat {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.chat-message {
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.user-message {
    background: var(--gradient-primary);
    color: var(--navy);
    border-radius: 30px 30px 30px 0;
    align-self: flex-end;
    margin-left: 2rem;
}

.driver-message {
    background: var(--gradient-primary);
    color: var(--navy);
    border-radius: 30px 30px 0 30px;
    align-self: flex-start;
    margin-right: 2rem;
}

.feature-phone-mockup {
    position: relative;
    height: 200px;
    margin-top: 2rem;
}

.phone-screen-1,
.phone-screen-2,
.phone-screen-3 {
    position: absolute;
    width: 120px;
    height: 160px;
    border-radius: var(--border-radius-lg);
    background-size: cover;
    background-position: center;
}

.phone-screen-1 {
    background-image: url('../assets/images/boat-background-poster-optimized.webp');
    top: 0;
    left: 0;
}

.phone-screen-2 {
    background: var(--dark-blue);
    top: 20px;
    left: 60px;
}

.phone-screen-3 {
    background-image: url('../assets/images/boat-background-poster-optimized.webp');
    top: 40px;
    left: 120px;
}

.landmarks-map {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

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

.landmark-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.landmark-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.point-1 { top: 20%; left: 30%; }
.point-2 { top: 60%; left: 70%; }
.point-3 { top: 40%; left: 50%; }
.point-4 { top: 80%; left: 20%; }

/* ===== FIGMA FOOTER ===== */
.figma-footer {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Mobile footer default hidden on desktop */
.mobile-footer { display: none; }

/* ===== MOBILE MENU OVERLAY ===== */
/* Mobile Menu Overlay - Full Screen per Figma */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Use dynamic viewport height for mobile */
    background: linear-gradient(180deg, rgba(2, 20, 41, 1) 0%, rgba(0, 29, 63, 1) 100%);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

/* Header Gradient Overlay */
.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 147px;
    background: linear-gradient(180deg, rgba(2, 20, 41, 0) 0%, rgba(2, 20, 41, 1) 100%);
    z-index: 1;
}

.mobile-menu-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 59px 24px 24px; /* Top padding to clear status bar */
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 9.144683837890625px;
    background: rgba(2, 20, 41, 0.05);
    backdrop-filter: blur(11.510791778564453px);
    border: none;
    border-radius: 18.417266845703125px;
    padding: 18.99280548095703px 13.812949180603027px;
    width: 223px;
    height: 64px;
}

.mobile-logo .mobile-logo-group {
    width: 40px;
    height: 38.19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo .mobile-nav-logo {
    width: 40px;
    height: auto;
    display: block;
}

.mobile-logo .mobile-nav-divider {
    width: 0;
    height: 36.58px;
    border-left: 0.7034372687339783px solid #879CB3;
}

.mobile-logo .mobile-welcome-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 99px;
    height: 41.99px;
}

.mobile-logo .mobile-welcome-greeting {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11.254996299743652px;
    line-height: 1.4500001228634574em;
    letter-spacing: 0.6249999867604032%;
    color: var(--white);
}

.mobile-logo .mobile-company-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16.88249397277832px;
    line-height: 1.3333333709926316em;
    letter-spacing: 0.41666666960879933%;
    color: var(--white);
}

.mobile-menu-close {
    position: relative;
    width: 58px;
    height: 58px;
    background: rgba(2, 20, 41, 0.1);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.mobile-menu-close::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(230deg, rgba(255, 255, 255, 1) 0%, rgba(118, 187, 255, 1) 100%);
    border-radius: 16px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.mobile-menu-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 40px 24px 0;
}

.mobile-menu-section {
    margin-bottom: 56px;
}

.mobile-menu-section h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.45;
    text-transform: uppercase;
    background: linear-gradient(230deg, rgba(255, 255, 255, 1) 0%, rgba(118, 187, 255, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 35px 0;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links li {
    border-bottom: 1px solid rgba(46, 74, 106, 0.5);
    padding-bottom: 16px;
}

.mobile-menu-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: #AAB8C2;
    text-decoration: none;
    display: block;
}

.mobile-menu-footer {
    position: relative;
    z-index: 2;
    padding: 24px;
    margin-top: auto;
}

.mobile-menu-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.mobile-menu-badge {
    height: 40px;
    width: auto;
}

.mobile-menu-copyright {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.45;
    color: #8DD8FF;
    text-align: left;
    margin: 0;
}

/* Legacy class aliases for backwards compatibility */
.mobile-nav-links { display: none; }
.mobile-nav-link { display: none; }
.mobile-menu-actions { display: none; }



/* Prevent body scroll when menu is open */
body.menu-open { 
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 284px;
    background: transparent;
    z-index: 0;
}

.footer-waves-pattern {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100vw;
    height: 257px;
    /* Primary wave pattern from Figma */
    background-image: url('../assets/images/footer-waves-pattern.svg');
    background-size: auto 100%; /* Maintain aspect ratio, stretch height */
    background-position: top left;
    background-repeat: repeat-x; /* Repeat horizontally to fill width */
    z-index: 2;
    /* Debug: ensure waves are visible */
    min-height: 257px;
}

.footer-container {
    position: relative;
    width: 1224px;
    height: 205px; /* Increase height to accommodate bottom spacing */
    margin: 0 auto;
    top: 59px;
    z-index: 10;
    padding-bottom: 40px; /* Add padding for proper spacing */
    box-sizing: border-box;
}

/* Left Section - Logo + App Badges */
.footer-left-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 271px;
    height: 165px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.footer-left-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-left-section:hover {
    transform: translateY(-5px);
}

.footer-logo-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 79.6px;
    height: 76px;
}

.figma-footer-logo {
    width: 100%;
    height: auto;
}

.footer-app-badges {
    position: absolute;
    top: 92px;
    left: 0;
    display: flex;
    gap: 16px;
}

.footer-app-badge-1 {
    width: 120px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-app-badge-1:hover {
    transform: translateY(-3px);
}

.footer-app-badge-2 {
    width: 135px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-app-badge-2:hover {
    transform: translateY(-3px);
}

.footer-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Center Section - Services + Company */
.footer-center-section {
    position: absolute;
    top: 0;
    left: 624px;
    width: 450px;
    height: 153px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.2s;
}

.footer-center-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-center-section:hover {
    transform: translateY(-5px);
}

.footer-services-col {
    width: 200px;
    height: 153px;
}

.footer-company-col {
    width: 200px;
    height: 153px;
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4500001271565754em;
    color: #8DD8FF;
    margin: 0 0 25px 0;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4500000817435128em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
    height: auto;
}

.footer-link:hover {
    color: var(--primary-blue);
}

/* Right Section - Contact + Social */
.footer-right-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 186px;
    height: 146px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.4s;
}

.footer-right-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-right-section:hover {
    transform: translateY(-5px);
}

.footer-contact-email {
    position: absolute;
    top: 61px;
    left: 0;
    width: 141px;
    height: 45px;
}

.footer-contact-email .footer-heading {
    width: 31px;
    height: 17px;
    margin: 0 0 8px 0;
}

.footer-contact-email .footer-link {
    width: 141px;
    height: 20px;
    margin: 0;
}

.footer-contact-location {
    position: absolute;
    top: 0;
    left: 0;
    width: 186px;
    height: 45px;
}

.footer-contact-location .footer-heading {
    width: 48px;
    height: 17px;
    margin: 0 0 8px 0;
}

.footer-contact-location .footer-link {
    width: 186px;
    height: 20px;
    margin: 0;
}

/* Social Icons */
.footer-social-icons {
    position: absolute;
    top: 130px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    width: auto;
    height: 16px;
}

.footer-social-icon {
    width: 16px;
    height: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.2) translateY(-2px);
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Scroll-triggered animation styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Copyright */
.footer-copyright {
    position: absolute;
    top: 148px;
    left: 0;
    width: 218px;
    height: 17px;
    margin-bottom: 40px; /* Add bottom spacing */
}

.footer-copyright span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4500001271565754em;
    color: #8DD8FF;
    margin: 0;
    text-align: left;
}

/* Responsive Styles for Figma Footer */
@media (max-width: 1279px) {
    .footer-container {
        width: 100%;
        max-width: 1224px;
        padding: 0 2rem;
        box-sizing: border-box;
    }
    
    .footer-center-section {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .figma-footer {
        height: auto;
        min-height: 324px; /* Increased for better spacing */
        padding: 59px 0 60px; /* Increased bottom padding */
    }
    
    .footer-container {
        position: static;
        height: auto;
        margin: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 1rem 60px 1rem; /* Added bottom padding */
        box-sizing: border-box;
    }
    
    .footer-left-section,
    .footer-center-section,
    .footer-right-section {
        position: static;
        width: 100%;
        height: auto;
    }
    
    .footer-center-section {
        transform: none;
        justify-content: space-around;
        gap: 2rem;
    }
    .hero-content.animate-in{
        transform: translateX(-50%);
        opacity: 1;
    }
    .footer-social-icons,
    .footer-copyright {
        position: static;
        margin-top: 1rem;
    }
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--dark-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.email-notification-form h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.email-notification-form p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.form-input::placeholder {
    color: var(--light-gray);
}

.message-container {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand-card {
        width: auto;
        min-width: 120px;
        padding: 12px 8px;
        height: 48px;
    }
    
    .nav-brand-content {
        gap: 6px;
        width: auto;
    }
    
    .welcome-text {
        display: none;
    }
    
    .nav-divider {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Show compact brand on mobile */
    .mobile-nav-brand { 
        display: flex; 
        align-items: center; 
        gap: 9.144683837890625px; 
        background: rgba(2, 20, 41, 0.05);
        backdrop-filter: blur(11.510791778564453px);
        border: none;
        border-radius: 18.417266845703125px;
        padding: 18.99280548095703px 13.812949180603027px;
        width: 223px;
        height: 64px;
    }
    .nav-brand-card { display: none; }
    .mobile-logo-group { width: 40px; height: 38.19px; display: flex; align-items: center; justify-content: center; }
    .mobile-nav-logo { width: 40px; height: auto; display: block; }
    .mobile-nav-divider { width: 0; height: 36.58px; border-left: 0.7034372687339783px solid #879CB3; }
    .mobile-welcome-text { display: flex; flex-direction: column; gap: 2px; width: 99px; height: 41.99px; }
    .mobile-welcome-greeting { 
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 11.254996299743652px;
        line-height: 1.4500001228634574em;
        letter-spacing: 0.6249999867604032%;
        color: var(--white);
    }
    .mobile-company-name { 
        font-family: var(--font-heading);
        font-weight: 500;
        font-size: 16.88249397277832px;
        line-height: 1.3333333709926316em;
        letter-spacing: 0.41666666960879933%;
        color: var(--white);
    }
    
    .hero-content {   padding: 0 1rem 4vh; 
        max-width: 90%; 
        position: absolute; 
        bottom: 0; 
        transform: translateX(-50%); }
    
    .hero-title {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* .services {
        padding: 3rem 0;
    } */
    
    .services-title {
        font-size: 2rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .services-wrapper { height: auto; position: static; }
    /* Final (One App) section mobile flow layout */
    .final-section {
        width: 100%;
        height: auto;
        margin: 60px auto;
        position: relative;
    }

    /* Final section ellipses for mobile */
    .final-section::before {
        content: '';
        position: absolute;
        top: 30px;
        left: -60px;
        width: 220px;
        height: 320px;
        background: var(--primary-blue);
        border-radius: 50%;
        filter: blur(140px);
        opacity: 0.35;
        z-index: -1;
    }

    .final-section::after {
        content: '';
        position: absolute;
        bottom: 50px;
        right: -70px;
        width: 280px;
        height: 380px;
        background: var(--light-blue);
        border-radius: 50%;
        filter: blur(140px);
        opacity: 0.35;
        z-index: -1;
    }
    .final-glass-container { position: static; width: 100%; height: auto; border-radius: 24px; padding: 20px; }
    .hand-phone-image { position: static; width: 100%; height: auto; margin-top: 12px; }
    .final-title { position: static; width: auto; height: auto; font-size: 28px; line-height: 1.3; margin-top: 4px; }
    .final-description { position: static; width: auto; height: auto; font-size: 16px; margin-top: 10px; }
    .final-app-badges { position: static; display: flex; gap: 10px; margin-top: 16px; }
    
    
    /* Mobile services navigation */
    .nav-arrow {
        width: 32px;
        height: 32px;
    }
    
    .nav-arrow-left {
        margin-left: -40px;
    }
    
    .nav-arrow-right {
        margin-right: -40px;
    }
    
    .services-navigation {
        padding: 0 1rem;
    }
    
    /* Reduce left/right padding for services on mobile */
    .services-container {
        padding: 0 20px;
    }

    /* Section visibility switches */
    .desktop-services { display: none; }
    .mobile-services { display: block; }

    /* Mobile services carousel track sizing */
    .mobile-services-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    /* Lock gestures to horizontal within carousels */
    .mobile-services-wrapper,
    .mobile-services-track,
    .live-moment-images-container {
        touch-action: pan-x;
        overscroll-behavior-x: contain;
    }
    #mobile-services-track,
    .mobile-services-track {
        display: flex;
        width: 600%; /* 6 cards */
        transition: transform 0.4s ease;
    }
    .mobile-services .service-card {
        flex: 0 0 calc(100% / 6);
        width: calc(100% / 6);
        height: 420px;
        max-width: none;
        margin: 0;
    }
    .mobile-services .service-image-container {
        height: 240px;
        border-radius: 24px;
    }
    .mobile-services .service-content-overlay {
        height: auto;
        gap: 16px;
        padding: 20px;
    }
    .mobile-services .service-title { font-size: 24px; width: auto; }
    .mobile-services .service-tagline { font-size: 13px; }
    .mobile-services .service-description { font-size: 12px; width: auto; }
    .mobile-nav-arrow:hover { background: rgba(0, 29, 63, 0.4); opacity: 1; transform: scale(1.06); }
    .mobile-nav-arrow:active { transform: scale(0.96); }
    /* Mobile services arrows (centered together under cards) */
    .mobile-services-navigation {
      
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        pointer-events: auto;
       margin-top: 12px;
    }
    .mobile-nav-arrow {
        width: 36px;
        height: 36px;
        background: rgba(0, 29, 63, 0.25);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
        pointer-events: auto;
        opacity: 0.9;
    }
    .mobile-nav-arrow:hover { background: rgba(0, 29, 63, 0.4); opacity: 1; transform: scale(1.06); }
    .mobile-nav-arrow:active { transform: scale(0.96); }
    /* Mobile arrows now centered together with gap */

    /* Deck2Dock mobile layout */
    .deck2dock-section { width: 100%; height: auto; margin: 40px auto; }
    .deck2dock-glass-container { position: relative; width: 100%; height: auto; border-radius: 24px; overflow: visible; display: flex; flex-direction: column; }
    .deck2dock-content { position: relative; z-index: 5; padding: 20px; width: 100%; height: auto; left: 0; top: 0; }
    .deck2dock-title { font-size: 28px; width: auto; }
    .deck2dock-tagline { font-size: 14px; width: auto; }
    .deck2dock-description { font-size: 14px; width: auto; }
    .deck2dock-ellipse-left, .deck2dock-ellipse-right { filter: blur(140px); opacity: 0.35; right:0 }
    .transport-pattern { display: none; }
    /* On mobile: show only the image */
    .deck2dock-chat-1, .deck2dock-chat-2 { display: none; }
    .deck2dock-image { order: 2; width: 100%; margin-top: 12px; }
    .deck2dock-image img { width: 100%; height: 280px; object-fit: contain; border-radius: 24px; display: block; }
    .deck2dock-chat-1, .deck2dock-chat-2 { position: relative; z-index: 6; width: 100%; margin: 10px 0; }
    .deck2dock-chat-1 .chat-profile-image, .deck2dock-chat-2 .chat-profile-image { position: static; width: 120px; transform: none; }
    .deck2dock-chat-1 .chat-bubble-driver, .deck2dock-chat-2 .chat-bubble-user { position: static; width: auto; height: auto; margin-top: 10px; }

    /* Live the Moment mobile layout */
    .live-moment-section { width: 100%; height: auto; margin: 40px auto; }
    .live-moment-glass-container { position: static; width: 100%; height: auto; border-radius: 24px; padding: 20px; }
    .live-moment-title { position: static; width: auto; height: auto; font-size: 28px; line-height: 1.3; }
    .live-moment-description { position: static; width: auto; height: auto; font-size: 16px; margin-top: 10px; }
    .live-moment-btn { position: static; margin-top: 16px; }
    /* Slider behavior for Live the Moment images */
    .live-moment-images-container {
        position: relative;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 20px 8px;
        margin-top: 16px;
    }
    .live-moment-images-container::-webkit-scrollbar { display: none; }
    .live-moment-images-container { -ms-overflow-style: none; scrollbar-width: none; }
    .live-moment-main-image,
    .live-moment-phone-mockup-1,
    .live-moment-phone-mockup-2 {
        position: static;
        flex: 0 0 100%;
        width: 100%;
        border-radius: 24px;
        overflow: hidden;
        scroll-snap-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }
    /* Ensure all slides use the exact same size on mobile */
    /* Force identical slide size: full width, fixed responsive height */
    .live-moment-main-image,
    .live-moment-phone-mockup-1,
    .live-moment-phone-mockup-2 { height: clamp(220px, 56vw, 360px); }

    /* Mobile Live the Moment Pagination Dots */
    .live-moment-pagination {
        margin: 16px auto 0;
        width: 90px;
    }

    .live-moment-section::after { display: none; }

    /* Landmarks mobile layout */
    .landmarks-section {
        width: 100%;
        height: auto;
        margin: 60px auto;
        position: relative;
    }

    /* Landmarks ellipses for mobile */
    .landmarks-section::before {
        content: '';
        position: absolute;
        top: 50px;
        left: -50px;
        width: 200px;
        height: 300px;
        background: var(--primary-blue);
        border-radius: 50%;
        filter: blur(140px);
        opacity: 0.35;
        z-index: -1;
    }

    .landmarks-section::after {
        content: '';
        position: absolute;
        top: 150px;
        right: -80px;
        width: 250px;
        height: 350px;
        background: var(--light-blue);
        border-radius: 50%;
        filter: blur(140px);
        opacity: 0.35;
        z-index: -1;
    }
    .landmarks-glass-container { 
        position: static; 
        width: 100%; 
        height: 400px; 
        border-radius: 24px; 
        padding: 20px; 
        background-image: url('../assets/images/landmark-mobile.png');
        background-size: contain; 
        background-position: center; 
        background-repeat: no-repeat; 
        min-height: clamp(260px, 60vw, 420px);
        overflow: hidden;
    }
    .landmarks-title { position: static; width: auto; height: auto; font-size: 32px; line-height: 1.25; margin-bottom: 12px; }
    /* Hide the sub div; background now lives on the main container */
    .landmarks-map-lines { display: none; }
    .landmarks-map-lines .connection-line-img { display: none; }
    .connection-line-img { display: none; }
    .landmark-image { display: none; }
    .landmarks-ellipse { display: none; }

    /* Footer switches */
    .figma-footer { display: none; }
    .mobile-footer { display: block; background: transparent; padding: 24px 0 36px; }
    .mobile-footer-content { max-width: 1224px; margin: 0 auto; padding: 0 1rem; }
    .mobile-social-icons { display: flex; gap: 16px; justify-content: center; margin-bottom: 12px; }
    .mobile-social-icon { width: 24px; height: 24px; }
    .mobile-social-icon img { width: 100%; height: 100%; object-fit: contain; }
    .mobile-copyright { text-align: center; color: #8DD8FF; font-size: 12px; }

    /* You Relax section mobile layout (match Figma) */
    .you-relax-section { width: 100%; height: auto; margin: 24px auto 40px auto; }
    .relax-bg-image { position: static; width: 100%; height: 220px; border-radius: 24px; }
    .relax-glass-container { position: static; width: 100%; height: auto; border-radius: 24px; padding: 20px; margin-top: 12px; }
    .relax-title { width: auto; font-size: 28px; line-height: 1.3; }
    .relax-description { width: auto; font-size: 16px; margin-top: 8px; }
    .relax-app-badges { margin-top: 16px; gap: 10px; }
    .relax-app-badge { height: 36px; width: 112px; }
    .you-relax-section::before { display: none; }
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --section-spacing: 5rem;
    }
    
    .welcome-text {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .services-container {
        padding: 0 2rem;
    }
    
    .services-cards {
        flex-direction: column;
        gap: 2rem;
        height: auto;
        margin-top: 2rem;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    

    
    .services-pagination {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
    }
    

    

}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        white-space: nowrap;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-cards {
        flex-direction: row;
        gap: 56px;
    }
    
    .service-card {
        width: 392px;
        max-width: 392px;
    }
    

    
    .services-pagination {
        position: absolute;
        transform: translateX(-50%);
        margin-top: 0;
    }
    
    .feature-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        padding: 3rem;
        min-height: 500px;
    }
    /* On desktop: ensure Deck2Dock image (mobile-only) is hidden and content shows */
    .deck2dock-image { display: none !important; }
    .deck2dock-content, .deck2dock-chat-1, .deck2dock-chat-2 { display: block; }
    
    .feature-card:nth-child(even) .feature-content {
        order: 2;
    }
    
    .feature-card:nth-child(even) .feature-image,
    .feature-card:nth-child(even) .feature-chat,
    .feature-card:nth-child(even) .feature-phone-mockup,
    .feature-card:nth-child(even) .landmarks-map {
        order: 1;
    }
    

}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .container {
        padding: 0 6.75rem;
    }
    
    .nav-container {
        padding: 0 6.75rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 2.5rem;
    }
}
