/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #CBD5E1;
    --accent-cyan: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
}

.text-cyan {
    color: var(--accent-cyan) !important;
}

.bg-cyan {
    background-color: var(--accent-cyan) !important;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-logo {
    max-height: 80px;
    width: auto;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Hero Video Background */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 50%);
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Glow Effect Background */
.glow-bg {
    position: absolute;
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.glow-top-left {
    top: -200px;
    left: -200px;
}

.glow-bottom-right {
    bottom: -200px;
    right: -200px;
}

.hero-pre-headline {
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.check-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--accent-cyan);
    margin-right: 10px;
    font-size: 1.2rem;
}

.trust-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: inline-block;
}

/* Form Card */
.hero-form-card {
    background: rgba(20, 20, 20, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(to bottom right, var(--border-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.1);
    color: #fff;
}

.btn-submit {
    background: var(--accent-cyan);
    border: none;
    color: #000;
    font-weight: 700;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--accent-glow);
    color: #000;
}

.micro-copy {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
    color: var(--accent-cyan);
}

/* Sections General */
.section-padding {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title span {
    color: var(--accent-cyan);
}

/* Comparison Section */
.comparison-card {
    padding: 2rem;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    border-radius: 25px;
}



.comparison-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    background: linear-gradient(to top, rgba(0, 242, 255, 0.05), transparent);
}

.loc-bullet {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.loc-icon {
    color: var(--accent-cyan);
    margin-right: 15px;
    margin-top: 5px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: #050505;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .comparison-card {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
    }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 2rem 0;
    background: white;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem 1rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.video-label i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 0 4rem;
    }

    .form-card {
        margin-top: 3rem;
    }

    .section-headline {
        font-size: 2rem;
    }
}

/* Footer Video Background */
footer {
    position: relative;
    overflow: hidden;
}

.footer-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio based on width */
    min-height: 100%;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio based on height */
    pointer-events: none;
}

.footer-video-bg iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

/* Client Voices */
.client-voices-section {
    background-color: #000;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.client-name {
    font-weight: 700;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    min-height: 500px;
    position: relative;
    background: #000;
    /* Fallback */
}

.cta-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cta-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100%;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.btn-cta-primary {
    background-color: var(--accent-cyan);
    color: #000;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
}

.btn-cta-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* Modal Styling */
.modal-content {
    background-color: #0d0d0d;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 242, 255, 0.15);
}

.modal-cover-image {
    background: url('https://images.unsplash.com/photo-1536240478700-b869070f9279?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80') no-repeat center center/cover;
    min-height: 100%;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.form-select:focus,
.form-control:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 0.25rem rgba(0, 242, 255, 0.25);
}

.form-control::placeholder {
    color: #666;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.btn-close-white:hover {
    opacity: 1;
}

.hero-glass-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}