/**
 * Yachts Hub Partner Landing Page - Mobile First CSS
 * 
 * Breakpoints:
 * - Mobile: 0 - 767px (default)
 * - Tablet: 768px - 1023px
 * - Desktop: 1024px+
 * - Large Desktop: 1440px+
 */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    background-color: #021429;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

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

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

ul {
    list-style: none;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-dark: #021429;
    --primary-blue: #001D3F;
    --accent-blue: #1E90FF;
    --accent-cyan: #18E5EB;
    --white: #FFFFFF;
    --text-muted: #AAB8C2;
    --text-interactive: #8DD8FF;
    --border-color: #2E4A6A;
    --whatsapp-green: #25D366;
    --light-gray: #AAB8C2;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Gradients */
    --gradient-primary: linear-gradient(230deg, rgba(255, 255, 255, 1) 0%, rgba(118, 187, 255, 1) 100%);
    --gradient-background: linear-gradient(180deg, rgba(2, 20, 41, 1) 0%, rgba(0, 29, 63, 1) 100%);
    --gradient-card-stroke: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 4%);
    --gradient-overlay: linear-gradient(180deg, rgba(2, 20, 41, 0) 0%, rgba(2, 20, 41, 1) 100%);

    /* Spacing */
    --container-padding: 24px;
    --section-padding: 60px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

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

.desktop-only {
    display: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: relative;
    z-index: var(--z-navbar);
    padding: 30px 0 0;
    opacity: 1;
    transform: translateY(0);
    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;
}

@media (max-width: 1023px) {
    .nav-container {
        padding: 0 24px;
    }
}

.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: 12px 0 0 18px;
    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: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 11.254996299743652px;
    line-height: 1.4500001228634574em;
    letter-spacing: 0.6249999867604032%;
    color: var(--white);
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    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: 'Montserrat', sans-serif;
    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(--accent-blue);
    color: var(--white);
}

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

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

.nav-btn-login: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;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    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);
}

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

.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: 'Open Sans', sans-serif;
    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: 'Montserrat', sans-serif;
    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: 'Montserrat', sans-serif;
    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: 'Montserrat', sans-serif;
    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: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.45;
    color: #8DD8FF;
    text-align: left;
    margin: 0;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== HERO SECTION ===== */
.partner-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 640px;
    padding: 72px var(--container-padding) 56px;
    text-align: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

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

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-background);
}

.hero-wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 646'%3E%3Cpath fill='%23022248' fill-opacity='0.3' d='M0,320L48,330C96,340,192,360,288,340C384,320,480,260,576,250C672,240,768,280,864,300C960,320,1056,320,1152,290C1248,260,1344,200,1392,170L1440,140L1440,646L0,646Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.6;
}

/* Bottom gradient overlay - creates seamless transition to next section */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    min-height: 500px;
    background: linear-gradient(180deg,
            rgba(2, 20, 41, 0) 0%,
            rgba(2, 20, 41, 0) 20%,
            rgba(2, 20, 41, 0.15) 40%,
            rgba(2, 20, 41, 0.4) 60%,
            rgba(2, 20, 41, 0.7) 80%,
            rgba(2, 20, 41, 0.9) 92%,
            rgba(2, 20, 41, 1) 100%);
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: normal;
}

/* Extended bottom gradient for smooth transition - ensures perfect alignment with next section */
.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-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

.hero-yacht-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}


.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.35;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding: 17px 32px;
    background: var(--gradient-primary);
    color: #0B2545;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-sizing: border-box;
}

.hero-visual {
    margin-top: 32px;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 1;
}

/* Glow ellipses behind mobile image - mobile */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.6) 0%, rgba(30, 144, 255, 0.35) 25%, rgba(30, 144, 255, 0.2) 40%, rgba(30, 144, 255, 0.1) 55%, transparent 75%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    animation: floatGlow1 8s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(24, 229, 235, 0.55) 0%, rgba(24, 229, 235, 0.3) 25%, rgba(24, 229, 235, 0.18) 40%, rgba(24, 229, 235, 0.1) 55%, transparent 75%);
    border-radius: 50%;
    filter: blur(45px);
    z-index: -1;
    pointer-events: none;
    animation: floatGlow2 10s ease-in-out infinite reverse;
}

.hero-visual-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

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

/* ===== WHY JOIN SECTION ===== */
.why-join-section {
    padding: 48px 0 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px;
    width: 168px;
    height: 148px;
    background: rgba(0, 29, 63, 0.5);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    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;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-transform: capitalize;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding) 0;
    position: relative;
    overflow-x: hidden;
}

.desktop-services {
    display: block;
}

.mobile-services {
    display: none;
}

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

.services-container {
    max-width: 1336px;
    width: 100%;
    margin: 0 auto;
    padding: 0 108px;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .services-container {
        padding: 0 var(--container-padding);
    }
}

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

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

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

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

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

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

