/* 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;
    overflow-x: hidden;
}

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;
    --whatsapp-green: #25D366;
    --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);
    position: relative;
}

.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 transparent;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%) 1;
    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;
    position: relative;
    overflow: hidden;
}

.nav-brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18.417266845703125px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.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: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
    }
}

.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;
}

/* Top gradient overlay - Rectangle 85 in Figma */
/* Dark at TOP, fading to transparent - creates dark bar at top of hero */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 166px;
    background: linear-gradient(180deg, rgba(2, 20, 41, 1) 0%, rgba(2, 20, 41, 0) 100%);
    z-index: 1;
}

/* Bottom gradient overlay - Rectangle 86 in Figma */
/* Covers bottom portion of hero, fading from transparent to dark blue matching next section */
/* This creates the "melting" effect where video seamlessly transitions to next section */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    min-height: 400px;
    background: linear-gradient(180deg,
            rgba(2, 20, 41, 0) 0%,
            rgba(2, 20, 41, 0) 25%,
            rgba(2, 20, 41, 0.2) 45%,
            rgba(2, 20, 41, 0.5) 65%,
            rgba(2, 20, 41, 0.8) 85%,
            rgba(2, 20, 41, 0.95) 95%,
            rgba(2, 20, 41, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Extended bottom gradient for smooth transition - ensures perfect alignment with next section */
/* This ensures the very bottom edge matches exactly with the next section's background (#021429) */
.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 65%,
            rgba(2, 20, 41, 0.08) 78%,
            rgba(2, 20, 41, 0.3) 88%,
            rgba(2, 20, 41, 0.65) 95%,
            rgba(2, 20, 41, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 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;
    top: 50%;
    left: 108px;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 101px;
    background: var(--gradient-primary);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.45;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Hero text section removed - content now in hero section */

/* ===== YACHT FORM SECTION ===== */
.yacht-form-section {
    padding: 80px var(--container-padding);
    background: var(--dark-blue);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Success Message - Replaces Form Content */
.yacht-form-success-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 104px;
    z-index: 10;
    animation: fadeInScale 0.5s ease-out;
}

.success-icon-container {
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark-icon {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0px 4px 14px rgba(34, 197, 94, 0.4));
}

.success-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.45em;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    text-transform: none;
}

.success-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    text-align: center;
    color: #AAB8C2;
    margin: 0 0 48px 0;
    max-width: 462px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 536px;
    align-items: center;
}

.success-btn {
    width: 100%;
    max-width: 536px;
    height: 56px;
    padding: 17px 152px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.45em;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-sizing: border-box;
}

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

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

.success-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #AAB8C2;
}

.success-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Error Message (kept for error states) */
.yacht-form-error-message {
    max-width: 1224px;
    width: 100%;
    margin: 0 auto 32px auto;
    padding: 24px 32px;
    border-radius: 16px;
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    animation: slideDown 0.4s ease-out;
}

.error-message-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.error-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #F44336;
}

.error-message-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: var(--white);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

