/* --- VARIABLES & RESET --- */
:root {
    /* Colors */
    --bg-base: #050A1A;
    --bg-mid: #071A33;
    --gold-light: #FFD700;
    --gold-dark: #C9A227;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #C9A227 100%);
    
    --text-white: #F2F5FF;
    --text-muted: rgba(242, 245, 255, 0.65);
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --surface-glass: rgba(255, 255, 255, 0.03);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-base);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p { color: var(--text-muted); font-size: 1.05rem; font-weight: 300; }

a { text-decoration: none; color: inherit; transition: 0.3s; }

ul { list-style: none; }

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted { color: var(--text-muted) !important; }
.text-white { color: var(--text-white) !important; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

.section-padding { padding: 100px 0; }
.section-alt { background: rgba(0,0,0,0.2); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #050A1A;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.25);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(5, 10, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover { color: var(--text-white); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.mobile-btn { display: none; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; }

/* --- HERO --- */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.pill-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; }
.hero p { margin-bottom: 30px; max-width: 90%; }
.btn-group { display: flex; gap: 15px; margin-bottom: 40px; }

.trust-row {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
}
.trust-num { font-family: var(--font-heading); font-weight: 700; color: var(--text-white); font-size: 1.1rem; }
.trust-label { font-size: 0.8rem; color: var(--text-muted); }

/* Glass Card */
.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}
.card-decoration {
    position: absolute;
    top: -20px; right: -20px; width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
    border-radius: 50%; filter: blur(20px); z-index: -1;
}
.panel-header { display: flex; gap: 6px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.checklist li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; font-size: 0.9rem; color: var(--text-muted);
}
.checklist li::before {
    content: '✓'; color: var(--gold-light); font-weight: bold;
}

/* --- SERVICES --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.section-tag { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; font-weight: 600; margin-bottom: 10px; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border-glass);
    padding: 30px; border-radius: 16px; transition: all 0.4s ease;
}
.service-card:hover { border-color: rgba(255, 215, 0, 0.3); transform: translateY(-5px); }
.service-icon {
    width: 40px; height: 40px; margin-bottom: 20px; border-radius: 8px;
    background: rgba(255, 215, 0, 0.1); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
}
.tag {
    display: inline-block; margin-top: 15px; font-size: 0.75rem;
    padding: 4px 10px; background: rgba(255,255,255,0.05); border-radius: 4px;
    color: var(--text-muted);
}

/* --- WHY & ABOUT --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.mini-item h4 { font-size: 1rem; color: var(--text-white); margin-bottom: 5px; }
.mini-item p { font-size: 0.85rem; }

.quote-card { padding: 40px; }
.quote-text { font-size: 1.2rem; font-style: italic; color: var(--text-white); margin-bottom: 20px; border-left: 3px solid var(--gold-dark); padding-left: 20px; }
.badge { font-size: 0.7rem; letter-spacing: 0.1em; font-weight: 700; color: var(--gold-light); }

/* --- PROCESS --- */
.step-card { text-align: center; padding: 20px; }
.step-num {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
    color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 10px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* --- FORM --- */
.glass-form {
    background: var(--surface-glass); border: 1px solid var(--border-glass);
    padding: 40px; border-radius: 20px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-width { grid-column: 1 / -1; }

.field-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
input, select, textarea {
    width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass);
    color: white; padding: 12px; border-radius: 8px; font-family: var(--font-body);
}
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--gold-dark); background: rgba(255,255,255,0.05);
}

/* --- FOOTER --- */
footer { background: #02040a; padding: 60px 0 30px 0; border-top: 1px solid var(--border-glass); }
.footer-grid {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 40px;
}
.footer-links { display: flex; gap: 30px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold-light); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #1ebe57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-links, .desktop-btn { display: none; }
    .nav-burger { display: block; }
    
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: var(--header-height); left: 0; width: 100%;
        background: var(--bg-mid); padding: 30px; border-bottom: 1px solid var(--border-glass);
    }
    .mobile-btn { display: inline-flex; width: 100%; margin-top: 10px; }
    
    .hero-content, .why-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { margin: 0 auto 30px auto; }
    .btn-group { justify-content: center; }
    .trust-row { justify-content: center; }
    .form-grid { grid-template-columns: 1fr; }
    
    .footer-grid { flex-direction: column; align-items: center; text-align: center; }
}

/* --- WAVE BACKGROUND SYSTEM --- */
.wave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-base);
    overflow: hidden;
}

/* Base Wave Shape */
.wave {
    position: absolute;
    width: 400%;
    height: 400%;
    border-radius: 40%;
    left: -150%;
    top: 50%;
    animation: waveDrift 15s infinite linear;
}

/* 1. Dark Blue Deep Wave */
.wave1 {
    background: rgba(7, 26, 51, 0.6);
    animation-duration: 20s;
}

