:root {
    --bg-dark: #0f0c20;
    --primary: #0097b2;
    --primary-light: #00bcd4;
    --accent: #ff007f;
    --text-main: #ffffff;
    --text-muted: #b3a6c9;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #090614 0%, var(--bg-dark) 40%, #1a0b2e 100%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
}

/* Bubbles Container */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.bubble-1 {
    width: 400px;
    height: 400px;
    background: rgba(138, 43, 226, 0.3);
    top: -10%;
    left: -10%;
}

.bubble-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 127, 0.15);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.bubble-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.2);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

.bubble-4 {
    width: 600px;
    height: 600px;
    background: rgba(176, 91, 255, 0.2);
    top: 10%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Navbar Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(15, 12, 32, 0.7);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo svg {
    color: var(--primary-light);
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s var(--ease-smooth);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

/* Background Animated Canvas Area via wrapper */
.hero-canvas-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transform: scale(1.05);
    /* Slight scale for parallax */
    transition: transform 0.1s ease-out;
}

/* Overlay gradient for text readability and glassmorphism effect */
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(15, 12, 32, 0.8) 45%, rgba(15, 12, 32, 0) 100%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    width: 100%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 5% 40px;
    z-index: 2;
}

.hero-left {
    width: 60%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
}

.hero-right {
    width: 40%;
}

.subtitle {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 18px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.headline {
    font-size: clamp(3rem, 5vw + 1rem, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    background: linear-gradient(to right, #ffffff, #d8c8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 520px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 24px;
    margin-bottom: 64px;
}

/* Moving Border Animation Styles */
.moving-border-btn {
    position: relative;
    padding: 1px;
    background: transparent;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-decoration: none;
}

.moving-border-btn .border-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.moving-border-btn svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.moving-border-btn rect {
    fill: none;
    stroke: transparent;
    stroke-width: 2;
    width: 100%;
    height: 100%;
}

.moving-border-dot {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(var(--primary-light) 0%, transparent 70%);
    opacity: 0.8;
    filter: blur(8px);
    border-radius: 50%;
    pointer-events: none;
    offset-path: border-box; /* Modern way to follow path if supported */
    z-index: -1;
    /* Manual animation via JS for better control like the React version */
}

.moving-border-btn .btn-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.moving-border-btn:hover .btn-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s var(--ease-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: auto;
}

.stars {
    color: #ffb800;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(255, 184, 0, 0.3);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.review-text strong {
    color: var(--text-main);
    font-weight: 600;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.avatars .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    margin-left: -14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.avatars .avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.avatars .avatar:first-child {
    margin-left: 0;
}

/* Animations Setup */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpAnim 0.8s var(--ease-smooth) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes slideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Section Styles */
.section {
    padding: 60px 5%;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

/* Journey Section */
.journey-section {
    padding-top: 30px;
    padding-bottom: 60px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 40px;
}

.journey-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
}

.journey-card.card-image {
    padding: 0;
}

.journey-card.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-card.span-2 {
    grid-column: span 2;
}

.card-green {
    background-color: #b4f4c7;
    color: #1a1a1a;
}

.card-pink {
    background-color: #f8d4e4;
    color: #1a1a1a;
    justify-content: center;
}

.card-purple {
    background-color: #dcd4f8;
    color: #1a1a1a;
}

.journey-card .card-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.8;
}

.journey-card .card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.card-pink .card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-pink .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .journey-card.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Solutions Section */
.solutions-section {
    padding-top: 30px;
    padding-bottom: 60px;
}

.solutions-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.solutions-slider {
    overflow: hidden;
}

.solutions-track {
    display: flex;
    gap: 24px;
    padding: 0 8px;
    transition: transform 0.7s var(--ease-smooth);
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .solution-card {
        flex: 0 0 calc((100% - 2 * 24px) / 3);
    }
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-light);
}

.solution-image {
    height: 280px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.solution-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.solution-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.solution-card.highlighted {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.04);
}

.solutions-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.solutions-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s var(--ease-smooth);
}

.solutions-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.solutions-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.solutions-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.solutions-dot.active {
    width: 18px;
    background: var(--primary-light);
}

.section-container {
    width: 100%;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #d8c8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card-wrapper {
    perspective: 1000px; /* Individual perspective per card for better centering */
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    transition: transform 0.2s ease-out, border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d; /* Enable 3D for children */
    height: 100%; /* Ensure wrapper height is filled */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    transform: translateZ(20px); /* Slightly lift the highlight */
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(176, 91, 255, 0.05));
    border: 1px solid rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-light);
    transition: transform 0.2s ease-out;
    transform: translateZ(50px); /* Significant lift */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    transition: transform 0.2s ease-out;
    transform: translateZ(40px); /* Medium lift */
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    transition: transform 0.2s ease-out;
    transform: translateZ(30px); /* Subtle lift */
}

/* FAQ Styles */
.faq-content {
    padding: 160px 5% 120px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 24px 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    font-family: inherit;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Large enough for content */
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.features-list {
    list-style: none;
    margin-top: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.glass-card-large {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 12, 32, 0.6), rgba(15, 12, 32, 0.4)), url('https://i.pinimg.com/1200x/8c/ff/55/8cff5541968c473b9b72da8ff7ff20df.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.blur-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: blobBounce 10s infinite alternate;
}

.blur-blob-2 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
}

.floating-stat {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(15, 12, 32, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: floatVertical 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-stat-2 {
    top: auto;
    bottom: 40px;
    left: auto;
    right: 40px;
    animation-delay: -3s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes blobBounce {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(30px, -30px);
    }
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 0 8px;
    transition: transform 0.7s var(--ease-smooth);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    flex: 0 0 100%;
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 2 * 24px) / 3);
    }
}

.review-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-muted);
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.client-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonials-nav {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth), border-color 0.2s ease;
}

.testimonial-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s var(--ease-smooth), width 0.2s var(--ease-smooth);
}

.testimonial-dot.active {
    width: 18px;
    background: var(--primary-light);
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-box h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 24px;
}

.cta-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 5% 40px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 24px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--text-main);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth), background 0.2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.whatsapp-float img.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active .modal-overlay {
    opacity: 1;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2001;
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.1);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.form-group textarea {
    resize: none;
}

.btn-primary.full-width {
    width: 100%;
    cursor: pointer;
}

@media (max-width: 640px) {
    .modal-container {
        padding: 32px 24px;
    }
    
    .booking-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
}

/* Scroll Animation Helper */
.slide-up-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.slide-up-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-canvas-wrapper {
        width: 100%;
    }

    .hero-left {
        width: 65%;
    }

    .nav-links {
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-action {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 140px;
    }

    .hero-canvas-wrapper {
        width: 100%;
        opacity: 0.8;
    }

    .glass-overlay {
        background: linear-gradient(to top, var(--bg-dark) 0%, rgba(15, 12, 32, 0.8) 60%, rgba(15, 12, 32, 0.2) 100%);
    }

    .hero-left {
        width: 100%;
        padding-right: 0;
        align-items: center;
    }

    .headline {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }

    .subtitle {
        margin-bottom: 20px;
    }

    .description {
        margin: 0 auto 30px;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .review-section {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .glass-card-large {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-top: 140px;
    }

    .section {
        padding: 80px 5%;
    }
}
