* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0, 184, 212, 0.2);
    box-shadow: 0 4px 24px rgba(0, 184, 212, 0.1);
}

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

.logo {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #22d3ee;
    transform: scale(1.1);
}

.btn-primary {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.5);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.6);
    color: #fff;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem;
}

.grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(0, 184, 212, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 184, 212, 0.15) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: grid-flow 20s linear infinite;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.3);
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.3);
    animation: float-delayed 7s ease-in-out infinite;
}

.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(250, 204, 21, 0.2);
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fade-in-up 1s ease-out forwards;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 9999px;
    color: #67e8f9;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.title-line-1 {
    display: block;
    color: #fff;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.title-line-2 {
    display: block;
    background: linear-gradient(to right, #22d3ee, #60a5fa, #fbbf24);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.highlight {
    font-weight: 700;
    color: #22d3ee;
}

.gradient-text {
    background: linear-gradient(to right, #22d3ee, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 0.8s ease-out forwards;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(34, 211, 238, 0.4);
    transform: scale(1.1) translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.25);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.stat-unit {
    font-size: 1.875rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-gradient {
    position: relative;
    background: linear-gradient(to right, #06b6d4, #3b82f6, #06b6d4);
    background-size: 200% auto;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.5);
    overflow: hidden;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #22d3ee, #60a5fa, #22d3ee);
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.7);
}

.btn-outline {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(34, 211, 238, 0.5);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-slow 2s ease-in-out infinite;
}

.scroll-dot {
    width: 2rem;
    height: 3rem;
    border: 3px solid rgba(34, 211, 238, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot::after {
    content: '';
    width: 0.375rem;
    height: 0.75rem;
    background: linear-gradient(to bottom, #22d3ee, transparent);
    border-radius: 9999px;
    animation: scroll-dot 2s ease-in-out infinite;
}

/* Features Section */
.features-section {
    padding: 8rem 1.5rem;
    position: relative;
}

.section-title {
    font-size: clamp(3.75rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 5rem;
    text-align: center;
}

.title-gray {
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-gradient {
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.billboard-img-wrapper {
    aspect-ratio: 16/9;
    border: 2px solid rgba(34, 211, 238, 0.4);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.billboard-img-wrapper:hover {
    border-color: #22d3ee;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.billboard-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.billboard-img-wrapper:hover img {
    transform: scale(1.1);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.feature-item:hover .feature-text h3 {
    color: #22d3ee;
}

.feature-text p {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Video Section */
.video-section {
    padding: 8rem 1.5rem;
    background: #000;
    position: relative;
    overflow: hidden;
}

.title-gradient-full {
    background: linear-gradient(to right, #22d3ee, #60a5fa, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.5s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    border-color: rgba(34, 211, 238, 0.6);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #22d3ee;
    transition: color 0.3s;
}

.video-card:hover .video-title {
    color: #67e8f9;
}

/* Technology Section */
.technology-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, #000, rgba(17, 24, 39, 0.5), #000);
    position: relative;
    overflow: hidden;
}

.tech-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.tech-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(150px);
    animation: pulse-slow 4s ease-in-out infinite;
}

.tech-orb-1 {
    top: 0;
    left: 25%;
    background: #06b6d4;
}

.tech-orb-2 {
    bottom: 0;
    right: 25%;
    background: #3b82f6;
    animation-delay: 2s;
}

.tech-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tech-card:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(34, 211, 238, 0.4);
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.tech-icon {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
}

.tech-card:hover .tech-icon {
    transform: scale(1.25) rotate(12deg);
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.tech-card:hover h3 {
    color: #22d3ee;
}

.tech-card p {
    color: #9ca3af;
    line-height: 1.75;
}

/* Success Section */
.success-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
}

.success-background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.success-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    filter: blur(200px);
    animation: pulse-slow 4s ease-in-out infinite;
}

.success-badge {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.3));
    border: 1px solid rgba(34, 211, 238, 0.5);
    border-radius: 9999px;
    color: #67e8f9;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.section-title-center {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
}

.success-description {
    font-size: clamp(1.25rem, 2vw, 2rem);
    color: #d1d5db;
    margin-bottom: 4rem;
    line-height: 1.75;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.highlight-cyan {
    color: #22d3ee;
    font-weight: 700;
}

.success-stats {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .success-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.success-stat {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-stat:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(34, 211, 238, 0.6);
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-value {
    font-size: 3.75rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.success-label {
    color: #9ca3af;
    font-weight: 500;
}

/* Location Section */
.location-section {
    padding: 8rem 1.5rem;
    background: rgba(17, 24, 39, 0.5);
}

.location-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s;
}

.location-item:hover {
    transform: translateX(12px);
}

.location-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 2px solid rgba(34, 211, 238, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.location-item:hover .location-icon {
    transform: scale(1.1);
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.location-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s;
}

.location-item:hover .location-text h3 {
    color: #22d3ee;
}

.location-text p {
    color: #9ca3af;
    font-size: 1.125rem;
}

.location-map {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.location-map:hover {
    border-color: rgba(34, 211, 238, 0.6);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.map-placeholder {
    text-align: center;
}

.map-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: pulse-slow 4s ease-in-out infinite;
}

.map-placeholder p {
    color: #d1d5db;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Google Map Styles */
.google-map {
    width: 100%;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Ensure map container has proper dimensions */
#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Override default Google Maps styles for dark theme */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, #1a1a1a 50%, rgba(26, 26, 26, 0) 51%, rgba(26, 26, 26, 0) 100%);
    box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.4);
}

/* Style map controls */
.gm-style button {
    background-color: rgba(26, 26, 26, 0.9) !important;
    border: 1px solid rgba(34, 211, 238, 0.3) !important;
}

.gm-style button:hover {
    background-color: rgba(34, 211, 238, 0.2) !important;
    border-color: rgba(34, 211, 238, 0.6) !important;
}

/* Responsive map height */
@media (max-width: 768px) {
    .google-map,
    #map {
        height: 350px;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .google-map,
    #map {
        height: 300px;
        min-height: 300px;
    }
}

.map-coming-soon {
    color: #22d3ee !important;
    font-size: 0.875rem !important;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.5), #000);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.contact-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    filter: blur(200px);
    animation: pulse-slow 4s ease-in-out infinite;
}

.contact-title {
    position: relative;
    z-index: 10;
}

.contact-description {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 4rem;
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.btn-gradient-large {
    position: relative;
    background: linear-gradient(to right, #06b6d4, #3b82f6, #06b6d4);
    background-size: 200% auto;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.5);
    overflow: hidden;
}

.btn-gradient-large:hover {
    background: linear-gradient(to right, #22d3ee, #60a5fa, #22d3ee);
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.7);
}

.btn-outline-large {
    padding: 1.5rem 3rem;
    border: 2px solid rgba(34, 211, 238, 0.5);
    background: transparent;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-large:hover {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
    color: #fff;
}

.contact-cards {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.6);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.contact-icon {
    font-size: 3rem;
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.25);
}

.contact-label {
    color: #22d3ee;
    font-weight: 700;
    font-size: 1.125rem;
}

.contact-value {
    color: #d1d5db;
    font-size: 1.25rem;
    font-weight: 600;
}

.office-card {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.office-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.office-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #22d3ee;
}

.office-card p {
    color: #d1d5db;
    line-height: 1.75;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 4rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #22d3ee;
}

.footer-col a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #22d3ee;
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #22d3ee;
    transform: scale(1.25);
}

/* Animations */
@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(30px) scale(1.05);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 184, 212, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 184, 212, 0.6);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

@keyframes scroll-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes grid-flow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(60px);
    }
}

/* ========== BOOKING MODAL STYLES ========== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(34, 211, 238, 0.3);
    border-radius: 1.5rem;
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(34, 211, 238, 0.3);
    animation: slideUp 0.4s ease;
}

.modal-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #22d3ee;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-input {
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 0.75rem;
    color: #167ac6;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.form-input::placeholder {
    color: #6b7280;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #d1d5db;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #22d3ee;
}

.checkbox-label a {
    color: #22d3ee;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #67e8f9;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-secondary {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid rgba(156, 163, 175, 0.5);
    border-radius: 9999px;
    color: #9ca3af;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background: rgba(156, 163, 175, 0.1);
    color: #d1d5db;
}

.btn-primary-submit {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    border: none;
    border-radius: 9999px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.btn-primary-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.5);
}

.btn-primary-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: scale(1);
}

.form-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message {
    color: #10b981;
}

.error-message {
    color: #ef4444;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon {
    color: #10b981;
}

.error-icon {
    color: #ef4444;
}

.form-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form-message p {
    color: #d1d5db;
    line-height: 1.75;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive modal adjustments */
@media (max-width: 640px) {
    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-secondary,
    .btn-primary-submit {
        width: 100%;
        text-align: center;
    }
}

/* ──────────────────────────────────────────────── */
/* Dropdown under Home button - only on hover       */
/* ──────────────────────────────────────────────── */

.nav-home-dropdown {
    position: relative;
    display: inline-block;
}

.nav-home-link {
    /* Optional: make sure it looks like your other button */
    cursor: default;   /* or pointer if you want */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;             /* right below the button */
    right: 0;              /* align to right edge of Home button */
    min-width: 160px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 6px;
    overflow: hidden;
    z-index: 10;
    margin-top: 8px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background-color 0.15s;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

/* Show dropdown on hover */
.nav-home-dropdown:hover .dropdown-content {
    display: block;
}

/* Optional: little arrow/triangle on top */
.nav-home-dropdown::after {
    content: "";
    position: absolute;
    top: calc(100% + 2px);
    right: 18px;
    display: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    z-index: 11;
}

.nav-home-dropdown:hover::after {
    display: block;
}
