@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --brand-navy: #081225;
    --text-muted: #334155;
    --bg-card: rgba(255, 255, 255, 0.6);
    --border-light: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 40px rgba(8, 18, 37, 0.05);
    --font-main: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--brand-navy);
    /* The liquid silver metallic background */
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 30%, #e2e8f0 70%, #cbd5e1 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle noise texture for metallic feel */
body::after {
    content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.04; pointer-events: none; z-index: -1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

h1, h2, h3, h4 {
    color: var(--brand-navy);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-light);
}
.navbar-inner { display: flex; justify-content: space-between; align-items: center; }
.navbar img.logo { max-height: 55px; object-fit: contain; border-radius: 50%; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    text-decoration: none;
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}
.nav-links a:hover { opacity: 0.6; }

.btn-nav {
    background: var(--brand-navy); color: white;
    padding: 12px 30px; border-radius: 40px;
    text-decoration: none; font-weight: 700;
    text-transform: uppercase; font-size: 0.9rem;
    transition: 0.3s;
}
.btn-nav:hover { background: #000; transform: scale(1.02); }

@media(max-width: 900px) {
    .nav-links { display: none; }
}

/* Hero Section */
.hero { padding: 80px 0 120px; }
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.05;
}
.hero-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 500;
    line-height: 1.4;
}

.hero-action { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
    background: var(--brand-navy); color: white;
    padding: 20px 40px; border-radius: 50px;
    text-decoration: none; font-weight: 700;
    text-transform: uppercase; font-size: 1.1rem;
    border: none; cursor: pointer; transition: 0.3s;
    display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover {
    background: #000; transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(8, 18, 37, 0.2);
}
.hero-action-text {
    font-weight: 500; font-size: 1.1rem;
    color: var(--brand-navy); line-height: 1.3;
}

.hero-visual img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(8,18,37,0.15);
    border: 1px solid var(--border-light);
    object-fit: cover;
}

@media(max-width: 1024px) {
    .hero-inner, .about-inner { grid-template-columns: 1fr !important; text-align: center; }
    .hero-content p, .about-content p { margin-left: auto; margin-right: auto; }
    .hero-action { justify-content: center; }
    .hero-visual { margin-top: 40px; }
}

/* Trusted By Strip */
.trusted-by {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.3);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
}
.trusted-by p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.logos-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    color: var(--text-muted);
    opacity: 0.6;
}
.logos-strip i {
    font-size: 2.5rem;
    transition: 0.3s;
}
.logos-strip i:hover {
    opacity: 1;
    color: var(--brand-navy);
}

/* Global Sections */
section { padding: 100px 0; width: 100%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3.5rem; text-transform: uppercase; font-weight: 900; }

/* Grids & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(8, 18, 37, 0.1); border-color: rgba(255,255,255,1); }
.card i { font-size: 3rem; color: var(--brand-navy); margin-bottom: 24px; opacity: 0.8; }
.card h3 { font-size: 2rem; margin-bottom: 16px; font-weight: 800; }
.card p { color: var(--text-muted); font-size: 1.15rem; }

/* Pricing */
.pricing-card { text-align: center; }
.pricing-card .price { font-size: 4rem; color: var(--brand-navy); font-weight: 900; margin: 20px 0; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 40px; flex-grow: 1; }
.pricing-card ul li { padding: 16px 0; border-bottom: 1px solid rgba(8, 18, 37, 0.05); display: flex; align-items: center; gap: 12px; font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
.pricing-card ul li::before { content: '✓'; color: var(--brand-navy); font-weight: 900; font-size: 1.2rem; }
.pricing-card.featured-card { background: #ffffff; border: 2px solid var(--brand-navy); transform: scale(1.05); box-shadow: 0 20px 50px rgba(8, 18, 37, 0.1); }
.pricing-card.featured-card:hover { transform: scale(1.05) translateY(-5px); }

/* Form Area */
.form-section { position: relative; }
.form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-light);
    padding: 60px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
@media(max-width: 768px) {
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .form-wrapper { padding: 40px 24px; }
}

.form-group { margin-bottom: 24px; }
.form-group label { display: block; color: var(--brand-navy); font-weight: 700; margin-bottom: 12px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.5px; }

input, select, textarea {
    width: 100%; background: #ffffff; border: 1px solid rgba(8,18,37,0.1);
    padding: 20px; border-radius: 16px; color: var(--brand-navy);
    font-family: inherit; font-size: 1.1rem; transition: all 0.3s;
    font-weight: 500;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand-navy); box-shadow: 0 0 0 4px rgba(8,18,37,0.05); }

.checkbox-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.checkbox-label {
    display: flex; align-items: center; gap: 12px; background: #ffffff;
    padding: 18px; border-radius: 16px; border: 1px solid rgba(8,18,37,0.1);
    cursor: pointer; transition: all 0.2s; font-weight: 600; font-size: 1.05rem;
}
.checkbox-label:hover { border-color: var(--brand-navy); }
.checkbox-label input { width: 22px; height: 22px; accent-color: var(--brand-navy); }

/* Results */
.hidden { display: none !important; }
.result-wrapper { text-align: center; }
.result-wrapper h2 { font-size: 3rem; margin-bottom: 10px; text-transform: uppercase; }
.result-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 50px; }
.res-box { background: #ffffff; padding: 30px; border-radius: 20px; border: 1px solid rgba(8,18,37,0.05); }
.res-box p { font-size: 2.5rem; color: var(--brand-navy); font-weight: 900; margin-top: 10px; }

.lists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; text-align: left; margin-bottom: 50px; }
@media(max-width: 768px) { .lists-grid { grid-template-columns: 1fr; } }
.lists-grid h3 { font-size: 1.8rem; margin-bottom: 20px; text-transform: uppercase; font-weight: 800; }
.lists-grid ul { list-style: none; background: #ffffff; padding: 30px; border-radius: 20px; border: 1px solid rgba(8,18,37,0.05); }
.lists-grid ul li { padding: 16px 0; border-bottom: 1px solid rgba(8,18,37,0.05); font-size: 1.15rem; font-weight: 500; }
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }

footer { text-align: center; padding: 60px 0; border-top: 1px solid rgba(8,18,37,0.1); margin-top: 40px; font-weight: 600; }

/* Floating WhatsApp */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wpp:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@media(max-width: 768px) {
    .floating-wpp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}
