/* css/styles.css */
:root {
    /* Brand Colors matching #011826 and #13f1f2 exactly */
    --bg-main: #000c14;
    /* Deep dark that connects with the aura */
    --accent-glow: #13f1f2;
    --accent-glow-alpha: rgba(19, 241, 242, 0.5);
    --text-light: #f2f2f2;
    --text-muted: #8b9bb4;

    /* Typography */
    --font-primary: 'Clash Grotesk', 'Outfit', sans-serif;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.015);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

body {
    font-family: var(--font-primary);
    color: var(--text-light);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

/* Halo Blur Background */
.halo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: #011826;
    /* Original brand background as the deep base */
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.6;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: rgba(19, 241, 242, 0.6);
    /* Cyan glow from the prompt */
    top: -20vh;
    left: -10vw;
    animation: float 20s ease-in-out infinite alternate;
}

.orb-2 {
    width: 70vw;
    height: 70vw;
    background: rgba(1, 24, 38, 0.9);
    /* Dark brand glow */
    top: 10vh;
    right: -20vw;
    animation: float 25s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 50vw;
    height: 50vw;
    background: rgba(19, 241, 242, 0.4);
    bottom: -10vh;
    left: 20vw;
    animation: float 22s ease-in-out infinite alternate;
}

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

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

@keyframes float-centered {
    0% {
        transform: translateY(-50%) translate(0, 0) scale(1);
    }

    100% {
        transform: translateY(-50%) translate(15px, 10px) scale(1.02);
    }
}