.yacht-form-container {
    max-width: 1224px;
    width: 100%;
    min-height: 448px;
    margin: 0 auto;
    background: rgba(2, 20, 41, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid transparent;
    border-radius: 32px;
    padding: 70px 104px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    box-sizing: border-box;
}

.yacht-form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(153, 153, 153, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Left Side: Title and Description */
.yacht-form-left-content {
    flex: 0 0 386px;
    width: 386px;
    max-width: 386px;
    z-index: 1;
    align-self: flex-start;
    margin-top: 0;
}

.yacht-form-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.45em;
    background: linear-gradient(230deg, rgba(255, 255, 255, 1) 0%, rgba(118, 187, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    width: 386px;
    height: 116px;
}

.yacht-form-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: #AAB8C2;
    margin: 0;
    width: 384px;
    height: 69px;
}

/* Right Side: Form */
.yacht-form-right-content {
    flex: 0 0 600px;
    width: 600px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}

/* Form Tabs */
.yacht-form-tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 24px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    z-index: 2;
}

.yacht-form-tabs::-webkit-scrollbar {
    display: none;
}

.form-tab {
    flex: 0 0 auto;
    padding: 18px 16px;
    width: 184px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B2545;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25em;
    color: #AAB8C2;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.form-tab:hover {
    color: var(--white);
}

.form-tab.active {
    background: linear-gradient(52deg, rgba(8, 88, 165, 1) 0%, rgba(30, 144, 255, 1) 100%);
    color: #FFFFFF;
}

/* Form Content */
.yacht-form-content {
    width: 100%;
    max-width: 600px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    justify-items: stretch;
}

.form-field {
    position: relative;
    width: 100%;
    max-width: 288px;
    box-sizing: border-box;
    margin-bottom: 0;
}

/* Adjust form field when it has an error message */
.form-field:has(.field-error-message) {
    margin-bottom: 2px;
}

/* Error message styling */
.field-error-message {
    margin-top: 6px;
    margin-bottom: 0;
    padding-left: 2px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #ff4444;
    display: block;
    animation: fadeIn 0.3s ease-in;
    min-height: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.form-field::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.form-field>input,
.form-field>select {
    width: 100%;
    height: 56px;
    padding: 18px 16px;
    background: rgba(11, 37, 69, 0.2);
    border: none;
    border-radius: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.form-field input::placeholder {
    color: #A0A8B8;
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(11, 37, 69, 0.3);
}

.form-field-phone {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 288px;
    height: 56px;
    gap: 0;
    position: relative;
    background: rgba(11, 37, 69, 0.2);
    border-radius: 16px;
    box-sizing: border-box;
}

.form-field-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 18px 16px;
    flex-shrink: 0;
    box-sizing: border-box;
    position: relative;
}

.phone-prefix::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15px;
    width: 0;
    height: 26px;
    border-left: 1px solid #2E4A6A;
}

.uae-flag-icon {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.phone-code {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: #AAB8C2;
}

.form-field-phone input {
    flex: 1;
    height: 100%;
    padding: 18px 16px;
    border: none;
    background: transparent;
    border-radius: 0 16px 16px 0;
    position: relative;
    z-index: 0;
}

/* Dropdown Field Styles */
.form-field-dropdown {
    position: relative;
}

.form-field-dropdown::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.form-field-dropdown select {
    width: 100%;
    height: 56px;
    padding: 18px 40px 18px 16px;
    background: rgba(11, 37, 69, 0.2);
    border: none;
    border-radius: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.form-field-dropdown select:focus {
    outline: none;
    background: rgba(11, 37, 69, 0.3);
}

.form-field-dropdown select option {
    background: rgba(2, 20, 41, 0.95);
    color: var(--white);
    padding: 10px;
}

.form-field-dropdown select:invalid {
    color: #A0A8B8;
}

.dropdown-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    pointer-events: none;
    z-index: 1;
}

/* Date Field Styles */
.form-field-date {
    position: relative;
}

.form-field-date::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.form-field-date input[type="date"] {
    width: 100%;
    height: 56px;
    padding: 18px 40px 18px 16px;
    background: rgba(11, 37, 69, 0.2);
    border: none;
    border-radius: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.form-field-date input[type="date"]:focus {
    outline: none;
    background: rgba(11, 37, 69, 0.3);
}

.form-field-date input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-field-date input[type="date"]::-webkit-inner-spin-button,
.form-field-date input[type="date"]::-webkit-clear-button {
    display: none;
}

.date-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    pointer-events: none;
    z-index: 1;
}

/* Checkbox Field Styles */
.form-field-checkbox {
    position: relative;
}

.checkbox-label {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: rgba(11, 37, 69, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.checkbox-label:hover {
    background: rgba(11, 37, 69, 0.3);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: #FFFFFF;
    flex: 1;
    position: relative;
    z-index: 0;
}

.checkbox-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 0;
}

.checkbox-icon {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.checkbox-icon-unchecked {
    display: block;
}

.checkbox-icon-checked {
    display: none;
    color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-icon-wrapper .checkbox-icon-unchecked {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-icon-wrapper .checkbox-icon-checked {
    display: block;
}

.form-step-placeholder {
    padding: 40px 20px;
    text-align: center;
    color: var(--light-gray);
    font-family: var(--font-body);
    font-size: 14px;
}

/* Form Actions */
.yacht-form-actions {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    margin-top: auto;
}

.form-btn {
    width: 288px;
    height: 56px;
    padding: 17px 152px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.45em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.form-btn-back {
    background: transparent;
    border: 1px solid #64748B;
    color: #64748B;
}

.form-btn-back:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-btn-back:not(:disabled):hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

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

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

/* ===== PARTNER SECTION ===== */
.partner-section {
    padding: 80px var(--container-padding);
    background: var(--dark-blue);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.partner-container {
    max-width: 1224px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-glass-card {
    background: rgba(11, 37, 69, 0.2);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.partner-description {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 24px;
}

.partner-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 32px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.45;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.partner-btn-primary {
    background: var(--gradient-primary);
    color: #0B2545;
}

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

.partner-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.partner-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.partner-bg-image {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 0 var(--container-padding);
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    overflow: visible;
}

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

/* Background Ellipses - positioned relative to container, outside contact section */
.contact-ellipse {
    position: absolute;
    background: var(--primary-blue);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.contact-ellipse-1 {
    top: 168px;
    left: -34px;
    width: 323.6px;
    height: 289.06px;
}

.contact-ellipse-2 {
    top: -63px;
    right: -24px;
    width: 296.7px;
    height: 242.65px;
}

.contact-container {
    max-width: 392px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
    position: relative;
    z-index: 1;
    min-height: 485px;
    box-sizing: border-box;
    border-radius: 32px;
    background: rgba(0, 29, 63, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid transparent;
}

.contact-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.contact-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-header {
    margin-bottom: 32px;
}

.contact-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    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: 134px;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.45em;
    color: #AAB8C2;
    margin: 0;
    width: 284px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 292px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    position: relative;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(2, 20, 41, 0.1);
    backdrop-filter: blur(16.55px);
    border-radius: 8px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.contact-card-label {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45em;
    color: #8DD8FF;
    margin: 0 0 4px 0;
}

.contact-card-value {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: #FFFFFF;
    margin: 0;
}

/* Mobile-specific adjustments for new sections */
@media (max-width: 767px) {
    .hero-content {
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta-btn {
        padding: 17px 32px;
        width: 100%;
        max-width: 288px;
    }

    .yacht-form-section {
        padding: 40px var(--container-padding);
    }

    .yacht-form-success-content {
        padding: 40px 24px;
    }

    .success-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .success-checkmark-icon {
        width: 70px;
        height: 70px;
    }

    .success-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .success-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .success-actions {
        max-width: 100%;
        gap: 12px;
    }

    .success-btn {
        max-width: 100%;
        padding: 17px 32px;
        width: 100%;
    }

    .yacht-form-error-message {
        margin-bottom: 24px;
        padding: 20px 24px;
    }

    .error-message-content {
        gap: 12px;
    }

    .error-icon {
        width: 20px;
        height: 20px;
    }

    .error-message-text {
        font-size: 14px;
    }

    .yacht-form-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 448px;
        flex-direction: column;
        padding: 24px 20px;
    }

    .yacht-form-success-content {
        padding: 40px 24px;
        position: relative;
    }

    .success-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .success-checkmark-icon {
        width: 70px;
        height: 70px;
    }

    .success-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .success-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .success-actions {
        max-width: 100%;
        gap: 12px;
    }

    .success-btn {
        max-width: 100%;
        padding: 17px 32px;
        width: 100%;
    }

    .yacht-form-left-content {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .yacht-form-title {
        font-size: 28px;
        width: 100%;
        height: auto;
        line-height: 1.3;
    }

    .yacht-form-subtitle {
        font-size: 14px;
        width: 100%;
        height: auto;
    }

    .yacht-form-right-content {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .yacht-form-tabs {
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    .form-tab {
        width: auto;
        min-width: 120px;
        flex: 1;
        padding: 16px 12px;
        height: auto;
        min-height: 56px;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
    }

    .yacht-form-content {
        width: 100%;
        margin-bottom: 24px;
    }

    .form-fields-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 16px;
        justify-items: stretch;
    }

    .form-field {
        width: 100%;
        max-width: 100%;
    }

    .field-error-message {
        font-size: 12px;
        margin-top: 4px;
        margin-bottom: 0;
        min-height: 18px;
        line-height: 1.4;
    }

    .form-field:has(.field-error-message) {
        margin-bottom: 0;
    }

    .form-field-phone {
        width: 100%;
        max-width: 100%;
    }

    .form-field-dropdown,
    .form-field-date,
    .form-field-checkbox {
        width: 100%;
        max-width: 100%;
    }

    .form-field-dropdown select,
    .form-field-date input[type="date"] {
        width: 100%;
        max-width: 100%;
    }

    .yacht-form-actions {
        position: static;
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .form-btn-back {
        order: 2;
    }

    .form-btn-next {
        order: 1;
    }

    .form-btn {
        width: 100%;
        padding: 17px 32px;
    }

    .partner-section {
        padding: 40px var(--container-padding);
    }

    .partner-glass-card {
        padding: 32px 20px;
    }

    .partner-title {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 0 var(--container-padding);
    }

    .contact-container {
        max-width: 100%;
        padding: 32px 24px;
        min-height: 485px;
        border-radius: 32px;
        background: transparent;
    }

    .contact-title {
        font-size: 24px;
        width: auto;
    }

    .contact-subtitle {
        font-size: 18px;
        width: 100%;
        max-width: 284px;
    }

    .contact-cards {
        width: 100%;
        max-width: 292px;
    }

    .contact-ellipse-1 {
        left: -120px;
        width: 250px;
        height: 220px;
    }

    .contact-ellipse-2 {
        right: -20px;
        width: 220px;
        height: 180px;
    }
}

/* Contact Section - Mobile/Tablet styles (up to 1023px) */
@media (max-width: 1023px) {
    .contact-section {
        padding: 0 var(--container-padding);
    }

    .contact-container {
        max-width: 100%;
        padding: 32px 24px;
        min-height: 485px;
        border-radius: 32px;
        background: transparent;
    }

    .contact-content-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .contact-title {
        font-size: 24px;
        width: auto;
    }

    .contact-subtitle {
        font-size: 18px;
        width: 100%;
        max-width: 284px;
    }

    .contact-cards {
        width: 100%;
        max-width: 292px;
    }

    .contact-ellipse-1 {
        left: -120px;
        width: 250px;
        height: 220px;
    }

    .contact-ellipse-2 {
        right: -20px;
        width: 220px;
        height: 180px;
    }

    /* Final Section (One App) - Mobile/Tablet styles */
    .final-section {
        width: 100%;
        height: auto;
        margin: 60px auto;
        position: relative;
    }

    /* Final section ellipses for mobile/tablet */
    .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;
        background: rgba(0, 29, 63, 0.25);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 24px;
        padding: 20px;
        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);
    }

    .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;
    }
}

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

/* 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;
    width: 100%;
    margin: 0 auto;
    padding: 0 108px;
    position: relative;
    box-sizing: border-box;
}

.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%;
    min-height: 485px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-cards {
    position: relative;
    width: 100%;
    display: none;
    gap: 56px;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.services-cards.active {
    display: flex;
    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 cubic-bezier(0.4, 0, 0.2, 1);
}

.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);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
    padding: 0 30px;
    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 cubic-bezier(0.4, 0, 0.2, 1);
    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 {
    display: flex;
    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;
    overflow-x: hidden;
}

.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: 100%;
    max-width: 1224px;
    min-height: 518px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    background: transparent;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

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

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

.relax-bg-image {
    position: relative;
    flex: 1 1 808px;
    min-width: 300px;
    max-width: 808px;
    width: 100%;
    height: 518px;
    border-radius: 32px;
    overflow: hidden;
    order: 2;
    margin-left: -80px;
    z-index: 1;
}

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

.relax-glass-container {
    position: relative;
    flex: 0 1 496px;
    min-width: 300px;
    max-width: 496px;
    height: 454px;
    margin-top: 32px;
    background: rgba(0, 29, 63, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid transparent;
    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);
    display: flex;
    flex-direction: column;
    order: 1;
    z-index: 2;
    overflow: hidden;
}

.relax-glass-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* 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-tag {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.relax-tag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 16px;
    height: 42px;
    background: transparent;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.450000029343825em;
    color: var(--white);
    position: relative;
    width: fit-content;
}

.relax-tag span::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(52deg, rgba(8, 88, 165, 1) 0%, rgba(30, 144, 255, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.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;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.relax-description {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45em;
    color: #AAB8C2;
    margin: 0 0 24px 0;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.relax-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 164px;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.relax-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.45em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    width: 164px;
    height: auto;
    box-sizing: border-box;
}

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

.relax-btn-primary:hover {
    background: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.relax-btn-secondary {
    background: transparent;
    border: 1px solid transparent;
    color: var(--white);
    position: relative;
    border-radius: 16px;
    background: linear-gradient(52deg, rgba(8, 88, 165, 1) 0%, rgba(30, 144, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.relax-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(52deg, rgba(8, 88, 165, 1) 0%, rgba(30, 144, 255, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.relax-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

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

/* Live the Moment Section - Exact Figma Positioning */
.live-moment-section {
    position: relative;
    width: 1224px;
    max-width: 100%;
    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;
    max-width: 100%;
    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;
    max-width: 100%;
    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);
    overflow: hidden;
}

.landmarks-ellipse {
    position: absolute;
    top: 61px;
    right: 104px;
    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;
    max-width: 100%;
    height: auto;
    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;
    z-index: 20;
}

.landmarks-map-lines {
    position: absolute;
    top: 15px;
    right: 7px;
    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;
    right: 128px;
    width: 129px;
    height: 129px;
}

.landmark-2 {
    top: 163px;
    right: 506px;
    width: 210px;
    height: 210px;
}

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

.landmark-4 {
    top: 41px;
    right: 333px;
    width: 107px;
    height: 107px;
}

.landmark-5 {
    top: 213px;
    right: 260px;
    width: 109.11px;
    height: 109.11px;
    transform: rotate(200deg);
}

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

/* Final Section - One App - Base Styles (All Breakpoints) */
.final-section {
    position: relative;
    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);
}

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

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

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

.app-badge-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

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

/* 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-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: 350px;
    overflow: hidden;
    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-link {
    display: inline-block;
    text-decoration: none;
}

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

.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: 350px;
    background: transparent;
    z-index: 0;
}

.footer-waves-pattern {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 320px;
    /* 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: 320px;
}

.footer-container {
    position: relative;
    width: 1120px;
    max-width: calc(100% - 216px);
    height: 250px;
    margin: 0 auto;
    padding: 0 108px;
    top: 50px;
    z-index: 10;
    box-sizing: border-box;
}

/* Left Section - Logo + App Badges + Copyright + Social Icons */
.footer-left-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 271px;
    height: 240px;
    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-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

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

/* Right Section - Two Columns: Company, Contact */
.footer-right-section {
    position: absolute;
    top: 15px;
    left: 728px;
    width: 392px;
    height: 230px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 111px;
    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-company-col {
    width: 146px;
    height: 153px;
}

.footer-contact-col {
    width: 186px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    width: 100%;
    height: auto;
}

.footer-contact-item .footer-heading {
    margin: 0 0 8px 0;
}

.footer-contact-item .footer-link {
    margin: 0;
    display: block;
}

.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-company-col .footer-heading {
    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);
}

/* External Link Icon */
.footer-link-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-external-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.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: 190px;
    left: 0;
    width: 218px;
    height: 17px;
}

.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;
}

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

/* Remove old social icons positioning */
.footer-social-icons {
    position: static;
}

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

    .footer-right-section {
        left: auto;
        right: 2rem;
        width: auto;
        max-width: 560px;
        gap: 40px;
    }
}

@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-right-section {
        position: static;
        width: 100%;
        height: auto;
    }

    .footer-right-section {
        transform: none;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

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

    .footer-left-section .footer-social-icons,
    .footer-copyright {
        position: static;
        margin-top: 1rem;
    }

    .footer-contact-col {
        width: 100%;
    }
}

/* ===== 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 {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta-btn {
        width: 100%;
        padding: 17px 32px;
    }

    /* .services {
        padding: 3rem 0;
    } */

    .services-title {
        font-size: 2rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .services-wrapper {
        height: auto;
        position: static;
    }

    /* Final section styles moved to max-width: 1023px media query */

    /* 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);
    }




    /* 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: 392px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .mobile-footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .mobile-contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-contact-label {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.4500001271565754em;
        color: #8DD8FF;
        margin-bottom: 4px;
    }

    .mobile-contact-value {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.4500000817435128em;
        color: #FFFFFF;
        text-decoration: none;
        text-align: center;
    }

    .mobile-contact-value:hover {
        color: #8DD8FF;
    }

    .mobile-footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .mobile-social-icons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        justify-content: center;
    }

    .mobile-social-icon {
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .mobile-copyright {
        text-align: center;
        color: #8DD8FF;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.4500001271565754em;
    }

    .mobile-copyright span {
        color: #8DD8FF;
    }

    /* You Relax section mobile layout (match Figma) */
    .you-relax-section {
        width: 100%;
        height: auto;
        margin: 24px auto 40px auto;
        flex-direction: column;
        padding: 0;
    }

    .relax-bg-image {
        position: static;
        flex: none;
        width: 100%;
        height: 220px;
        border-radius: 24px;
        order: 1;
        margin-left: 0;
        min-width: auto;
        max-width: 100%;
    }

    .relax-glass-container {
        position: static;
        flex: none;
        width: 100%;
        height: auto;
        padding: 20px;
        margin-top: 12px;
        order: 2;
        min-width: auto;
        max-width: 100%;
    }


    .relax-title {
        width: auto;
        font-size: 28px;
        line-height: 1.3;
    }

    .relax-description {
        width: auto;
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 20px;
    }

    .relax-tag {
        margin-bottom: 12px;
    }

    .relax-tag span {
        font-size: 12px;
        padding: 14px 12px;
        height: auto;
    }

    .relax-buttons {
        max-width: 100%;
        width: 100%;
        margin-top: 16px;
    }

    .relax-btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 14px;
    }

    .you-relax-section::before {
        display: none;
    }
}

/* Tablet Styles - You Relax Section (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    /* You Relax section mobile layout for tablet */
    .you-relax-section {
        width: 100%;
        height: auto;
        margin: 24px auto 40px auto;
        flex-direction: column;
        padding: 0;
    }

    .relax-bg-image {
        position: static;
        flex: none;
        width: 100%;
        height: 220px;
        border-radius: 24px;
        order: 1;
        margin-left: 0;
        min-width: auto;
        max-width: 100%;
    }

    .relax-glass-container {
        position: static;
        flex: none;
        width: 100%;
        height: auto;
        padding: 20px;
        margin-top: 12px;
        order: 2;
        min-width: auto;
        max-width: 100%;
    }

    .relax-title {
        width: auto;
        font-size: 28px;
        line-height: 1.3;
    }

    .relax-description {
        width: auto;
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 20px;
    }

    .relax-tag {
        margin-bottom: 12px;
    }

    .relax-tag span {
        font-size: 12px;
        padding: 14px 12px;
        height: auto;
    }

    .relax-buttons {
        max-width: 100%;
        width: 100%;
        margin-top: 16px;
    }

    .relax-btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 14px;
    }

    .you-relax-section::before {
        display: none;
    }
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --section-spacing: 5rem;
    }

    /* Hero Text Section - Tablet */
    .hero-text-heading {
        font-size: 2.5rem;
    }

    .hero-text-subtitle {
        font-size: 1.125rem;
    }

    /* Yacht Form Section - Tablet */
    .yacht-form-container {
        width: 100%;
        max-width: 1224px;
        height: auto;
        min-height: 448px;
        flex-direction: row;
        padding: 40px;
    }

    .yacht-form-left-content {
        flex: 0 0 40%;
        width: 40%;
        max-width: 40%;
        margin-right: 40px;
    }

    .yacht-form-title {
        font-size: 32px;
        width: 100%;
        height: auto;
    }

    .yacht-form-subtitle {
        width: 100%;
        height: auto;
    }

    .yacht-form-right-content {
        flex: 1 1 55%;
        width: 55%;
        max-width: 55%;
    }

    .yacht-form-tabs {
        margin-bottom: 24px;
    }

    .yacht-form-content {
        width: 100%;
    }

    .form-fields-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .form-field {
        width: 100%;
    }

    .form-field-phone {
        width: 100%;
    }

    .yacht-form-actions {
        position: static;
        width: 100%;
        justify-content: flex-end;
    }

    .form-btn {
        min-width: 120px;
        width: auto;
        padding: 17px 32px;
    }

    /* Partner Section - Tablet */
    .partner-container {
        flex-direction: row;
        align-items: center;
    }

    .partner-glass-card {
        flex: 1;
        padding: 48px 40px;
    }

    .partner-bg-image {
        flex: 1;
        height: 400px;
    }

    .partner-buttons {
        flex-direction: row;
        gap: 16px;
    }

    /* Contact section mobile styles apply up to 1023px - no tablet overrides needed */

    .welcome-text {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-actions {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
    }

    .services-container {
        padding: 0 2rem;
    }

    .services-cards {
        gap: 32px;
    }

}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .nav-brand-card {
        border: none;
        border-image: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    /* Contact Section - Desktop */
    .contact-section {
        padding: 80px var(--container-padding);
    }

    .contact-container {
        max-width: 1224px;
        width: 100%;
        height: 375px;
        margin: 0 auto;
        padding: 0;
        position: relative;
        background: transparent;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 32px;
        border: 1px solid transparent;
        box-sizing: border-box;
    }

    .contact-container::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 32px;
        padding: 1px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
        z-index: 1;
    }

    .contact-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 84px 104px;
        height: 100%;
        box-sizing: border-box;
    }

    .contact-header {
        flex: 0 0 301px;
        margin-bottom: 0;
    }

    .contact-title {
        font-size: 40px;
        width: 301px;
        height: 58px;
        margin-bottom: 16px;
    }

    .contact-subtitle {
        font-family: var(--font-heading);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.7em;
        width: 371px;
        height: 108px;
    }

    .contact-cards {
        flex: 0 0 292px;
        width: 292px;
    }

    .contact-ellipse-1 {
        top: 168px;
        left: -34px;
        width: 323.6px;
        height: 289.06px;
    }

    .contact-ellipse-2 {
        display: none;
    }

    .yacht-form-container {
        width: 100%;
        max-width: 1224px;
        min-height: 448px;
        padding: 70px 104px;
        gap: 30px;
    }

    .yacht-form-left-content {
        flex: 0 0 386px;
        width: 386px;
        max-width: 386px;
    }

    .yacht-form-right-content {
        flex: 0 0 600px;
        width: 600px;
        max-width: 600px;
    }

    .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;
    }


    .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;
    }

    /* Final Section (One App) - Desktop */
    .final-section {
        width: 1224px;
        max-width: 100%;
        height: 500px;
        margin: 120px auto;
    }

    .final-glass-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 1224px;
        max-width: 100%;
        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;
    }

    .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;
    }

}

/* 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;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 1);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}