:root {
    --primary-dark: #0c2949;
    --primary-light: #184271;
    --accent: #f17e23;
    --accent-hover: #d66b1a;
    --text-light: #f4f6f8;
    --text-grey: #929fa7;
    --bg-dark: #040c16;
    --bg-card: #081a2e;
    --glass: rgba(12, 41, 73, 0.85);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Cinematic Ambient Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 126, 35, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.glow-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(18, 55, 99, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #f39b1f);
    color: white;
    box-shadow: 0 4px 15px rgba(241, 126, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 126, 35, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.badge {
    display: inline-block;
    background: rgba(241, 126, 35, 0.15);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 126, 35, 0.3);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(4, 12, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 8px;
    /* Optional, adds a slight rounding to the white background if desired */
}

.desktop-nav a {
    color: var(--text-light);
    margin: 0 20px;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(12, 41, 73, 0.8) 50%, rgba(12, 41, 73, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.trust-item i {
    color: var(--accent);
    margin-right: 8px;
}

/* Services Section */
.section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(8, 26, 46, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(241, 126, 35, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(241, 126, 35, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(241, 126, 35, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

.service-card p {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.text-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.text-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.bg-dark {
    background-color: var(--bg-dark);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.1rem;
}

.tech-visual {
    position: relative;
    height: 400px;
    width: 100%;
    background: radial-gradient(circle at center, var(--primary-light), transparent 70%);
}

.circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.c1 {
    width: 300px;
    height: 300px;
    animation: spin 20s linear infinite;
}

.c2 {
    width: 200px;
    height: 200px;
    border-style: dashed;
    animation: spin-rev 15s linear infinite;
}

.card-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-float i {
    font-size: 2rem;
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(0deg, var(--bg-dark), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.contact-box {
    margin-top: 30px;
    background: white;
    display: inline-block;
    padding: 30px 60px;
    border-radius: 50px;
}

.phone-number {
    display: block;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.availability {
    color: #27ae60;
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #030e1a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
    /* Keeping the original colors, no filters needed if background is dark enough */
}

.footer-brand p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a {
    color: var(--text-grey);
    transition: color 0.3s ease;
}

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

.footer-links ul li i {
    color: var(--accent);
    font-size: 0.85rem;
}

.contact-info-list li {
    align-items: flex-start !important;
}

.contact-info-list li i {
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-grey);
}

.socials a {
    color: var(--text-grey);
    margin-left: 20px;
    font-size: 1.2rem;
}

.socials a:hover {
    color: white;
}

/* Animations */
@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-rev {
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .desktop-nav {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .split-image {
        display: none;
    }

    .contact-box {
        padding: 20px 20px;
        width: 100%;
        border-radius: 15px;
        box-sizing: border-box;
    }

    .phone-number {
        font-size: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .socials a {
        margin: 0 10px;
    }
}