/* 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(--accent-blue);
    width: 40px;
}

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

/* ===== MOBILE SERVICES ===== */
@media (max-width: 767px) {

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

    .mobile-services {
        display: block;
    }

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

    .services-title {
        font-size: 24px;
        width: 100%;
        margin-bottom: 24px;
    }

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

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px 0 24px;
    background: rgba(0, 29, 63, 0.5);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    overflow: hidden;
    position: relative;
    max-height: 1500px;
}

/* Ensure images are below content on mobile */
.service-detail-content {
    order: 1;
}

.service-mockup {
    order: 2;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    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;
}

.detail-ellipse {
    position: absolute;
    width: 220px;
    height: 340px;
    background: var(--accent-blue);
    filter: blur(200px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.service-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    max-height: 300px;
    position: relative;
}

.mockup-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: top;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.45;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-detail-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
}

.service-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ===== BUSINESS GROWTH SECTION ===== */
.business-growth-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.growth-ellipse-1,
.growth-ellipse-2 {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-blue);
    filter: blur(200px);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.growth-ellipse-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
}

.growth-ellipse-2 {
    width: 250px;
    height: 280px;
    top: 20%;
    right: 10%;
    background: var(--accent-cyan);
}

.growth-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
    background: rgba(0, 29, 63, 0.5);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
}

/* Ensure images are below content on mobile */
.growth-content {
    order: 1;
}

.growth-image {
    order: 2;
}

.growth-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    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;
}

.growth-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.growth-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.45;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.growth-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
}

.growth-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 17px 32px;
    background: var(--gradient-primary);
    color: #0B2545;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.growth-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.growth-image {
    display: flex;
    justify-content: center;
}

.dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.contact-ellipse {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-blue);
    filter: blur(200px);
    opacity: 0.7;
    z-index: -1;
}

.contact-ellipse-1 {
    width: 300px;
    height: 250px;
    left: -10%;
    top: 0;
}

.contact-ellipse-2 {
    width: 200px;
    height: 200px;
    right: -10%;
    bottom: 0;
}

.contact-container {
    padding: 32px 24px;
    background: var(--primary-blue);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    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: 32px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.45;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.contact-icon {
    width: 26px;
    height: 26px;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-interactive);
}

.contact-card-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

/* ===== DOWNLOAD SECTION ===== */

/* ===== FOOTER ===== */
.partner-footer {
    display: none;
    padding: 60px var(--container-padding) 32px;
    background: var(--gradient-background);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-left-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-group {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 76px;
    width: auto;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-interactive);
}

.footer-app-badges {
    display: flex;
    gap: 16px;
}

.footer-badge-link {
    display: block;
    transition: transform var(--transition-normal);
}

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

.footer-badge-img {
    height: 40px;
    width: auto;
}

.footer-center-section {
    display: flex;
    gap: 48px;
}

.footer-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-interactive);
    margin-bottom: 16px;
}

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

.footer-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-interactive);
}

.footer-link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-right-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-email,
.footer-contact-location,
.footer-contact-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform var(--transition-normal);
}

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

.footer-social-icon img {
    width: 16px;
    height: 16px;
}

/* Mobile Footer */
.mobile-footer {
    display: block;
    padding: 32px var(--container-padding);
    background: var(--gradient-background);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 392px;
    margin: 0 auto;
}

/* Contact Info Section */
.mobile-footer-contact-info,
.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;
    gap: 0;
}

.mobile-contact-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-interactive);
    text-align: center;
    margin-bottom: 4px;
}

.mobile-contact-value {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--white);
    text-align: center;
    text-decoration: none;
}

.mobile-contact-value:hover {
    opacity: 0.8;
}

/* Social Icons and Copyright Section */
.mobile-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 218px;
}

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

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
    width: 16px;
    height: 16px;
}

.mobile-social-icon:hover {
    transform: scale(1.2);
}

.mobile-social-icon img {
    width: 16px;
    height: 16px;
}

.mobile-copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-interactive);
    text-align: center;
    width: 100%;
}

/* ===== 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: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes floatGlow1 {

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

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes floatGlow2 {

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.animate-in {
    animation: fadeIn 0.8s ease forwards;
}

/* ===== MOBILE BREAKPOINT (max-width: 767px) ===== */
@media (max-width: 767px) {
    .nav-container {
        padding: 0 24px;
    }

    .nav-brand-card {
        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;
    }

    .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: 'Open Sans', sans-serif;
        font-weight: 300;
        font-size: 11.254996299743652px;
        line-height: 1.4500001228634574em;
        letter-spacing: 0.6249999867604032%;
        color: var(--white);
    }

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