/* 2. Lighter Blue Wave */
.wave2 {
    background: rgba(15, 30, 60, 0.5);
    animation-duration: 15s;
    top: 55%;
    left: -160%;
}

/* 3. Gold Accent Wave (Subtle) */
.wave3 {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent 60%);
    animation-duration: 25s;
    top: 45%;
    left: -140%;
}

/* Grain for Texture */
.noise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Rotation Animation creates the 'Liquid' feel */
@keyframes waveDrift {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ================================
   WHY SECTION — CINEMATIC UPGRADE
================================ */

.section-alt {
    position: relative;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02), transparent 50%),
        linear-gradient(180deg, #050A1A 0%, #071A33 100%);
    overflow: hidden;
}

/* Soft cinematic vignette */
.section-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content above */
.section-alt .container {
    position: relative;
    z-index: 2;
}

/* Why grid spacing refinement */
.why-grid {
    gap: 80px;
    align-items: center;
}

/* Mini items improved spacing */
.mini-item {
    padding: 10px 0;
    transition: transform 0.4s ease;
}

.mini-item:hover {
    transform: translateX(6px);
}

/* Stronger headline presence */
.section-alt h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

/* ===== COMPACT SECTION HEADER ===== */

.section-padding {
    padding: 70px 0; /* was 100px */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto; /* reduced bottom space */
    padding-top: 10px;
}

/* Small top gold line */
.section-header::before {
    content: "";
    display: block;
    width: 50px;        /* smaller */
    height: 2px;        /* thinner */
    margin: 0 auto 14px auto;  /* closer */
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.8),
        transparent
    );
    border-radius: 2px;
}

/* Tag (WORKFLOW / OUR EXPERTISE) */
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    color: var(--gold-light);
    margin-bottom: 16px;  /* tighter */
}

/* Main Heading */
.section-header h2 {
    font-size: 2.4rem;  /* slightly smaller */
    margin-bottom: 12px; /* tighter */
    position: relative;
}

/* Subtle underline below heading */
.section-header h2::after {
    content: "";
    display: block;
    width: 80px;   /* smaller */
    height: 2px;
    margin: 14px auto 0 auto; /* closer */
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.6),
        transparent
    );
}

/* Subtitle */
.section-header p {
    font-size: 1rem;
    margin-top: 14px;  /* tighter */
    color: var(--text-muted);
}


/* ===================================
   QUOTE CARD — PRIVATE BANKING STYLE
=================================== */

.quote-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(30px);
    padding: 50px;
    border-radius: 24px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255,215,0,0.05),
        0 20px 60px rgba(0,0,0,0.4);
}

/* Gold accent line upgrade */
.quote-text {
    font-size: 1.3rem;
    line-height: 1.7;
    border-left: 3px solid var(--gold-dark);
    padding-left: 25px;
    color: var(--text-white);
    font-weight: 400;
}

/* Subtle glow under card */
.quote-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
    filter: blur(25px);
    z-index: -1;
    opacity: 0.6;
}

/* Badge refinement */
.badge {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--gold-light);
}

/* ================================
   VALUE BLOCKS — PREMIUM CARDS
================================ */

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mini-item {
    position: relative;
    padding: 25px 25px 25px 30px;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* subtle gold edge glow */
.mini-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    width: 3px;
    height: 60%;
    background: linear-gradient(
        180deg,
        rgba(255,215,0,0.6),
        rgba(255,215,0,0.2)
    );
    border-radius: 3px;
    opacity: 0.8;
}

/* hover lift */
.mini-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* heading refinement */
.mini-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-white);
}

/* paragraph refinement */
.mini-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ================================
   ONGOING PROJECTS – PREMIUM BOARD STYLE
================================ */

.result-card {
    position: relative;
    padding: 35px 35px 40px 35px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        rgba(10, 22, 45, 0.95),
        rgba(6, 16, 35, 0.95)
    );
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* gold top accent */
.result-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(255,215,0,0.8),
        rgba(255,215,0,0.2),
        transparent
    );
}

/* subtle glow corner */
.result-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(255,215,0,0.08),
        transparent 70%
    );
    pointer-events: none;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Project Title */
.result-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Industry line */
.result-card .text-muted {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Bullet styling */
.bullets {
    margin-top: 15px;
}

.bullets li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 18px;
}

.bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
}

/* Visit link */
.project-link {
    display: inline-block;
    margin-top: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.project-link:hover {
    letter-spacing: 0.15em;
}

/* ===============================
   PREMIUM SECTION DIVIDER
================================ */

.lux-divider {
    position: relative;
    width: 100%;
    height: 30px;
    margin: 20px 0;
    pointer-events: none;
}

.lux-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,215,0,0.8),
        rgba(255,215,0,0.3),
        transparent
    );
}

@keyframes goldPulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.3; }
}