@keyframes float-bottom {
    0% {
        transform: rotate(-45deg) translate(0, 0) scale(1);
    }

    100% {
        transform: rotate(-38deg) translate(30px, -25px) scale(1.05);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(0, 12, 20, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
}

.logo i {
    color: var(--accent-glow);
}

.brand-logo {
    height: 75px;
    width: auto;
    display: block;
    margin-top: -10px;
}

.brand-logo-footer {
    height: 65px;
    width: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-logo-footer:hover {
    opacity: 1;
}

.glass-pill {
    display: flex;
    gap: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 32px;
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-link {
    font-size: 1.05rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.navbar .btn {
    padding: 10px 28px;
    font-size: 0.95rem;
}

.btn {
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
}

.btn-outline {
    border-color: var(--glass-border);
    color: var(--text-light);
    background: transparent;
}

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

.btn-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.glow-btn:hover {
    background: var(--accent-glow);
    color: #000;
    box-shadow: 0 0 25px rgba(19, 241, 242, 0.5);
    border-color: var(--accent-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-symbol-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 200vh;
    min-height: 1500px;
    width: auto;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

.hero-floating-asset-light {
    position: absolute;
    right: -20vw;
    bottom: -45vh;
    top: auto;
    height: 95vh;
    max-height: 950px;
    width: auto;
    z-index: 5;
    pointer-events: none;
    filter: blur(4px);
    animation: float-bottom 12s ease-in-out infinite alternate;
}

.hero-floating-asset-top {
    position: absolute;
    left: -24vw;
    top: -5vh;
    height: 80vh;
    max-height: 800px;
    width: auto;
    z-index: 4;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(3px);
    opacity: 0.7;
    animation: float-top-left 14s ease-in-out infinite alternate-reverse;
}

.mix-blend .hero-title {
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.05;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-description p {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.95;
    line-height: 1.5;
}

/* High-end Minimalist Cards (What we do Style) */
.top-glow-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(19, 241, 242, 0.25);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.top-glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(19, 241, 242, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.top-glow-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-glow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 -2px 20px rgba(19, 241, 242, 0.2);
}

.top-glow-card:hover::before {
    opacity: 1;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-main);
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.section-title .highlight {
    color: var(--accent-glow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.card-header .icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 22px;
    border: 1px solid var(--glass-border);
}

.card-header .time {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: monospace;
}

.card-content h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1 rem;
    margin-bottom: 40px;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.action-text {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-glow-card:hover .action-text {
    color: var(--accent-glow);
}

/* Success Cases */
.cases {
    padding: 120px 0;
    background: #000408;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-card {
    display: flex;
    flex-direction: column;
}

.case-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.case-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.case-image-placeholder {
    height: 220px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
    overflow: hidden;
}

.case-image-placeholder picture,
.case-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.top-glow-card:hover .case-image-placeholder {
    border-color: rgba(19, 241, 242, 0.3);
}

.top-glow-card:hover .case-image-placeholder img {
    transform: scale(1.03);
}

/* About Minimalist */
.about {
    padding: 120px 0;
    background: var(--bg-main);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 550px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    padding: 40px;
}

.stat-box h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Contact Section */
.contact {
    padding: 140px 0 80px;
    background: var(--bg-main);
    position: relative;
    z-index: 10;
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.input-group input:focus {
    background: rgba(19, 241, 242, 0.03);
    border-color: rgba(19, 241, 242, 0.4);
}

.w-100 {
    width: 100%;
    justify-content: space-between;
    padding: 18px 30px;
}

/* Footer */
footer {
    padding: 50px 0;
    background: var(--bg-main);
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-logo i {
    color: var(--accent-glow);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-glow);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-light);
    border: none;
    color: var(--bg-main);
    border-radius: 50%;
    font-size: 34px;
    box-shadow: 0 4px 15px rgba(242, 242, 242, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(242, 242, 242, 0.6);
    background-color: #fff;
    color: #000;
    opacity: 1;
}

/* Animations */
.service-card,
.about-text,
.stat-box,
.contact-box {
    opacity: 0;
    transform: translateY(30px);
}

.mobile-br {
    display: none;
}

@keyframes float-top-left {
    0% {
        transform: rotate(90deg) translate(0, 0) scale(1);
    }

    100% {
        transform: rotate(97deg) translate(30px, 20px) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 900px) {

    /* 1. Hero & Navbar */
    .glass-pill,
    .nav-actions {
        display: none;
    }

    .navbar {
        padding-top: 45px;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .navbar.scrolled .brand-logo {
        height: 68px;
    }

    .brand-logo {
        transition: height 0.3s ease, margin-top 0.3s ease;
        margin-top: 0;
    }

    .nav-content {
        justify-content: center;
    }

    .halo-bg {
        filter: blur(90px);
    }
    
    .orb-1 {
        width: 150vw;
        height: 150vw;
        background: rgba(19, 241, 242, 0.7);
    }

    .orb-3 {
        width: 120vw;
        height: 120vw;
        background: rgba(19, 241, 242, 0.6);
    }

    .hero-floating-asset-light {
        display: block;
        height: 65vh;
        max-height: 400px;
        right: -30vw;
        bottom: -20vh;
        opacity: 0.4;
        filter: blur(6px);
    }

    .hero-floating-asset-top {
        display: block;
        height: 60vh;
        max-height: 320px;
        left: -20vw;
        top: -15vh;
        opacity: 0.3;
        filter: blur(5px);
    }

    .mobile-br {
        display: initial;
    }

    .hero-title {
        font-size: 3.9rem;
        line-height: 1.1;
    }

    .hero-description p {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 16px 24px;
        font-size: 1.15rem;
        width: 100%;
        max-width: 350px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        margin-top: 60px;
    }

    .hero-description {
        align-items: center;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    /* 2 & 3. Titles & Cases */
    .section-title {
        font-size: 2.7rem;
        text-align: center;
    }

    .section-title .highlight {
        display: block;
    }

    .service-card .card-header,
    .service-card .card-footer {
        justify-content: center;
    }

    .service-card .card-content {
        text-align: center;
    }

    .case-card h3 {
        text-align: center;
    }

    .case-card p {
        text-align: center;
    }

    .case-card .action-text {
        align-self: center;
    }

    /* 4. About & Contact */
    .about-text h2,
    .contact-info h2 {
        font-size: 2.7rem;
        text-align: center;
    }

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

    .contact-info p {
        text-align: center;
    }

    .about-text p br,
    .contact-info p br,
    .stat-box p br {
        display: none;
    }

    .stat-box h3 {
        text-align: center;
    }

    .stat-box p {
        text-align: center;
    }

    .about-grid,
    .contact-box {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .contact-box {
        padding: 40px;
    }

    .contact-form .btn {
        justify-content: center;
    }

    /* 5. Footer */
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .copyright {
        width: 100%;
        order: 3;
        text-align: center;
        margin-top: 10px;
    }
}