/* ===== TABLET BREAKPOINT (768px+) ===== */
@media (min-width: 768px) {
    :root {
        --container-padding: 40px;
        --section-padding: 80px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: none;
    }

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

    .nav-brand-card {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    /* Hero */
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .hero-bg-image {
        right: -10%;
        width: 70%;
        opacity: 0.6;
    }

    /* Why Join */
    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
        height: 200px;
        width: auto;
        min-width: 200px;
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 20px;
    }

    /* Services Section */
    .services-navigation {
        display: flex;
    }

    .desktop-only {
        display: flex;
    }

    .services-cards {
        flex-direction: row;
        gap: 56px;
    }

    .service-card {
        width: 392px;
        max-width: 392px;
    }

    .services-pagination {
        position: absolute;
        transform: translateX(-50%);
        margin-top: 0;
    }

    /* Service Details */
    .service-detail-card {
        flex-direction: row;
        align-items: center;
        padding: 48px;
        max-height: none;
    }

    .service-mockup {
        max-height: none;
        align-items: center;
    }

    /* Reset order on desktop - let flex-direction handle it */
    .service-detail-content,
    .service-mockup {
        order: unset;
    }

    .service-detail-reverse {
        flex-direction: row-reverse;
    }

    /* Yacht Charter - Image on right, content on left */
    .yacht-charter-detail .service-detail-card {
        flex-direction: row-reverse;
    }

    .service-mockup {
        flex: 0 0 40%;
    }

    .mockup-image {
        max-width: 350px;
    }

    .service-detail-content {
        flex: 1;
    }

    .service-detail-title {
        font-size: 36px;
    }

    .benefit-text {
        font-size: 20px;
    }

    /* Growth Section */
    .growth-card {
        flex-direction: row;
        align-items: center;
        padding: 48px;
    }

    /* Reset order on desktop - let flex-direction handle it */
    .growth-content,
    .growth-image {
        order: unset;
    }

    .growth-content {
        flex: 1;
    }

    .growth-image {
        flex: 0 0 45%;
    }

    .growth-title {
        font-size: 36px;
    }

    /* Contact */
    .contact-container {
        padding: 48px;
    }

    .contact-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact-header {
        flex: 0 0 40%;
    }

    .contact-cards {
        flex: 0 0 50%;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    /* Download */
    /* Footer */
    .mobile-footer {
        display: none;
    }

    .partner-footer {
        display: block;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-left-section {
        flex: 0 0 30%;
    }

    .footer-center-section {
        flex: 0 0 30%;
    }

    .footer-right-section {
        flex: 0 0 30%;
    }
}

/* ===== DESKTOP BREAKPOINT (1024px+) ===== */
@media (min-width: 1024px) {
    :root {
        --container-padding: 60px;
    }

    .desktop-only {
        display: block;
    }

    /* Hero */
    .partner-hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 72px calc(var(--container-padding) + 60px) 56px;
        gap: 60px;
    }

    .hero-content {
        max-width: 600px;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual {
        margin-top: 0;
        flex: 0 0 auto;
        max-width: 500px;
        width: auto;
        position: relative;
        z-index: 1;
    }

    /* Glow ellipses behind mobile image on desktop */
    .hero-visual::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(30, 144, 255, 0.5) 0%, rgba(30, 144, 255, 0.3) 30%, rgba(30, 144, 255, 0.15) 50%, transparent 75%);
        border-radius: 50%;
        filter: blur(60px);
        z-index: -1;
        pointer-events: none;
        animation: floatGlow1 8s ease-in-out infinite;
    }

    .hero-visual::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -10%;
        transform: translateY(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(24, 229, 235, 0.45) 0%, rgba(24, 229, 235, 0.25) 30%, rgba(24, 229, 235, 0.12) 50%, transparent 75%);
        border-radius: 50%;
        filter: blur(70px);
        z-index: -1;
        pointer-events: none;
        animation: floatGlow2 10s ease-in-out infinite reverse;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-bg-image {
        right: 0;
        width: 60%;
        opacity: 0.8;
    }

    /* Services Section */
    .services-cards {
        flex-direction: row;
        gap: 56px;
    }

    .service-card {
        width: 392px;
        max-width: 392px;
    }

    .services-pagination {
        position: absolute;
        transform: translateX(-50%);
        margin-top: 0;
    }

    /* Service Details */
    .service-detail-card {
        padding: 64px 80px;
        gap: 64px;
    }

    .mockup-image {
        max-width: 410px;
    }

    .service-detail-title {
        font-size: 40px;
    }

    .service-detail-description {
        font-size: 18px;
    }

    .benefit-text {
        font-size: 24px;
    }

    /* Growth Section */
    .growth-card {
        padding: 64px 80px;
        gap: 64px;
    }

    .growth-title {
        font-size: 40px;
    }

    /* Contact */
    .contact-container {
        padding: 64px 80px;
    }

    .contact-title {
        font-size: 40px;
    }

    /* Feature Cards - Desktop */
    .feature-card {
        height: 220px;
        padding: 40px 32px;
        min-width: 220px;
    }

    .feature-icon-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }
}

/* ===== LARGE DESKTOP BREAKPOINT (1440px+) ===== */
@media (min-width: 1440px) {
    :root {
        --container-padding: 108px;
    }

    .nav-container {
        max-width: 1224px;
    }

    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 40px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .feature-card,
    .service-card,
    .service-detail-card,
    .growth-card,
    .contact-container {
        border: 2px solid var(--white);
    }
}