.lux-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(255,215,0,0.08),
        transparent 70%
    );
}

/* ===== PREMIUM PROCESS SECTION ===== */

#process .grid-3 {
    gap: 60px;
}

/* Step Card Container */
.step-card {
    position: relative;
    padding: 60px 40px 50px 40px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover Lift */
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Large Ghost Number */
.step-num {
    position: absolute;
    top: 10px;
    left: 50%;
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.025);
    z-index: 0;
    pointer-events: none;
    transform: translateX(-50%);
}

/* Gold Accent Line */
.step-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 3px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        rgba(255, 215, 0, 0.9),
        rgba(255, 215, 0, 0.3)
    );
    border-radius: 3px;
}

/* Title */
.step-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

/* Description */
.step-card p {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Subtle Gold Glow Background */
.step-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.12),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::after {
    opacity: 1;
}

.step-card h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 12px auto 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.8),
        transparent
    );
    border-radius: 2px;
}

.step-card {
    padding: 50px 40px 45px 40px;
}

/* ===== ABOUT SECTION PREMIUM REDESIGN ===== */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about-intro {
    max-width: 650px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.founder-card-premium {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Subtle gold glow */
.founder-card-premium::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
    background: radial-gradient(
        circle,
        rgba(255,215,0,0.08),
        transparent 70%
    );
    pointer-events: none;
}

/* =========================
   AURIX ABOUT — AGENCY STYLE
========================== */

.about-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.about-intro h2 {
    font-size: 2.7rem;
    margin-top: 10px;
    margin-bottom: 14px;
    font-weight: 700;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,215,0,0.8),
        rgba(255,215,0,0.2)
    );
    border-radius: 2px;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.about-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* === EXPERTISE GRID === */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expertise-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.expertise-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Dark cinematic overlay */
.expertise-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    color: white;
}

.expertise-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.expertise-overlay p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 12px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 30px;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Hover Effects */
.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.expertise-card:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card img {
        height: 260px;
    }
}

/* ============================= */
/* PROJECTS SECTION */
/* ============================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 35px;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* LOGO */

.project-logo {
    height: 55px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.project-logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-card:hover .project-logo img {
    opacity: 1;
    transform: scale(1.05);
}

/* subtle gold separator */
.project-logo::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    margin-top: 18px;
    background: linear-gradient(to right,
        transparent,
        rgba(255,215,0,0.4),
        transparent);
}

/* TEXT */

.project-card h3 {
    margin-top: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-card .industry {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.project-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.project-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

/* VISIT LINK */

.visit-link {
    display: inline-block;
    font-weight: 600;
    color: #FFD700;
    text-decoration: none;
    transition: 0.3s ease;
}

.visit-link:hover {
    letter-spacing: 1px;
    transform: translateX(5px);
}

/* --- FLOATING SOCIAL BAR --- */
.social-float {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #FFD700, #C9A227);
    color: #050A1A;
    transform: translateX(-6px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.25);
}

.drone-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .social-float {
        right: 15px;
        gap: 10px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* ===========================
   GLOBAL MOBILE FIX
=========================== */

@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 18px;
    }

    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }
}


@media (max-width: 768px) {

    .hero {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero p {
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .trust-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card img {
        height: 240px;
    }

    .expertise-overlay {
        padding: 18px;
    }

    .expertise-overlay h3 {
        font-size: 1.1rem;
    }

    .expertise-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        padding: 25px;
    }

    .project-logo img {
        max-height: 55px;
    }

}

@media (max-width: 768px) {

    #process .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 40px 25px;
    }

    .step-num {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-intro {
        margin-bottom: 40px;
    }

    .about-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .social-float {
        display: none;
    }
}

@media (max-width: 768px) {

    .wa-float {
        bottom: 20px;
        right: 15px;
        padding: 10px 18px;
        font-size: 14px;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #process .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: rgba(10, 22, 45, 0.95);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
}

/* Gold focus effect */
select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 2px rgba(255,215,0,0.2);
}

select option {
    background-color: #071A33;
    color: #F2F5FF;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FFD700' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 40px;
}

/* ================================
   PREMIUM FOOTER – AURIX STYLE
================================ */

.footer-premium {
    background: linear-gradient(
        180deg,
        #02040a 0%,
        #050A1A 100%
    );
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
}

/* subtle gold divider */
.footer-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,215,0,0.8),
        transparent
    );
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* BRAND */
.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* LINKS */
.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s ease;
    font-size: 16px;
}

.social-circle:hover {
    background: linear-gradient(135deg, #FFD700, #C9A227);
    color: #050A1A;
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}

.social-circle.drone {
    font-size: 18px;
}

.drone-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: 0.3s ease;
    filter: brightness(1);
}

.social-circle:hover .drone-img {
    transform: scale(1.1);
}


/* bottom copyright */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}


