/* =====================================================
   BAYOFF INDIA — styles.css (Fresh Template)
   ===================================================== */

/* ---------- Reset & Variables ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563eb;
    --primary-d: #1d4ed8;
    --accent: #f59e0b;
    --teal: #0d9488;
    --purple: #7c3aed;
    --orange: #ea580c;

    --dark: #0a0f1e;
    --dark-2: #111827;
    --dark-3: #1f2937;
    --light: #f8fafc;
    --light-2: #f1f5f9;
    --border: rgba(255, 255, 255, 0.08);

    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --text-dmut: #475569;

    --nav-h: 72px;
    --r: 16px;
    --r-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .18);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .26);

    --grad: linear-gradient(135deg, var(--primary), #8b5cf6);
    --grad-gold: linear-gradient(135deg, #f59e0b, #f97316);
}

html {
    scroll-behavior: smooth;
}

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

img {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 100px 0;
}

/* ---------- Scroll‑reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .6s ease calc(var(--d, 0s)), transform .6s ease calc(var(--d, 0s));
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ---------- Gradient text ---------- */
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

/* ---------- Shared tags / section heads ---------- */
.tag {
    display: inline-block;
    background: rgba(37, 99, 235, .15);
    border: 1px solid rgba(37, 99, 235, .4);
    color: #93c5fd;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.sec-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sec-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.sec-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    font-weight: 600;
    padding: .75rem 1.8rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.primary-btn {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, .4);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .5);
}

.outline-btn {
    background: transparent;
    color: #93c5fd;
    border: 1.5px solid rgba(37, 99, 235, .5);
}

.outline-btn:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, .1);
}

.ghost-btn {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .18);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.mt-6 {
    margin-top: 1.5rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background .35s ease, box-shadow .35s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 30, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-accent {
    color: var(--accent);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}

.nav-link {
    padding: .45rem .9rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s, background .2s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.nav-cta {
    background: var(--grad) !important;
    color: #fff !important;
    padding: .5rem 1.2rem !important;
    border-radius: 8px;
}

.nav-cta:hover {
    opacity: .88;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s ease;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 15, 30, .72) 0%,
            rgba(10, 15, 30, .55) 55%,
            rgba(10, 15, 30, .85) 100%);
}

/* Decorative particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: .6;
    }

    90% {
        opacity: .3;
    }

    100% {
        transform: translateY(-100vh) scale(1.4);
        opacity: 0;
    }
}

.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: var(--nav-h);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #cbd5e1;
    font-size: .82rem;
    font-weight: 500;
    padding: .4rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-ball {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 13px;
    position: relative;
    margin: 0 auto;
}

.scroll-ball::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    60% {
        top: 20px;
        opacity: .1;
    }
}

/* Reveal animations for hero */
.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .7s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================
   STATS BAND
   ========================================== */
.stats-band {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 3rem;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.stat-item i {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, .15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    display: inline;
}

.stat-item sup {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 700;
    vertical-align: super;
}

.stat-item span {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: .1rem;
}

.stat-sep {
    width: 1px;
    height: 60px;
    background: var(--border);
    flex-shrink: 0;
}

/* ==========================================
   ABOUT
   ========================================== */
.about-sec {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-blob-wrap {
    position: relative;
    height: 480px;
}

.blob-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: var(--grad);
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .12;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    }

    50% {
        border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    }
}

.about-img-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .75rem;
}

.img-tile {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-lg {
    grid-row: span 2;
}

.about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    color: #e2e8f0;
    font-size: .82rem;
    font-weight: 600;
    padding: .6rem 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.about-badge i {
    color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.badge-1 {
    top: 10px;
    right: -20px;
}

.badge-2 {
    bottom: 10px;
    left: -20px;
}

.about-copy {
    padding-left: 1rem;
}

.about-copy p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tick-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .95rem;
    color: var(--text);
}

.tick-list li i {
    color: #34d399;
    flex-shrink: 0;
    margin-top: 3px;
}

.lead {
    font-size: 1.1rem;
    color: #93c5fd;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ==========================================
   SERVICES
   ========================================== */
.services-sec {
    background: var(--dark-2);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.svc-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
    border-color: rgba(37, 99, 235, .4);
}

.svc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.svc-card:hover .svc-img img {
    transform: scale(1.06);
}

.svc-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-3) 0%, transparent 60%);
}

.svc-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.svc-icon i {
    width: 22px;
    height: 22px;
}

.blue-ic {
    background: rgba(37, 99, 235, .15);
    color: #60a5fa;
}

.teal-ic {
    background: rgba(13, 148, 136, .15);
    color: #2dd4bf;
}

.purple-ic {
    background: rgba(124, 58, 237, .15);
    color: #c4b5fd;
}

.orange-ic {
    background: rgba(234, 88, 12, .15);
    color: #fb923c;
}

.pink-ic {
    background: rgba(236, 72, 153, .15);
    color: #f472b6;
}

.green-ic {
    background: rgba(16, 185, 129, .15);
    color: #34d399;
}

.svc-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: .65rem;
}

.svc-body p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.svc-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text);
}

.svc-list li i {
    color: #34d399;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 600;
    color: #60a5fa;
    transition: gap .2s;
}

.svc-link:hover {
    gap: .7rem;
}

/* ==========================================
   WHY US
   ========================================== */
.why-sec {
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: transform .3s, border-color .3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .5);
}

.why-ic {
    width: 52px;
    height: 52px;
    background: var(--grad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.25rem;
}

.why-ic i {
    width: 24px;
    height: 24px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: .6rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-sec {
    background: var(--dark-2);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 3rem;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .35rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.ptab {
    padding: .55rem 1.4rem;
    border-radius: 9px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s;
}

.ptab.active {
    background: var(--grad);
    color: #fff;
}

.save-badge {
    background: rgba(245, 158, 11, .2);
    color: var(--accent);
    border-radius: 12px;
    font-size: .72rem;
    padding: .15rem .5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.price-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s, border-color .3s;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .4);
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 20px 48px rgba(37, 99, 235, .2);
}

.pop-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.price-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: .75rem;
    margin-bottom: .4rem;
}

.price-sub {
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 1.25rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: .25rem;
    margin-bottom: 1.75rem;
}

.price-amount .cur {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-amount .val {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #f1f5f9;
}

.price-amount .per {
    font-size: .85rem;
    color: var(--text-muted);
}

.price-feats {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 2rem;
    flex: 1;
}

.price-feats li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
}

.price-feats li.yes {
    color: var(--text);
}

.price-feats li.no {
    color: var(--text-muted);
    opacity: .6;
}

.price-feats li.yes i {
    color: #34d399;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.price-feats li.no i {
    color: #64748b;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testi-sec {
    background: var(--dark);
    overflow: hidden;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card-new {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.testi-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
    border-color: rgba(37, 99, 235, .4);
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: .1rem;
}

.testi-card-new>p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
    flex: 1;
}

.mobi-break {
    display: none;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: .95rem;
    color: #f1f5f9;
}

.testi-author span {
    font-size: .78rem;
    color: var(--text-muted);
}

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.t-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--dark-3);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.t-btn:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, .1);
}

.t-dots {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .2s;
}

.t-dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 4px;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-sec {
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: .75rem;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.c-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.c-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.c-ic {
    width: 44px;
    height: 44px;
    background: var(--grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.c-ic i {
    width: 18px;
    height: 18px;
}

.c-method h5 {
    font-size: .9rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: .2rem;
}

.c-method p,
.c-method a {
    font-size: .88rem;
    color: var(--text-muted);
}

.c-method a:hover {
    color: #60a5fa;
}

.c-socials {
    display: flex;
    gap: .75rem;
}

.c-social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all .2s;
}

.c-social:hover {
    border-color: var(--primary);
    color: #60a5fa;
    background: rgba(37, 99, 235, .1);
}

.c-social i {
    width: 18px;
    height: 18px;
}

.contact-form-wrap {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem;
}

.c-form h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.1rem;
}

.f-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.f-group input,
.f-group select,
.f-group textarea {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
    padding: .75rem 1rem;
    outline: none;
    transition: border-color .2s;
    resize: none;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    border-color: var(--primary);
}

.f-group select option {
    background: var(--dark-3);
}

.f-success {
    display: none;
    align-items: center;
    gap: .6rem;
    background: rgba(52, 211, 153, .1);
    border: 1px solid rgba(52, 211, 153, .3);
    color: #34d399;
    padding: .85rem 1.1rem;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    margin-top: 1rem;
}

.f-success.visible {
    display: flex;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.f-brand {
    max-width: 300px;
}

.f-brand .nav-logo {
    margin-bottom: 1rem;
}

.f-brand p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.f-socials {
    display: flex;
    gap: .65rem;
}

.f-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all .2s;
}

.f-socials a:hover {
    border-color: var(--primary);
    color: #60a5fa;
}

.f-socials a i {
    width: 16px;
    height: 16px;
}

.f-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.f-col ul {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.f-col ul li a {
    color: var(--text-muted);
    font-size: .88rem;
    transition: color .2s;
}

.f-col ul li a:hover {
    color: #60a5fa;
}

.f-contact {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.f-contact li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--text-muted);
    font-size: .85rem;
}

.f-contact li i {
    width: 14px;
    height: 14px;
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 3px;
}

.f-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.f-bottom p {
    font-size: .82rem;
    color: var(--text-muted);
}

/* ==========================================
   SCROLL-TO-TOP
   ========================================== */
.back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 99, 235, .4);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s;
    pointer-events: none;
}

.back-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-2px);
}

.back-top i {
    width: 20px;
    height: 20px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .contact-grid {
        gap: 3rem;
    }

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

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

    .section {
        padding: 72px 0;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(10, 15, 30, .97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem;
        padding-top: calc(var(--nav-h) + 1.5rem);
        gap: .5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        padding: .75rem 1rem;
        font-size: .95rem;
    }

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

    .stats-row {
        gap: 1.5rem 0;
    }

    .stat-item {
        padding: 0.5rem 1rem;
        flex: 1 1 45%;
        max-width: 50%;
    }

    .stat-sep {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-blob-wrap {
        height: 320px;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        left: 0;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card-new {
        padding: 1.75rem 1.5rem;
    }

    .testi-card-new>p {
        font-size: 1.1rem;
        line-height: 1.8;
        word-break: break-word;
    }

    .mobi-break {
        display: block;
        height: 1.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .f-row {
        grid-template-columns: 1fr;
    }

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

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stat-item {
        padding: 1rem;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stat-sep {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .f-row {
        grid-template-columns: 1fr;
    }
}