/* MeraHost - Custom Styles & Tailwind CSS CDN fallback */
/* This file extends the CDN Tailwind CSS with custom utilities */

/* Alpine.js cloak: hide until initialized */
[x-cloak] { display: none !important; }

/* Fonts loaded via <link> preconnect in layout/main.php for better FCP */

:root {
    /* ── Action / Brand Primary — Saffron (Bhagwa) ────────── */
    --primary:      #F97316;   /* true brand primary — CTAs, active states, highlights */
    --primary-dark: #EA580C;   /* hover / dark variant */
    --primary-deep: #C2410C;   /* pressed / deepest state */
    --primary-50:   #FFF7ED;
    --primary-100:  #FFEDD5;

    /* ── Trust Accent — Chakra Indigo ─────────────────────── */
    --accent:       #4338ca;   /* form focus, prose links, admin UI, feature icons */
    --accent-dark:  #3730a3;
    --accent-50:    #eef2ff;

    /* ── Semantic ─────────────────────────────────────────── */
    --success:    #10b981;
    --warning:    #f59e0b;
    --danger:     #ef4444;

    /* ── Structural ───────────────────────────────────────── */
    --dark:       #0f172a;
    --dark-800:   #1e293b;
    --dark-700:   #334155;
    --gray-100:   #f1f5f9;
    --text-muted: #64748b;

    /* ── India Flag Color System ──────────────────────────── */
    --saffron:         #F97316;   /* Bhagwa — same as --primary */
    --saffron-dark:    #EA580C;
    --saffron-deep:    #C2410C;
    --saffron-50:      #FFF7ED;
    --saffron-100:     #FFEDD5;
    --india-green:     #16A34A;   /* India green */
    --india-green-dk:  #15803D;
    --india-green-50:  #F0FDF4;
    --india-green-100: #DCFCE7;
    --chakra-blue:     #1D4ED8;   /* Ashoka Chakra navy */
    --chakra-navy:     #1E3A8A;
    --chakra-navy-dk:  #1e2a5e;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #f8fafc; color: #1e293b; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

/* ── Brand logo — inline SVG, 300×50 viewBox, height-driven ── */
.brand-logo {
    width: 300px;
    height: 50px;         /* exact PNG ratio: 300×50 (6:1) */
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 1024px) { .brand-logo { width: 220px; height: 37px; } }  /* 220/6 ≈ 37 */
@media (max-width: 480px)  { .brand-logo { width: 160px; height: 27px; } }  /* 160/6 ≈ 27 */

/* Three.js hero canvas — never causes layout overflow or scrollbars */
.hero-bg canvas[aria-hidden="true"] {
    display: block;
    max-width: 100%;
    overflow: hidden;
    touch-action: none;        /* prevent canvas from intercepting touch scroll */
    -webkit-user-select: none;
    user-select: none;
    mix-blend-mode: screen;    /* additive glow blends naturally into dark bg */
}

/* Dark mode */
.dark body { background: #0f172a; color: #e2e8f0; }

/* ── Gradient Text — India tricolor inspired ── */
.gradient-text {
    background: linear-gradient(120deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Typewriter cursor blink ── */
.tw-cursor {
    display: inline-block;
    width: 3px;
    margin-left: 2px;
    vertical-align: baseline;
    animation: tw-blink 0.9s step-start infinite;
    -webkit-text-fill-color: var(--saffron);
    color: var(--saffron);
    font-weight: 300;
}
@keyframes tw-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Glass morphism ── */
.glass {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.glass-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ── Hero Background — India Twilight ──
   Deep warm maroon-saffron (heritage, warmth) → Ashoka Chakra navy (trust, institution).
   Like the Indian flag at dusk — bhagwa fading into chakra blue.  */
.hero-bg {
    background: linear-gradient(
        140deg,
        #170b03 0%,      /* deep saffron-maroon — very dark bhagwa earth */
        #1f1208 25%,     /* warm dark amber-brown */
        #0c1a38 60%,     /* Ashoka Chakra deep navy */
        #071323 100%     /* midnight navy — trust & depth */
    );
    position: relative;
    overflow: hidden;
}
/* Saffron atmospheric glow — top-left warm bloom */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 700px; height: 600px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.22) 0%, rgba(234,88,12,0.08) 45%, transparent 70%);
    top: -120px; left: -80px;
    pointer-events: none;
}
/* India-green atmospheric glow — bottom-right */
.hero-bg::after {
    content: '';
    position: absolute;
    width: 550px; height: 500px;
    background: radial-gradient(ellipse, rgba(22,163,74,0.16) 0%, rgba(21,128,61,0.06) 45%, transparent 70%);
    bottom: -60px; right: -20px;
    pointer-events: none;
}

/* ── Section alternating ── */
.section-light { background: #f8fafc; }
.section-dark  { background: #0f172a; color: #e2e8f0; }
.section-gray  { background: #f1f5f9; }
/* India palette section washes — very subtle, cream-like tints */
.bg-saffron-wash { background: linear-gradient(140deg, #fff8f0 0%, #fefaf7 55%, #f8fafc 100%); }
.bg-green-wash   { background: linear-gradient(140deg, #f3fbf7 0%, #f6fbfa 55%, #f8fafc 100%); }
.bg-chakra-wash  { background: linear-gradient(140deg, #eef4ff 0%, #f3f6fd 55%, #f8fafc 100%); }

/* ── Cards ── */
.plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    position: relative;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(30,41,59,0.10), 0 1px 3px rgba(0,0,0,0.05);
    border-color: #c7d2fe;
}
.plan-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}
.plan-card.popular:hover { transform: scale(1.02) translateY(-4px); }

/* Popular badge */
.popular-badge {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 16px;
    display: inline-block;
    border-radius: 0 0 8px 8px;
}

/* ── Pricing ── */
.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
}
.price-currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; }
.price-period { font-size: 0.85rem; color: var(--text-muted); }

/* ── Feature lists ── */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #334155;
}
.feature-check { color: var(--success); flex-shrink: 0; margin-top: 1px; }

/* ── Buttons ── */
.btn-primary {
    background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 14px rgba(249,115,22,0.30);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--saffron-deep), var(--saffron-dark));
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(249,115,22,0.45);
    color: white;
}
.btn-secondary {
    background: transparent;
    color: var(--saffron-dark);
    border: 2px solid var(--saffron);
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}
.btn-secondary:hover { background: var(--saffron); color: white; border-color: var(--saffron); }
.btn-white {
    background: white;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover { background: #fff7ed; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ── Navigation — India warm-dark palette ── */
.navbar {
    background: rgba(14,8,2,0.97);      /* deep saffron-black — warm, not cold */
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(249,115,22,0.10);  /* barely-there saffron line */
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-link {
    color: rgba(255,255,255,0.72);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.13s ease, color 0.13s ease;
    white-space: nowrap;
}
.nav-link:hover { color: white; background: rgba(249,115,22,0.09); } /* warm saffron hover instead of cold white */

/* Service nav links — tighter padding to fit more items flat */
.nav-link-service {
    font-size: 0.82rem;
    padding: 6px 9px;
}

/* Vertical separator between service group and standalone pages */
.nav-sep {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.12);
    margin: 0 4px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: #131c2e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
    display: none;
    z-index: 200;
    padding: 8px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.13s, color 0.13s;
    white-space: nowrap;
}
.dropdown-item:hover { background: rgba(249,115,22,0.08); color: white; }
.dropdown-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Stats bar — deep tricolor ── */
.stats-bar { background: linear-gradient(135deg, #140d06 0%, #1f1510 38%, #111c30 100%); border-top: 1px solid rgba(255,255,255,0.06); }
.stat-item { text-align: center; padding: 24px 16px; }
.stat-number { font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.stat-label  { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Feature boxes ── */
.feature-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}
.feature-box:hover { border-color: #c7d2fe; box-shadow: 0 14px 40px rgba(30,41,59,0.09); transform: translateY(-5px); }

/* ── Use-case cards ── */
.usecase-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.22s ease;
    display: flex;
    flex-direction: column;
}
.usecase-card:hover { border-color: #c7d2fe; box-shadow: 0 12px 34px rgba(30,41,59,0.09); transform: translateY(-3px); }
.usecase-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.usecase-arrow {
    display: flex; align-items: center; gap: 6px;
    margin-top: auto;
    padding-top: 10px;
}

/* ── Proof cards (Why Us) ── */
.proof-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.22s ease;
}
.proof-card:hover { border-color: #c7d2fe; box-shadow: 0 12px 34px rgba(30,41,59,0.09); transform: translateY(-2px); }
.proof-card-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.proof-card-body { flex: 1; }
.proof-stat {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
    margin-bottom: 4px;
}
.proof-stat-unit { font-size: 1.3rem; font-weight: 700; color: #64748b; margin-left: 2px; }
.proof-card-title { font-size: 1rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.proof-card-desc { font-size: 0.875rem; color: #64748b; line-height: 1.6; margin-bottom: 12px; }
.proof-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.proof-card-tags span {
    font-size: 0.7rem; font-weight: 600;
    background: #f1f5f9; color: #475569;
    border-radius: 99px;
    padding: 3px 10px;
    white-space: nowrap;
}
.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(67,56,202,0.09), rgba(79,70,229,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--accent);
}

/* ── Testimonials ── */
.testimonial-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-size: 4rem; color: rgba(67,56,202,0.12); font-family: Georgia, serif; line-height: 1; }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-question { width: 100%; text-align: left; padding: 20px 0; font-weight: 600; color: #1e293b; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; background: none; border: none; }
.faq-answer { padding-bottom: 20px; color: #475569; line-height: 1.7; font-size: 0.95rem; }

/* ── Breadcrumbs — overlaid inside hero (transparent, negative-margin pulls hero up) ── */
nav.breadcrumb {
    background: transparent;
    padding-top: 12px;
    padding-bottom: 10px;
    margin-bottom: -42px;   /* hero slides up behind the breadcrumb */
    position: relative;
    z-index: 10;            /* floats above the hero background & blobs */
}
.breadcrumb ol { font-size: 0.8rem; justify-content: flex-end; }
.breadcrumb a { color: rgba(148,163,184,0.65); text-decoration: none; transition: color 0.15s; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb span { text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.breadcrumb-sep { color: rgba(148,163,184,0.22); text-shadow: none; }

/* ── Dynamic page content typography ── */
.page-content { color: #374151; line-height: 1.8; font-size: 0.97rem; }
.page-content h2 { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin: 2.2rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid rgba(249,115,22,0.15); }
.page-content h3 { font-size: 1.05rem; font-weight: 600; color: #1e293b; margin: 1.6rem 0 0.5rem; }
.page-content p { margin-bottom: 1.1rem; }
.page-content ul, .page-content ol { margin: 0.5rem 0 1.2rem 1.5rem; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.4rem; }
.page-content strong { color: #0f172a; font-weight: 600; }
.page-content a { color: var(--saffron-dark); text-decoration: underline; }
.page-content a:hover { color: var(--saffron); }
.page-content .policy-meta { background: #f8fafc; border-left: 3px solid var(--saffron); padding: 12px 18px; border-radius: 0 8px 8px 0; margin-bottom: 2rem; font-size: 0.88rem; color: #64748b; }

/* ── Policy Article card (dynamic.php policy pages) ──────────── */
.policy-article {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    border: 1px solid #f1f5f9;
}
@media (max-width: 640px) {
    .policy-article { padding: 1.5rem 1.25rem; border-radius: 0.875rem; }
}
.policy-article.page-content h2 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    background: #f8fafc;
    border: none;
    border-left: 3px solid #6366f1;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.625rem 0.875rem;
    margin: 2rem 0 0.875rem;
    scroll-margin-top: 5.5rem;
}
.policy-article.page-content ul {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
}
.policy-article.page-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.4rem 0;
    margin: 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.65;
}
.policy-article.page-content ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
    background: #f0fdf4;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.policy-article.page-content p { font-size: 0.9375rem; color: #475569; line-height: 1.8; }
.policy-article.page-content .policy-meta {
    font-size: 0.8125rem; color: #94a3b8;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    border-left: none;
    background: none;
    border-radius: 0;
    margin-bottom: 1.75rem;
}

/* ── Policy TOC sidebar links ─────────────────────────────────── */
.policy-toc-link {
    display: block;
    padding: 0.35rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.78125rem;
    color: #64748b;
    border-left: 2px solid transparent;
    line-height: 1.45;
    transition: color .15s, background .15s, border-color .15s;
}
.policy-toc-link:hover { background: #f1f5f9; color: #4f46e5; border-left-color: #c7d2fe; }
.policy-toc-link--active { background: #eef2ff; color: #4f46e5; font-weight: 600; border-left-color: #6366f1; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER — main footer + bottom bar
   ══════════════════════════════════════════════════════════════════ */

/* Main footer root */
.footer-root {
    background: #080e1a;  /* slightly deeper than slate-900 for contrast with CTA */
    color: #94a3b8;
}

/* Column headings */
.footer-col-head {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

/* Link lists */
.footer-link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-link-list a {
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s, padding-left 0.15s;
    display: inline-block;
}
.footer-link-list a:hover { color: #f1f5f9; padding-left: 3px; }

/* Social icons */
.footer-social {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social:hover { color: #fff; transform: translateY(-2px); border-color: transparent; }

/* Trust pills */
.footer-trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #475569;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Divider */
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent); }

/* Bottom bar */
.footer-bottom-sep {
    display: inline-block;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #334155;
    vertical-align: middle;
    margin: 0 2px;
}
.footer-legal-link {
    color: #475569;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 4px;
    transition: color 0.15s;
    white-space: nowrap;
}
.footer-legal-link:hover { color: #f1f5f9; }

/* ══════════════════════════════════════════════════════════════════
   DEDICATED SERVER PLAN CARDS  (.ds-*)  — v3 horizontal
   ══════════════════════════════════════════════════════════════════ */

/* ── Card shell ──────────────────────────────────────────── */
.ds-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1.5px solid #e8edf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
    transition: box-shadow 0.25s, transform 0.22s, border-color 0.22s;
    position: relative;
}
/* Subtle left accent line — appears on hover for all, always for popular */
.ds-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f97316, #ea580c);
    opacity: 0;
    transition: opacity 0.22s;
}
.ds-card:hover::before            { opacity: 0.6; }
.ds-card-popular::before          { opacity: 1; }
.ds-card:hover {
    box-shadow: 0 16px 48px rgba(15,23,42,0.11), 0 4px 16px rgba(15,23,42,0.06);
    transform: translateY(-3px);
    border-color: rgba(249,115,22,0.35);
}
.ds-card-popular {
    border-color: rgba(249,115,22,0.45);
    box-shadow: 0 0 0 2px rgba(249,115,22,0.12), 0 10px 44px rgba(249,115,22,0.09);
}
.ds-card-popular:hover {
    box-shadow: 0 0 0 2px rgba(249,115,22,0.25), 0 20px 56px rgba(249,115,22,0.14);
}

/* ── Body (left, grows to fill) ──────────────────────────── */
.ds-card-body {
    flex: 1;
    padding: 22px 26px 20px 28px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Plan name + badges row */
.ds-card-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ds-plan-name {
    font-size: 1.12rem; font-weight: 800; color: #0f172a; letter-spacing: -0.02em;
    line-height: 1.3;
}
.ds-plan-tagline {
    font-size: 0.72rem; color: #94a3b8; margin-top: 3px; line-height: 1.4;
}
.ds-card-badges { display: flex; align-items: center; gap: 6px; flex-shrink: 0; flex-wrap: wrap; }
.ds-badge-popular {
    display: inline-flex; align-items: center; gap: 4px;
    background: linear-gradient(135deg, #c2410c, #f97316);
    color: #fff; font-size: 0.65rem; font-weight: 700;
    padding: 4px 9px; border-radius: 20px; white-space: nowrap;
    box-shadow: 0 2px 10px rgba(249,115,22,0.4);
}
.ds-location-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f8fafc; border: 1px solid #e2e8f0;
    color: #475569; font-size: 0.7rem; font-weight: 600;
    padding: 4px 9px; border-radius: 20px;
}

/* ── Spec grid: 2 × 3 (hardware | network) ───────────────── */
.ds-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 28px;
}
.ds-spec-row {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.ds-spec-ico {
    width: 30px; height: 30px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
}
.ds-spec-text { display: flex; flex-direction: column; min-width: 0; }
.ds-spec-key {
    font-size: 0.62rem; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: 0.08em;
    line-height: 1; margin-bottom: 2px;
}
.ds-spec-val { font-size: 0.86rem; font-weight: 700; color: #0f172a; line-height: 1.2; }
.ds-spec-dim { font-size: 0.74rem; color: #64748b; font-weight: 400; }

/* ── Feature chips ───────────────────────────────────────── */
.ds-feat-wrap {
    display: flex; flex-wrap: wrap; gap: 5px;
    padding-top: 2px;
    border-top: 1px solid #f1f5f9;
}
.ds-feat-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f8fafc; border: 1px solid #e8edf3;
    border-radius: 20px; padding: 4px 10px;
    font-size: 0.7rem; color: #475569; font-weight: 500;
    white-space: nowrap;
    transition: background 0.14s, border-color 0.14s;
}
.ds-card:hover .ds-feat-chip { background: #f1f5f9; border-color: #d4dde8; }

/* ── Price panel (right column) ──────────────────────────── */
.ds-price-panel {
    width: 198px;
    flex-shrink: 0;
    border-left: 1.5px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 20px;
    text-align: center;
    background: #fafbfc;
    gap: 1px;
    transition: background 0.22s;
}
.ds-card:hover .ds-price-panel { background: #f6f8fb; }
.ds-card-popular .ds-price-panel { background: linear-gradient(170deg,#fff7ed 0%,#fafbfc 55%); }
.ds-card-popular:hover .ds-price-panel { background: linear-gradient(170deg,#ffedd5 0%,#f6f8fb 55%); }

.ds-price-orig {
    font-size: 0.82rem; color: #94a3b8; text-decoration: line-through;
    font-weight: 500; margin-bottom: 2px;
}
.ds-price-now {
    font-size: 2.15rem; font-weight: 900; color: #0f172a;
    line-height: 1; letter-spacing: -0.03em;
}
.ds-price-cur {
    font-size: 0.95rem; font-weight: 700; color: #f97316;
    vertical-align: top; display: inline-block; margin-top: 5px;
}
.ds-price-period { font-size: 0.7rem; color: #94a3b8; margin-top: 3px; }

/* ── CTA button ──────────────────────────────────────────── */
.ds-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; margin-top: 14px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff !important; font-size: 0.82rem; font-weight: 700;
    padding: 10px 14px; border-radius: 12px; border: none;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 3px 14px rgba(249,115,22,0.32);
    transition: transform 0.18s cubic-bezier(.22,.68,0,1.4), box-shadow 0.18s;
}
.ds-cta-btn:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 7px 24px rgba(249,115,22,0.5);
}
.ds-cta-btn-ghost {
    background: #fff;
    border: 1.5px solid #f97316;
    color: #ea580c !important;
    box-shadow: none;
}
.ds-cta-btn-ghost:hover { background: #fff7ed; box-shadow: 0 4px 14px rgba(249,115,22,0.18); }

.ds-setup-note {
    font-size: 0.66rem; color: #94a3b8; margin-top: 9px;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
    .ds-spec-grid { gap: 8px 16px; }
    .ds-price-panel { width: 176px; padding: 18px 14px; }
}
@media (max-width: 720px) {
    .ds-card { flex-direction: column; }
    .ds-price-panel {
        width: 100%; border-left: none;
        border-top: 1.5px solid #f0f4f8;
        padding: 18px 22px;
    }
    .ds-card-meta { flex-direction: column; }
}
@media (max-width: 520px) {
    .ds-card-body { padding: 18px 18px 16px 20px; }
    .ds-spec-grid { grid-template-columns: 1fr; gap: 8px; }
    .ds-price-now { font-size: 1.9rem; }
}

/* ── Offers / Coupons page cards ── */
.offer-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    transition: all 0.22s ease;
    overflow: hidden;
}
.offer-card:hover { border-color: #c7d2fe; box-shadow: 0 12px 36px rgba(30,41,59,0.09); transform: translateY(-2px); }
.offer-card-badge {
    position: absolute;
    top: 0; left: 0;
    color: #fff; font-size: 0.68rem; font-weight: 900;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 5px 14px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 14px;
}
.offer-card-body { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 260px; padding-top: 10px; }
.offer-icon-wrap { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.offer-info { flex: 1; }
.offer-title { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin-bottom: 5px; }
.offer-desc { font-size: 0.875rem; color: #64748b; line-height: 1.55; margin-bottom: 10px; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.offer-tags span { font-size: 0.7rem; font-weight: 600; background: #f1f5f9; color: #475569; border-radius: 99px; padding: 3px 9px; white-space: nowrap; }
.offer-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 140px; }
.offer-price-block { text-align: center; }
.offer-from { font-size: 0.72rem; color: #94a3b8; text-transform: uppercase; font-weight: 600; }
.offer-price { font-size: 2.1rem; font-weight: 900; color: #15803d; line-height: 1; }
.offer-period { font-size: 0.8rem; color: #64748b; }
.offer-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg,#ea580c,#f97316);
    color: #fff; font-size: 0.85rem; font-weight: 700;
    padding: 11px 22px; border-radius: 12px;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 4px 18px rgba(249,115,22,0.35);
    transition: opacity .15s, transform .15s;
}
.offer-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ── Founder note blockquote ── */
.founder-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #fff7ed, #fef9f5);
    border: 1.5px solid rgba(249,115,22,0.2);
    border-left: 4px solid #f97316;
    border-radius: 18px;
    padding: 28px 28px 28px 24px;
}
.founder-note-icon { flex-shrink: 0; margin-top: 2px; }
.founder-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    font-size: 1rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ── Outcome steps (story format) ── */
.outcome-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.2s ease;
}
.outcome-step:hover { border-color: #c7d2fe; background: #fff; box-shadow: 0 8px 22px rgba(30,41,59,0.08); }
.outcome-step-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    font-size: 1rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

/* ── Comparison table ── */
.compare-wrap { border-radius: 20px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.compare-table { border-collapse: collapse; font-size: 0.875rem; }
.compare-th { background: #f8fafc; padding: 14px 18px; font-weight: 700; color: #475569; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid #e2e8f0; white-space: nowrap; }
.compare-th-us { background: linear-gradient(135deg, #fff7ed, #fef9f5); color: var(--saffron-dark); position: relative; }
.compare-th-us::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--saffron); }
.compare-td { padding: 13px 18px; border-bottom: 1px solid #f1f5f9; color: #334155; vertical-align: middle; }
.compare-td-feat { font-weight: 600; color: #0f172a; white-space: nowrap; }
.compare-td-us { background: linear-gradient(90deg, rgba(249,115,22,0.03), rgba(249,115,22,0.06)); color: #c2410c; font-weight: 700; }
.compare-row:last-child .compare-td { border-bottom: none; }
.compare-row-win .compare-td-us { color: #15803d; }
.compare-row-win .compare-td-feat::before { content: ''; display: inline-block; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; margin-right: 8px; vertical-align: middle; }

/* ── Partner logo strip ── */
.partner-logo-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.partner-logo-box {
    height: 52px;
    display: flex; align-items: center; justify-content: center;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-width: 90px;
}
.partner-logo-item:hover .partner-logo-box {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}
.partner-logo-img { max-width: 100px; object-fit: contain; filter: saturate(0.85); transition: filter 0.2s; }
.partner-logo-item:hover .partner-logo-img { filter: saturate(1); }
.partner-logo-label { font-size: 0.68rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }

/* ── Tech stack card ── */
.tech-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 22px 18px; transition: box-shadow 0.2s, transform 0.2s; }
.tech-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }

/* ── How It Works steps ── */
.hiw-step-num { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 1.2rem; margin: 0 auto 18px; flex-shrink: 0; }

/* ── Migration card ── */
.migration-card { background: linear-gradient(140deg, #fff7ed 0%, #eff6ff 50%, #f0fdf4 100%); border: 1px solid #e2e8f0; border-radius: 24px; overflow: hidden; }
.migration-check-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; background: #fff; border-radius: 14px; border: 1px solid #f1f5f9; }

/* ── Guarantee strip ── */
.guarantee-strip { background: #fff; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.guarantee-item { text-align: center; }
.guarantee-icon { width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }

/* ── Blog cards ── */
.blog-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(30,41,59,0.10); border-color: #c7d2fe; }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }

/* ── Location page specific ── */
.location-hero {
    background: linear-gradient(140deg, #170b03 0%, #1f1208 28%, #0c1a38 65%, #071323 100%);
}
.location-type-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.location-type-link:hover { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.38); color: white; }
.location-type-link.active { background: rgba(249,115,22,0.18); border-color: var(--primary); color: white; }

/* ── Pricing tabs ── */
.tab-btn {
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
    border: none;
    background: transparent;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.tab-btn.active,
.tab-btn[aria-selected="true"] {
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}

/* ── Table of contents ── */
.toc { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; }
.toc-title { font-weight: 700; color: #1e293b; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.toc a { display: block; color: #475569; font-size: 0.875rem; padding: 4px 0; text-decoration: none; }
.toc a:hover { color: var(--accent); }
.toc .toc-h3 { padding-left: 16px; font-size: 0.85rem; }

/* ── Admin specific ── */
.admin-sidebar { background: #0f172a; min-height: 100vh; width: 260px; flex-shrink: 0; }
.admin-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: rgba(255,255,255,0.6); font-size: 0.875rem; border-radius: 8px; text-decoration: none; transition: all 0.15s; margin-bottom: 2px; }
.admin-nav-item:hover { background: rgba(255,255,255,0.07); color: white; }
.admin-nav-item.active { background: rgba(67,56,202,0.15); color: white; border-left: 3px solid var(--accent); }
.admin-card { background: white; border-radius: 12px; border: 1px solid #e2e8f0; padding: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f8fafc; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; border-bottom: 1px solid #e2e8f0; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #f1f5f9; font-size: 0.9rem; color: #1e293b; }
.admin-table tr:hover td { background: #f8fafc; }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-red    { background: #fee2e2; color: #dc2626; }
.badge-yellow { background: #fef9c3; color: #ca8a04; }
.badge-blue   { background: #dbeafe; color: #2563eb; }

/* ── Forms ── */
.form-input {
    width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 0.9rem;
    transition: border-color 0.15s, box-shadow 0.15s; background: white; color: #1e293b;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(67,56,202,0.12); }
.form-label { display: block; font-weight: 500; font-size: 0.875rem; color: #374151; margin-bottom: 6px; }
.form-error { color: var(--danger); font-size: 0.8rem; margin-top: 4px; }

/* ── Loading skeleton ── */
.skeleton { background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Animation utilities ── */
.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.slide-up { animation: slideUp 0.4s ease-out; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── Trust badges ── */
.trust-badge { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }

/* ── Uptime indicator — India green ── */
.uptime-dot { width: 8px; height: 8px; background: var(--india-green); border-radius: 50%; animation: pulse-dot 2s infinite; display: inline-block; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.55); } 50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } }

/* ── Spec table ── */
.spec-table { width: 100%; }
.spec-table tr:nth-child(even) td { background: #f8fafc; }
.spec-table td { padding: 10px 16px; font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 500; color: #64748b; width: 40%; }
.spec-table td:last-child { color: #1e293b; font-weight: 600; }

/* ── CTA section ── */
.cta-section {
    background:
        radial-gradient(ellipse 75% 60% at 50% 0%, rgba(249,115,22,0.16) 0%, transparent 68%),
        linear-gradient(125deg, #1a1208 0%, #2a1810 30%, #15223c 72%, #0d1626 100%);
    position: relative;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .plan-card.popular { transform: none; }
    .plan-card.popular:hover { transform: translateY(-4px); }
    .admin-sidebar { display: none; }
    .price-amount { font-size: 2rem; }
}

/* ── VPS Resource Calculator (v2 redesign) ── */
.vps-calc-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0d0e1a 0%, #13102b 40%, #111827 70%, #0c1220 100%);
    padding: 96px 0;
}

/* Left panel */
.vps-calc-left {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
}
@media (max-width: 768px) { .vps-calc-left { padding: 24px 20px; } }

/* Section label pill */
.vps-calc-label {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(99,102,241,.18); color: #a5b4fc;
    border: 1px solid rgba(99,102,241,.3);
    font-size: 0.75rem; font-weight: 700; letter-spacing: .05em;
    padding: 5px 14px; border-radius: 999px;
}

/* Preset chips */
.vps-preset {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 10px;
    font-size: 0.78rem; font-weight: 600;
    cursor: pointer; transition: all .18s;
    border: none; outline: none;
}
.vps-preset-off {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.1);
}
.vps-preset-off:hover {
    background: rgba(99,102,241,.2);
    color: #a5b4fc;
    border-color: rgba(99,102,241,.4);
}
.vps-preset-on {
    background: rgba(99,102,241,.28);
    color: #c7d2fe;
    border: 1px solid rgba(99,102,241,.5);
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

/* Slider rows */
.vps-slider-row { display: flex; flex-direction: column; gap: 10px; }
.vps-slider-meta {
    display: flex; align-items: center; gap: 10px;
}
.vps-slider-icon {
    width: 32px; height: 32px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.vps-slider-label { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,.75); flex: 1; }
.vps-slider-val {
    background: rgba(99,102,241,.22);
    color: #a5b4fc;
    font-size: 0.8rem; font-weight: 800;
    padding: 3px 11px; border-radius: 999px;
    border: 1px solid rgba(99,102,241,.3);
    white-space: nowrap;
}

/* Custom range input using a wrapper + overlay track technique */
.vps-track-wrap {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
}
.vps-track-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #6366f1, #818cf8);
    pointer-events: none;
    transition: width .05s linear;
    box-shadow: 0 0 12px rgba(99,102,241,.5);
}
.vps-range {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    outline: none;
    margin: 0;
}
.vps-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #6366f1;
    box-shadow: 0 2px 12px rgba(99,102,241,.55), 0 0 0 4px rgba(99,102,241,.15);
    cursor: pointer;
    transition: box-shadow .18s, transform .15s;
    position: relative;
}
.vps-range::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 18px rgba(99,102,241,.7), 0 0 0 6px rgba(99,102,241,.2);
    transform: scale(1.12);
}
.vps-range::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%; background: #fff;
    border: 3px solid #6366f1;
    box-shadow: 0 2px 12px rgba(99,102,241,.55);
    cursor: pointer;
}
.vps-range-ticks {
    display: flex; justify-content: space-between;
    font-size: 0.68rem; color: rgba(255,255,255,.28); font-weight: 500;
}

/* Summary chips */
.vps-summary-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
    font-size: 0.78rem; font-weight: 600;
    padding: 5px 12px; border-radius: 8px;
}

/* Right panel */
.vps-calc-right {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.03);
    transition: border-color .35s, box-shadow .35s;
    display: flex; flex-direction: column;
    min-height: 420px;
}
.vps-calc-right-matched {
    border-color: rgba(99,102,241,.45) !important;
    box-shadow: 0 0 0 1px rgba(99,102,241,.2), 0 24px 80px rgba(99,102,241,.18) !important;
}

.vps-rec-header {
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #4f46e5 100%);
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
}
.vps-rec-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,.6), transparent);
}

.vps-rec-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.15); color: #e0e7ff;
    border: 1px solid rgba(255,255,255,.2);
    font-size: 0.7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 999px;
}

.vps-rec-body {
    padding: 24px 28px 28px;
    background: rgba(10,10,20,.35);
}

/* Spec pills */
.vps-spec-pill {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 14px 6px 12px;
    text-align: center;
    transition: background .2s, border-color .2s;
}
.vps-spec-pill:hover { background: rgba(99,102,241,.18); border-color: rgba(99,102,241,.4); }
.vps-spec-icon { display: block; font-size: 1rem; color: #818cf8; margin-bottom: 8px; }
.vps-spec-num  { font-size: 1.15rem; font-weight: 900; color: #f1f5f9; line-height: 1; margin-bottom: 4px; }
.vps-spec-lbl  { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; }

/* Price */
.vps-price-row { display: flex; align-items: flex-end; gap: 4px; }
.vps-price-cur { font-size: 1.2rem; font-weight: 800; color: #818cf8; margin-bottom: 5px; }
.vps-price-num { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.04em; }
.vps-price-per { font-size: 0.85rem; color: rgba(255,255,255,.38); margin-bottom: 7px; }

/* Fit bar */
.vps-fit-track {
    height: 8px; background: rgba(255,255,255,.1);
    border-radius: 999px; overflow: hidden;
}
.vps-fit-bar {
    height: 100%; border-radius: 999px;
    transition: width .6s cubic-bezier(.22,.68,0,1), background .4s;
}
.vps-fit-green  { background: linear-gradient(90deg,#059669,#34d399); box-shadow: 0 0 10px rgba(52,211,153,.4); }
.vps-fit-indigo { background: linear-gradient(90deg,#4338ca,#818cf8); box-shadow: 0 0 10px rgba(99,102,241,.4); }
.vps-fit-amber  { background: linear-gradient(90deg,#d97706,#fbbf24); box-shadow: 0 0 10px rgba(251,191,36,.4); }

/* CTA */
.vps-rec-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 15px 20px;
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    color: #fff !important; font-size: 0.95rem; font-weight: 700;
    border-radius: 14px; text-decoration: none;
    box-shadow: 0 6px 24px rgba(67,56,202,.4);
    transition: transform .2s cubic-bezier(.22,.68,0,1.4), box-shadow .2s;
}
.vps-rec-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 32px rgba(67,56,202,.55);
}

/* ── Print ── */
@media print {
    .navbar, .footer, .cta-section { display: none; }
}

/* ── Syntax highlight (blog) ── */
pre { background: #1e293b; color: #e2e8f0; border-radius: 10px; padding: 20px; overflow-x: auto; font-family: 'JetBrains Mono', monospace; font-size: 0.875rem; line-height: 1.7; }
code:not(pre code) { background: #f1f5f9; color: #e11d48; padding: 2px 6px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.85em; }

/* ── Prose styles (blog content) ── */
.prose h2 { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin: 2rem 0 1rem; padding-top: 1rem; border-top: 1px solid #e2e8f0; }
.prose h3 { font-size: 1.2rem; font-weight: 700; color: #1e293b; margin: 1.5rem 0 0.75rem; }
.prose p  { color: #334155; line-height: 1.8; margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.5rem; color: #334155; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 4px solid var(--accent); padding-left: 20px; margin: 1.5rem 0; color: #475569; font-style: italic; }
.prose img { border-radius: 12px; max-width: 100%; margin: 1.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose table th { background: #f1f5f9; padding: 10px 16px; text-align: left; font-weight: 600; font-size: 0.875rem; }
.prose table td { padding: 10px 16px; border-bottom: 1px solid #e2e8f0; font-size: 0.9rem; }

/* ── Scroll to top ── */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 12px rgba(249,115,22,0.4); transition: all 0.2s; z-index: 50; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   DESIGN V2 — Animations, hover effects, FA icon boxes
═══════════════════════════════════════════════════════════════ */

/* ── Reveal animations ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(.22,.68,0,1.1), transform 0.6s cubic-bezier(.22,.68,0,1.1);
}
.reveal.visible   { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible  { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Button shimmer ── */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; bottom: 0;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-15deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn-primary:hover::after { left: 160%; }

.btn-white {
    position: relative;
    overflow: hidden;
}
.btn-white::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; bottom: 0;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.12), transparent);
    transform: skewX(-15deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn-white:hover::after { left: 160%; }

/* ── Plan card spring hover ── */
.plan-card {
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.4), box-shadow 0.28s ease, border-color 0.2s ease !important;
}
.plan-card:hover {
    transform: translateY(-7px) scale(1.015) !important;
    box-shadow: 0 24px 60px rgba(249,115,22,0.15), 0 4px 20px rgba(0,0,0,0.08) !important;
    border-color: rgba(249,115,22,0.32) !important;
}
.plan-card.popular:hover {
    transform: scale(1.03) translateY(-6px) !important;
}

/* ── Feature icon hover ── */
.feature-icon {
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.4), background 0.25s ease;
}
.feature-box:hover .feature-icon {
    transform: scale(1.12) rotate(-4deg);
}

/* ── Trust badge hover ── */
.trust-badge {
    transition: background 0.15s, border-color 0.15s, transform 0.15s !important;
    cursor: default;
}
.trust-badge:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px) !important;
}

/* ── FA icon color boxes ── */
.icon-box {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.4), background 0.25s ease;
}
/* Size variants */
.icon-box-sm  { width: 38px; height: 38px; border-radius: 10px; font-size: 0.95rem; margin-bottom: 0; }
.icon-box-lg  { width: 64px; height: 64px; border-radius: 18px; font-size: 1.5rem; margin-bottom: 0; }

.icon-box-indigo      { background: rgba(99,102,241,0.1);  color: #6366f1; }
.icon-box-green       { background: rgba(16,185,129,0.1);  color: #10b981; }
.icon-box-blue        { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.icon-box-purple      { background: rgba(139,92,246,0.1);  color: #8b5cf6; }
.icon-box-red         { background: rgba(239,68,68,0.1);   color: #ef4444; }
.icon-box-orange      { background: rgba(245,158,11,0.1);  color: #f59e0b; }
.icon-box-cyan        { background: rgba(6,182,212,0.1);   color: #06b6d4; }
.icon-box-pink        { background: rgba(236,72,153,0.1);  color: #ec4899; }
/* India flag palette icon boxes */
.icon-box-saffron     { background: rgba(249,115,22,0.1);  color: var(--saffron-dark); }
.icon-box-india-green { background: rgba(22,163,74,0.1);   color: var(--india-green-dk); }
.icon-box-chakra      { background: rgba(29,78,216,0.08);  color: var(--chakra-navy); }

/* ── Animated progress bars ── */
.perf-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    width: 0;
    transition: width 1.2s cubic-bezier(.22,.68,0,1) !important;
}

/* ── Glass card hover ── */
.glass {
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.glass:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ── Stat items ── */
.stat-item {
    transition: background 0.2s;
}
.stat-item:hover { background: rgba(255,255,255,0.03); }

/* ── Testimonial card hover ── */
.testimonial-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.testimonial-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(22,163,74,0.10) !important;
    border-color: rgba(22,163,74,0.18) !important;
}
.testimonial-card::before { color: rgba(249,115,22,0.13); } /* saffron quote mark */

/* ── Section label pill ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.section-label-indigo  { background: var(--saffron-100); color: var(--saffron-dark); border: 1px solid rgba(249,115,22,0.18); } /* repointed to saffron for India brand */
.section-label-purple  { background: #f5f3ff;  color: #7c3aed; }
.section-label-amber   { background: #fff8f0;  color: var(--saffron-dark); } /* warm amber → saffron */
.section-label-dark    { background: rgba(99,102,241,0.12);  color: #818cf8;  border: 1px solid rgba(99,102,241,0.2); }
.section-label-cta     { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
/* India flag palette section labels */
.section-label-saffron { background: var(--saffron-100); color: var(--saffron-dark); border: 1px solid rgba(249,115,22,0.2); }
.section-label-green   { background: var(--india-green-100); color: var(--india-green-dk); border: 1px solid rgba(22,163,74,0.2); }
.section-label-chakra  { background: #dbeafe; color: var(--chakra-navy); border: 1px solid rgba(29,78,216,0.2); }

/* ── Included-feature items (hosting page) ── */
.included-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.included-item:hover {
    border-color: rgba(249,115,22,0.25);
    box-shadow: 0 4px 16px rgba(249,115,22,0.08);
    transform: translateY(-2px);
}
.included-item-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ── Popular badge ── */
.popular-badge {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 0 0 8px 8px;
}

/* ── Navbar scroll shadow ── */
.navbar.scrolled-shadow {
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

/* ── Datacenter card ── */
.dc-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.3), box-shadow 0.3s ease, border-color 0.3s ease;
}
.dc-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    border-color: transparent;
}

/* Subtle lat/lon grid lines */
.dc-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(100,116,139,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100,116,139,.045) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Coloured radial glow corner (top-right) */
.dc-bg-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
    transition: opacity .3s ease;
}
.dc-card:hover .dc-bg-glow { opacity: 1.0; }

/* Abstract country silhouette */
.dc-bg-shape {
    position: absolute;
    bottom: -12px; left: -10px;
    width: 130px; height: 130px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    transform: rotate(-10deg);
    transition: opacity .3s ease, transform .3s ease;
}
.dc-card:hover .dc-bg-shape {
    opacity: 0.85;
    transform: rotate(-8deg) scale(1.06);
}
.dc-bg-shape svg { width: 100%; height: 100%; }

/* Faded country code watermark */
.dc-bg-code {
    position: absolute;
    font-size: 6.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    opacity: 0.045;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
    user-select: none;
    transition: opacity .3s ease;
}
.dc-card:hover .dc-bg-code { opacity: 0.065; }

/* Live ping dot — bottom-right corner */
.dc-pulse {
    position: absolute;
    bottom: 20px; right: 20px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--pulse-color, #6366f1);
    z-index: 2;
}
.dc-pulse::before,
.dc-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: dc-ping 2.4s cubic-bezier(0,0,.2,1) infinite;
}
.dc-pulse::after { animation-delay: 1.2s; }
@keyframes dc-ping {
    0%    { transform: scale(1);   opacity: .8; }
    70%,100% { transform: scale(3.2); opacity: 0; }
}

/* Content above all bg layers */
.dc-content { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   HERO BLOBS — organic animated particle blobs
═══════════════════════════════════════════════════════════════ */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
    opacity: 0.18;
    will-change: transform, border-radius;
}
.hero-blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #F97316 0%, #8b5cf6 100%); /* saffron → purple */
    top: -120px; right: -80px;
    animation: blob-morph 9s ease-in-out infinite;
    opacity: 0.14;
}
.hero-blob-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #16A34A 0%, #06b6d4 100%); /* india green → cyan */
    bottom: -60px; left: -60px;
    animation: blob-morph 11s ease-in-out infinite reverse;
    animation-delay: -3s;
    opacity: 0.13;
}
.hero-blob-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #F97316 0%, #1E3A8A 100%); /* saffron → chakra blue */
    top: 40%; left: 38%;
    animation: blob-morph 13s ease-in-out infinite;
    animation-delay: -6s;
    opacity: 0.10;
}
@keyframes blob-morph {
    0%,100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0,0) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(16px,-22px) scale(1.05);
    }
    50% {
        border-radius: 50% 30% 50% 60% / 30% 70% 40% 60%;
        transform: translate(-14px,12px) scale(0.96);
    }
    75% {
        border-radius: 40% 70% 30% 50% / 60% 40% 60% 30%;
        transform: translate(10px,16px) scale(1.02);
    }
}

/* Alternate blob palette for purple/orange pages */
.hero-blob-purple .hero-blob-1 { background: radial-gradient(circle,#8b5cf6,#6366f1); }
.hero-blob-purple .hero-blob-2 { background: radial-gradient(circle,#7c3aed,#06b6d4); }
.hero-blob-orange .hero-blob-1 { background: radial-gradient(circle,#f59e0b,#ef4444); }
.hero-blob-orange .hero-blob-2 { background: radial-gradient(circle,#6366f1,#f59e0b); }
.hero-blob-cyan   .hero-blob-1 { background: radial-gradient(circle,#06b6d4,#6366f1); }
.hero-blob-cyan   .hero-blob-2 { background: radial-gradient(circle,#8b5cf6,#06b6d4); }

/* ═══════════════════════════════════════════════════════════════
   MODERN PRICING CARDS V2
═══════════════════════════════════════════════════════════════ */

/* Base card */
/*
   .plan-ribbon-tag — corner tab used in vps.php / shared-hosting plan cards.
   Floats at top-right of .plan-card-v2 (overflow:visible), so it shows
   cleanly over the card border without needing an overflow-hidden wrapper.
   Works on both light (accent) cards and the dark popular card.
*/
.plan-ribbon-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 55%, #22c55e 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 14px 5px 13px;
    border-top-right-radius: 22px;   /* matches .plan-card-v2 corner */
    border-bottom-left-radius: 14px;
    z-index: 16;
    white-space: nowrap;
    box-shadow: -2px 2px 10px rgba(21,128,61,.38), inset 0 1px 0 rgba(255,255,255,.18);
}

.plan-card-v2 {
    background: #fff;
    border-radius: 24px;
    border: 1.5px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: transform 0.32s cubic-bezier(.22,.68,0,1.4), box-shadow 0.32s ease, border-color 0.2s ease;
}
/* No ::before strip — handled via background layers on accent classes */
.plan-card-v2:not(.plan-popular):hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 28px 70px rgba(30,41,59,0.13), 0 4px 20px rgba(0,0,0,0.06) !important;
    border-color: #a5b4fc !important;
}
.plan-accent-indigo:hover {
    background:
        linear-gradient(90deg, #6366f1, #8b5cf6) no-repeat top / 100% 4px,
        linear-gradient(160deg, #e5e9ff 0%, #eef1ff 55%, #f8f9ff 100%) !important;
}
.plan-accent-emerald:hover {
    background:
        linear-gradient(90deg, #10b981, #06b6d4) no-repeat top / 100% 4px,
        linear-gradient(160deg, #dcfdf3 0%, #eafcf6 55%, #f6fffe 100%) !important;
}

/* Accent themes — tinted card backgrounds + gradient top strip */
.plan-accent-indigo {
    background:
        linear-gradient(90deg, #6366f1, #8b5cf6) no-repeat top / 100% 4px,
        linear-gradient(160deg, #eef1ff 0%, #f6f7ff 55%, #ffffff 100%);
    border-color: #c7d2fe;
    --plan-check-bg: rgba(99,102,241,0.14);
    --plan-check-color: #4338ca;
    --plan-spec-bg: rgba(99,102,241,0.1);
    --plan-spec-text: #4338ca;
}
.plan-accent-emerald {
    background:
        linear-gradient(90deg, #10b981, #06b6d4) no-repeat top / 100% 4px,
        linear-gradient(160deg, #ecfdf8 0%, #f3fefb 55%, #ffffff 100%);
    border-color: #99f6e4;
    --plan-check-bg: rgba(16,185,129,0.13);
    --plan-check-color: #047857;
    --plan-spec-bg: rgba(16,185,129,0.1);
    --plan-spec-text: #047857;
}

/* Popular card — dark inverted */
.plan-card-v2.plan-popular {
    background: linear-gradient(150deg, #1e1b4b 0%, #2d1f6e 45%, #1a2744 100%);
    border: none;
    box-shadow: 0 24px 64px rgba(99,102,241,0.38), 0 6px 24px rgba(0,0,0,0.22);
    transform: scale(1.05) translateY(-10px) !important;
    z-index: 10;
    --plan-check-bg: rgba(255,255,255,0.12);
    --plan-check-color: #a5f3fc;
    --plan-spec-bg: rgba(255,255,255,0.08);
    --plan-spec-text: #c7d2fe;
}
.plan-card-v2.plan-popular::before { display: none; }
.plan-card-v2.plan-popular:hover {
    transform: scale(1.06) translateY(-16px) !important;
    box-shadow: 0 40px 100px rgba(99,102,241,0.48), 0 8px 32px rgba(0,0,0,0.28) !important;
}

/* Animated gradient ring on popular card */
.plan-card-v2.plan-popular::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #06b6d4, #6366f1);
    background-size: 300% 300%;
    animation: plan-border-spin 4s ease infinite;
    z-index: -1;
    opacity: 0.85;
}
@keyframes plan-border-spin {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Floating badge above popular card */
.plan-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(245,158,11,0.45);
    animation: badge-glow 2.2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 5px;
}
@keyframes badge-glow {
    0%,100% { box-shadow: 0 4px 20px rgba(245,158,11,0.45); }
    50%      { box-shadow: 0 4px 32px rgba(245,158,11,0.75), 0 0 48px rgba(245,158,11,0.18); }
}

/* Badge for non-popular (e.g. Best Value) */
.plan-other-badge {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
}
.plan-other-badge-emerald { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }

/* Plan icon box */
.plan-icon-box {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--plan-spec-bg, rgba(99,102,241,0.08));
    color: var(--plan-spec-text, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.4);
}
.plan-card-v2:hover .plan-icon-box { transform: scale(1.12) rotate(-5deg); }
.plan-icon-popular {
    background: rgba(255,255,255,0.12);
    color: #a5f3fc;
}

/* Spec pills */
.plan-spec-pill {
    background: var(--plan-spec-bg, rgba(99,102,241,0.1));
    border-radius: 12px;
    padding: 10px 6px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}
.plan-spec-pill .spec-icon {
    font-size: 0.65rem;
    color: var(--plan-spec-text, #4338ca);
    opacity: 0.75;
    margin-bottom: 3px;
    display: block;
}
.plan-spec-pill .spec-value {
    font-weight: 900;
    font-size: 0.88rem;
    color: var(--plan-spec-text, #4338ca);
    line-height: 1.2;
}
.plan-spec-pill .spec-label {
    font-size: 0.62rem;
    color: var(--plan-spec-text, #4338ca);
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 2px;
}

/* Feature check icon */
.plan-check-icon {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--plan-check-bg, rgba(99,102,241,0.1));
    color: var(--plan-check-color, #6366f1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Savings badge */
.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(16,185,129,0.1);
    color: #059669;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(16,185,129,0.2);
}
.savings-badge-popular {
    background: rgba(255,255,255,0.12);
    color: #a7f3d0;
    border-color: rgba(255,255,255,0.15);
}

/* Popular CTA button */
.btn-plan-popular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #4f46e5;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 14px;
    padding: 13px 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.22,.68,0,1.4), box-shadow 0.25s ease, background 0.2s ease;
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-plan-popular:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255,255,255,0.28);
    background: #eef2ff;
}
.btn-plan-popular::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; bottom: 0; width: 60%;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.1), transparent);
    transform: skewX(-15deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn-plan-popular:hover::after { left: 160%; }

/* Accent CTA buttons for non-popular cards */
.btn-plan-accent-indigo,
.btn-plan-accent-emerald {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 14px;
    padding: 13px 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.22,.68,0,1.4), box-shadow 0.25s ease;
}
.btn-plan-accent-indigo {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99,102,241,0.32);
}
.btn-plan-accent-indigo:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(99,102,241,0.46);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}
.btn-plan-accent-emerald {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #fff;
    box-shadow: 0 4px 16px rgba(16,185,129,0.30);
}
.btn-plan-accent-emerald:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(16,185,129,0.44);
    background: linear-gradient(135deg, #059669, #0891b2);
    color: #fff;
}

/* Price pop-in animation */
.price-number {
    display: inline-block;
    animation: price-pop 0.55s cubic-bezier(.22,.68,0,1.4) both;
    animation-delay: var(--price-delay, 0.1s);
}
@keyframes price-pop {
    from { transform: scale(0.6) translateY(8px); opacity: 0; }
    to   { transform: scale(1) translateY(0);      opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   DOMAIN PAGE
═══════════════════════════════════════════════════ */

/* Search bar */
.domain-search-wrap {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 6px;
    display: flex;
    gap: 6px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.domain-search-wrap:focus-within {
    border-color: rgba(249,115,22,0.5);
    box-shadow: 0 8px 40px rgba(249,115,22,0.18);
}
.domain-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 16px;
}
.domain-search-input::placeholder { color: rgba(148,163,184,0.6); }
.domain-search-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 12px;
    outline: none;
    cursor: pointer;
    min-width: 80px;
}
.domain-search-select option { background: #1e293b; color: #e2e8f0; }
.domain-search-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: transform 0.2s cubic-bezier(.22,.68,0,1.4), box-shadow 0.2s ease;
}
.domain-search-btn:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(249,115,22,0.42); }

/* ── Domain Search v2 (redesigned hero bar) ───────────── */
.ds-search-pill {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.13);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.ds-search-pill:focus-within {
    border-color: rgba(249,115,22,0.5);
    box-shadow: 0 8px 40px rgba(249,115,22,0.20), inset 0 1px 0 rgba(255,255,255,0.07);
}
.ds-name-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 12px 16px 0;
    min-width: 0;
    caret-color: #818cf8;
}
.ds-name-input::placeholder { color: rgba(148,163,184,0.55); font-weight: 400; }
.ds-ext-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 16px 14px;
    color: #e2e8f0;
    cursor: pointer;
    background: transparent;
    border: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}
.ds-ext-trigger:hover { color: #a5b4fc; }
.ds-ext-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    background: #1e293b;
    border: 1px solid rgba(99,102,241,0.28);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 4px 16px rgba(99,102,241,0.18);
    z-index: 60;
    overflow: hidden;
}
.ds-ext-panel-inner { max-height: 272px; overflow-y: auto; padding: 6px; }
.ds-ext-panel-inner::-webkit-scrollbar { width: 4px; }
.ds-ext-panel-inner::-webkit-scrollbar-track { background: transparent; }
.ds-ext-panel-inner::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.35); border-radius: 4px; }
.ds-ext-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 9px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: background 0.12s ease, color 0.12s ease;
}
.ds-ext-item:hover { background: rgba(99,102,241,0.14); color: #fff; }
.ds-ext-item.is-active { background: rgba(99,102,241,0.22); color: #a5b4fc; }
.ds-search-btn-v2 {
    background: linear-gradient(135deg,#6366f1,#8b5cf6);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 11px 22px;
    margin: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(.22,.68,0,1.4), box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(99,102,241,0.38);
}
.ds-search-btn-v2:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(99,102,241,0.52); }
.ds-chip {
    padding: 5px 13px;
    border-radius: 20px;
    background: rgba(255,255,255,0.07);
    color: rgba(148,163,184,0.85);
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ds-chip:hover { background: rgba(255,255,255,0.13); color: #fff; }
.ds-chip.is-active {
    background: rgba(99,102,241,0.22);
    color: #a5b4fc;
    border-color: rgba(99,102,241,0.45);
}

/* TLD filter tabs */
.tld-tab {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 14px; border-radius: 99px;
    font-size: 0.75rem; font-weight: 600;
    background: #f1f5f9; color: #64748b;
    border: 1.5px solid transparent;
    cursor: pointer; transition: all 0.15s ease;
    white-space: nowrap;
}
.tld-tab:hover { background: #e2e8f0; color: #374151; }
.tld-tab-active {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 14px; border-radius: 99px;
    font-size: 0.75rem; font-weight: 700;
    background: #eef2ff; color: #4338ca;
    border: 1.5px solid #c7d2fe;
    cursor: pointer; transition: all 0.15s ease;
    white-space: nowrap;
}

/* TLD cards */
.tld-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 20px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.4), box-shadow 0.3s ease, border-color 0.2s ease;
}
.tld-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--tld-accent, linear-gradient(90deg, #6366f1, #8b5cf6));
    border-radius: 20px 20px 0 0;
}
.tld-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(99,102,241,0.13), 0 4px 16px rgba(0,0,0,0.06);
    border-color: rgba(99,102,241,0.25);
}
.tld-card.tld-popular {
    background: linear-gradient(150deg, #1e1b4b 0%, #2d1f6e 50%, #1a2744 100%);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(99,102,241,0.3);
}
.tld-card.tld-popular::before { height: 0; }
.tld-card.tld-popular::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #06b6d4);
    background-size: 200% 200%;
    animation: plan-border-spin 3.5s ease infinite;
    z-index: -1;
}
.tld-ext {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.tld-price {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
}
.tld-renewal {
    font-size: 0.72rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.tld-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 18px;
}
.tld-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 999px;
}

/* Domain feature row */
.domain-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 16px;
    transition: box-shadow 0.25s ease, border-color 0.2s ease, transform 0.25s ease;
}
.domain-feature-row:hover {
    box-shadow: 0 8px 30px rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.2);
    transform: translateX(4px);
}
.domain-feature-row-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Steps */
.domain-step {
    text-align: center;
    position: relative;
}
.domain-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(99,102,241,0.35);
    position: relative;
    z-index: 1;
}
.domain-step-line {
    position: absolute;
    top: 26px;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 2px;
    background: linear-gradient(90deg, #6366f1, rgba(99,102,241,0.15));
    z-index: 0;
}

/* Transfer strip */
.domain-transfer-strip {
    background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
    border: 1.5px solid rgba(99,102,241,0.15);
    border-radius: 24px;
    padding: 48px;
}

/* Glowing dot keyframe (used via inline style in about.php) */
@keyframes ping-slow { 0%,100%{transform:scale(1);opacity:.4} 50%{transform:scale(1.4);opacity:0} }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */

/* ── Stat cards ── */
.about-stat {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.4), box-shadow 0.3s ease, border-color 0.2s;
}
.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(99,102,241,0.12);
    border-color: rgba(99,102,241,0.25);
}
.about-stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--primary) 50%, var(--india-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.about-stat-label { font-size: 0.82rem; color: #64748b; font-weight: 500; }
.about-stat-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(22,163,74,0.08));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: var(--saffron-dark);
    font-size: 1.1rem;
}

/* ── Timeline ── */
.about-timeline { position: relative; }
.about-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--saffron) 0%, var(--primary) 50%, var(--india-green) 100%);
    border-radius: 2px;
}
@media (min-width: 768px) {
    .about-timeline::before { left: 50%; transform: translateX(-1px); }
}
.timeline-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 36px;
}
@media (min-width: 768px) {
    .timeline-item { width: 50%; padding-left: 0; margin-bottom: 48px; }
    .timeline-item:nth-child(odd)  { padding-right: 52px; text-align: right; }
    .timeline-item:nth-child(even) { padding-left: 52px; margin-left: 50%; }
}
.timeline-dot {
    position: absolute;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 0 0 4px #fff, 0 4px 16px rgba(99,102,241,0.4);
    z-index: 1;
    left: 1px;
    top: 0;
}
@media (min-width: 768px) {
    .timeline-item:nth-child(odd)  .timeline-dot { left: auto; right: -19px; }
    .timeline-item:nth-child(even) .timeline-dot { left: -19px; }
}
.timeline-card {
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 16px;
    padding: 20px 22px;
    transition: box-shadow 0.25s ease, border-color 0.2s;
}
.timeline-card:hover {
    box-shadow: 0 10px 32px rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.2);
}
.timeline-year {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6366f1;
    margin-bottom: 4px;
}
.timeline-title { font-weight: 700; color: #0f172a; font-size: 0.95rem; margin-bottom: 4px; }
.timeline-desc  { font-size: 0.82rem; color: #64748b; line-height: 1.55; }

/* ── Values grid ── */
.value-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 18px;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.4), box-shadow 0.25s ease, border-color 0.2s;
}
.value-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 14px 40px rgba(99,102,241,0.10);
    border-color: rgba(99,102,241,0.22);
}

/* ── Infra tech strip ── */
.infra-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f46e5;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.infra-pill:hover {
    background: rgba(99,102,241,0.13);
    border-color: rgba(99,102,241,0.3);
    transform: translateY(-2px);
}

/* ── Testimonial v2 ── */
.testi-card-v2 {
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.4), box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.testi-card-v2::before {
    content: '\201C';
    position: absolute;
    top: 12px; right: 20px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(99,102,241,0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}
.testi-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(99,102,241,0.11);
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Channel cards ── */
/* ── Contact channel cards — redesigned ── */
.contact-ch-grid {
    display: grid;
    grid-template-columns: 1fr;           /* mobile: stacked */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .contact-ch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .contact-ch-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.contact-ch-card {
    background: #fff;
    border-radius: 22px;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(.22,.68,0,1.4), box-shadow 0.25s ease;
    position: relative;
}
.contact-ch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}
/* Colored top accent bar */
.contact-ch-accent {
    height: 5px;
    width: 100%;
    flex-shrink: 0;
}
.contact-ch-inner {
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
/* Icon + response time row */
.contact-ch-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.contact-ch-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.contact-ch-speed {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}
.contact-ch-speed-val {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
}
.contact-ch-speed-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
/* Status badge */
.contact-ch-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 99px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    width: fit-content;
}
.contact-ch-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}
.contact-ch-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}
.contact-ch-value {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
}
.contact-ch-value:hover { text-decoration: underline; }
.contact-ch-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;                /* pushes CTA to bottom regardless of text length */
}
.contact-ch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 9px 0;
    border-radius: 11px;
    border: 1.5px solid;
    transition: background 0.18s, color 0.18s;
    margin-top: auto;
}

.contact-badge-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

/* ── Contact form wrapper ── */
.contact-form-wrap {
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(99,102,241,0.06);
    position: relative;
    overflow: hidden;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
}
@media (max-width: 640px) {
    .contact-form-wrap { padding: 24px 18px; }
}

/* ── Input components ── */
.contact-field-group { display: flex; flex-direction: column; gap: 6px; }
.contact-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
}
.contact-input-wrap {
    position: relative;
}
.contact-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.2s;
}
.contact-textarea-wrap .contact-input-icon {
    /* icon stays at top for textarea */
    transform: none;
}
.contact-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    font-size: 0.88rem;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.contact-input::placeholder { color: #b0bec5; }
.contact-input:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.contact-input:focus + .contact-input-icon,
.contact-input-wrap:focus-within .contact-input-icon { color: #6366f1; }
.contact-select { appearance: none; cursor: pointer; }
.contact-textarea { resize: none; padding-top: 12px; }

/* ── Priority row ── */
.contact-priority-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-priority-opt { cursor: pointer; }
.contact-priority-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.18s;
    user-select: none;
}
.contact-priority-btn:hover { border-color: #6366f1; color: #6366f1; }
.contact-priority-active {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
    color: #fff !important;
}
.contact-priority-critical-active {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #fff !important;
}

/* ── Sidebar info cards ── */
.contact-info-card {
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 18px;
    padding: 22px;
    transition: box-shadow 0.25s ease;
}
.contact-info-card:hover { box-shadow: 0 8px 28px rgba(99,102,241,0.07); }
.contact-info-sla { border-left: 3px solid #6366f1; }

.contact-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    padding: 3px 9px;
    border-radius: 999px;
}

.contact-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(99,102,241,0.2);
    background: rgba(99,102,241,0.05);
    transition: background 0.2s, transform 0.2s;
}
.contact-map-btn:hover { background: rgba(99,102,241,0.1); transform: translateY(-1px); }

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.contact-quick-link:hover {
    background: #f1f5ff;
    border-color: rgba(99,102,241,0.15);
    color: #6366f1;
}

/* ── Department cards ── */
.contact-dept-card {
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 20px;
    padding: 26px 22px;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.4), box-shadow 0.25s ease, border-color 0.2s;
}
.contact-dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(99,102,241,0.10);
    border-color: rgba(99,102,241,0.2);
}
.contact-dept-card:hover .icon-box { transform: scale(1.1) rotate(-4deg); }

/* ── Responsive tweaks ── */
@media (max-width: 640px) {
    .contact-priority-row { gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION SEO PAGES
═══════════════════════════════════════════════════════════════ */

/* ── Local stats strip ── */
.loc-stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
    gap: 2px;
}
.loc-stat-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.loc-stat-label {
    font-size: 0.7rem;
    color: rgba(148,163,184,0.85);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── ISP card ── */
.loc-isp-card {
    background: #f8fafc;
    border: 1.5px solid #e8ecf4;
    border-radius: 16px;
    padding: 18px 20px;
}
.loc-isp-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.loc-isp-chip:hover {
    border-color: rgba(99,102,241,0.35);
    color: #6366f1;
    background: rgba(99,102,241,0.04);
}

/* ── Map wrapper ── */
.loc-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    border: 1.5px solid #e8ecf4;
}

/* ── Area chips ── */
.loc-area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.loc-area-chip:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
    color: #3730a3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(99,102,241,0.12);
}

/* ── Local trust strip ── */
.loc-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    transition: background 0.25s, transform 0.25s;
}
.loc-trust-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

/* ── Mobile adjustments ── */
@media (max-width: 640px) {
    .loc-stat-num  { font-size: 1.1rem; }
    .loc-stat-cell { padding: 14px 8px; }
    .loc-map-wrap iframe { height: 260px; }
}

/* ══════════════════════════════════════════════════════════════
   LOCATION INTERLINKING GRID  (Browse Hosting by Location)
══════════════════════════════════════════════════════════════ */

/* ── Browse by Location toolbar ─────────────────────────────── */

/* Region filter tabs */
.loc-region-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.loc-rtab {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
}
.loc-rtab:hover {
    border-color: var(--rtab-color, #818cf8);
    color: var(--rtab-color, #4f46e5);
    background: #f8f8ff;
}
.loc-rtab--active {
    background: var(--rtab-color, #6366f1);
    border-color: var(--rtab-color, #6366f1);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

/* ── State cards grid ────────────────────────────────────────── */
.loc-grid-outer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 14px;
}

/* Individual state card */
.loc-state-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 16px;
    padding: 14px 14px 12px 20px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.loc-state-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-color: var(--region-color, #c7d0f0);
    transform: translateY(-2px);
}
.loc-state-card--active {
    border-color: var(--region-color, #6366f1);
    background: var(--region-bg, #f5f6ff);
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

/* Left accent bar (region colour) */
.loc-card-accent {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--region-color, #6366f1);
    border-radius: 16px 0 0 16px;
}

/* Card head row: emoji + meta + service icons */
.loc-card-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}
.loc-card-emoji {
    font-size: 1.65rem;
    line-height: 1;
    flex-shrink: 0;
    filter: saturate(0.85);
}
.loc-card-meta {
    flex: 1;
    min-width: 0;
}
.loc-card-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    transition: color 0.15s;
}
.loc-card-title:hover { color: var(--region-color, #4f46e5); }

.loc-region-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 999px;
    margin-top: 3px;
}

/* Compact service-type icon links */
.loc-svc-row {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.loc-svc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    font-size: 0.72rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.loc-svc-icon:hover { transform: scale(1.12); }
.loc-svc-icon--web       { background: rgba(99,102,241,0.08);  color: #4f46e5;  border-color: rgba(99,102,241,0.16); }
.loc-svc-icon--vps       { background: rgba(16,185,129,0.08);  color: #059669;  border-color: rgba(16,185,129,0.16); }
.loc-svc-icon--dedicated { background: rgba(245,158,11,0.08);  color: #b45309;  border-color: rgba(245,158,11,0.16); }
.loc-svc-icon--domain    { background: rgba(6,182,212,0.08);   color: #0e7490;  border-color: rgba(6,182,212,0.16);  }
.loc-svc-icon--web:hover       { background: rgba(99,102,241,0.16);  border-color: rgba(99,102,241,0.32); }
.loc-svc-icon--vps:hover       { background: rgba(16,185,129,0.16);  border-color: rgba(16,185,129,0.32); }
.loc-svc-icon--dedicated:hover { background: rgba(245,158,11,0.16);  border-color: rgba(245,158,11,0.32); }
.loc-svc-icon--domain:hover    { background: rgba(6,182,212,0.16);   border-color: rgba(6,182,212,0.32);  }

/* City chip list */
.loc-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.loc-city-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.loc-city-chip:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
    color: #5b21b6;
}
.loc-city-chip--active {
    background: linear-gradient(90deg,#f97316,#ea580c);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 7px rgba(249,115,22,0.28);
}
.loc-city-chip--active:hover {
    background: linear-gradient(90deg,#ea580c,#c2410c);
    color: #fff;
}

/* Pulse dot on active chip */
.loc-city-chip-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    display: inline-block;
    animation: loc-chip-pulse 1.8s ease-in-out infinite;
}
@keyframes loc-chip-pulse {
    0%,100% { transform: scale(1);   opacity: 0.85; }
    50%      { transform: scale(1.5); opacity: 1;    }
}

/* Mobile tweaks */
@media (max-width: 640px) {
    .loc-region-tabs   { gap: 5px; }
    .loc-rtab          { font-size: 0.68rem; padding: 5px 10px; }
    .loc-grid-outer    { grid-template-columns: 1fr; gap: 10px; }
    .loc-card-head     { gap: 7px; }
    .loc-region-badge  { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   INDIA HUB PAGE  (/india/)
══════════════════════════════════════════════════════════════ */

/* Hero stat tiles */
.loc-india-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}
.loc-india-stat:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-2px);
}
.loc-india-stat-num   { font-size: 2rem; font-weight: 900; line-height: 1.1; margin-bottom: 4px; }
.loc-india-stat-label { font-size: 0.8rem; color: #94a3b8; }

/* Why-India benefit cards */
.loc-india-why-card {
    background: #f8fafc;
    border: 1.5px solid #e8ecf4;
    border-radius: 18px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-india-why-card:hover {
    box-shadow: 0 6px 24px rgba(99,102,241,0.09);
    border-color: #c7d0f0;
    transform: translateY(-2px);
}
.loc-india-why-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

/* Service type cards */
.loc-india-svc-card {
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 18px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
}
.loc-india-svc-card:hover {
    box-shadow: 0 6px 28px rgba(99,102,241,0.10);
    border-color: #c7d0f0;
    transform: translateY(-3px);
}
.loc-india-svc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.loc-india-svc-icon--web       { background: rgba(99,102,241,0.10); color: #4f46e5; }
.loc-india-svc-icon--vps       { background: rgba(16,185,129,0.10); color: #059669; }
.loc-india-svc-icon--dedicated { background: rgba(245,158,11,0.10); color: #b45309; }
.loc-india-svc-icon--domain    { background: rgba(6,182,212,0.10);  color: #0e7490; }

/* State directory cards */
.loc-india-state-card {
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 14px;
    padding: 16px 14px;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-india-state-card:hover {
    box-shadow: 0 4px 18px rgba(99,102,241,0.10);
    border-color: #c7d0f0;
    transform: translateY(-2px);
}

/* City count badge on state card */
.loc-india-city-badge {
    font-size: 0.62rem;
    font-weight: 700;
    background: #eef2ff;
    color: #4338ca;
    border-radius: 999px;
    padding: 2px 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Service type chip (on state cards & city cards) */
.loc-india-svc-chip {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.loc-india-svc-chip--web       { background: rgba(99,102,241,0.09);  color: #4f46e5; }
.loc-india-svc-chip--vps       { background: rgba(16,185,129,0.09);  color: #059669; }
.loc-india-svc-chip--dedicated { background: rgba(245,158,11,0.09);  color: #b45309; }
.loc-india-svc-chip--domain    { background: rgba(6,182,212,0.09);   color: #0e7490; }

/* ══════════════════════════════════════════════════════════════
   STATE HUB PAGE  (/india/{state}/)
══════════════════════════════════════════════════════════════ */

/* Hero service quick-links */
.loc-state-hero-svc {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 14px 16px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-state-hero-svc:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.20);
    transform: translateY(-2px);
}
.loc-state-hero-svc-icon {
    font-size: 1.2rem;
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.loc-state-hero-svc-icon--web       { background: rgba(99,102,241,0.20); color: #a5b4fc; }
.loc-state-hero-svc-icon--vps       { background: rgba(16,185,129,0.20); color: #6ee7b7; }
.loc-state-hero-svc-icon--dedicated { background: rgba(245,158,11,0.20); color: #fcd34d; }
.loc-state-hero-svc-icon--domain    { background: rgba(6,182,212,0.20);  color: #67e8f9; }

/* Service type cards on state page */
.loc-state-svc-card {
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 18px;
    padding: 24px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-state-svc-card:hover {
    box-shadow: 0 6px 28px rgba(99,102,241,0.10);
    border-color: #c7d0f0;
    transform: translateY(-3px);
}
.loc-state-svc-card--disabled {
    opacity: 0.65;
    pointer-events: none;
}
.loc-state-svc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.loc-state-svc-icon--web       { background: rgba(99,102,241,0.10); color: #4f46e5; }
.loc-state-svc-icon--vps       { background: rgba(16,185,129,0.10); color: #059669; }
.loc-state-svc-icon--dedicated { background: rgba(245,158,11,0.10); color: #b45309; }
.loc-state-svc-icon--domain    { background: rgba(6,182,212,0.10);  color: #0e7490; }

/* City cards on state page */
.loc-state-city-card {
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 14px;
    padding: 14px;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-state-city-card:hover {
    box-shadow: 0 4px 18px rgba(99,102,241,0.10);
    border-color: #c7d0f0;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   CITY HUB PAGE  (/india/{state}/{city}/)
══════════════════════════════════════════════════════════════ */

/* Service cards (larger, more prominent) */
.loc-city-svc-card {
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 18px;
    padding: 24px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-city-svc-card:hover {
    box-shadow: 0 8px 32px rgba(99,102,241,0.12);
    border-color: #c7d0f0;
    transform: translateY(-4px);
}
.loc-city-svc-card--dim { opacity: 0.7; }

.loc-city-svc-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

/* Mobile: 2-column grid for service cards */
@media (max-width: 640px) {
    .loc-india-stat-num { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   LANDMARK + MAP COMPONENTS  (state & city hub pages)
══════════════════════════════════════════════════════════════ */

/* Hero info chips */
.loc-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #cbd5e1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 4px 10px;
    border-radius: 999px;
}

/* Famous-place list card */
.loc-place-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1.5px solid #e8ecf4;
    border-radius: 14px;
    padding: 14px 16px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.loc-place-card:hover {
    box-shadow: 0 4px 18px rgba(99,102,241,0.09);
    border-color: #c7d0f0;
    transform: translateY(-2px);
}
.loc-place-emoji {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    /* subtle glow behind emoji */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}

/* Overrides for .loc-place-card inside white-bg sections */
.bg-white .loc-place-card  { background: #f8fafc; }
.bg-slate-50 .loc-place-card { background: #ffffff; }

.loc-map-wrap iframe { display: block; width: 100%; }

/* Tailwind-like color utilities used in city.php service cards
   (since we build class names dynamically we need explicit rules) */
.bg-indigo-50  { background-color: #eef2ff; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-amber-50   { background-color: #fffbeb; }
.bg-cyan-50    { background-color: #ecfeff; }
.text-indigo-600  { color: #4f46e5; }
.text-emerald-600 { color: #059669; }
.text-amber-600   { color: #d97706; }
.text-cyan-600    { color: #0891b2; }
.bg-indigo-100  { background-color: #e0e7ff; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-amber-100   { background-color: #fef3c7; }
.bg-cyan-100    { background-color: #cffafe; }
.text-indigo-700  { color: #4338ca; }
.text-emerald-700 { color: #047857; }
.text-amber-700   { color: #b45309; }
.text-cyan-700    { color: #0e7490; }

/* Mobile adjustments */
@media (max-width: 640px) {
    .loc-place-emoji { font-size: 1.4rem; width: 32px; }
    .loc-map-wrap iframe { height: 240px !important; }
}

/* ══════════════════════════════════════════════════════════════
   GEO LOCATION NUDGE  (bottom-right floating card)
══════════════════════════════════════════════════════════════ */

#geo-nudge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9100;
    width: 275px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 3px 10px rgba(0,0,0,0.07);
    border: 1px solid #e8ecf4;
    overflow: hidden;
    /* hidden until .gn--visible */
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
                opacity 0.35s ease;
}
#geo-nudge.gn--visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
#geo-nudge.gn--hiding {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    pointer-events: none;
}

/* Top gradient accent bar */
.gn-bar {
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 45%, #06b6d4 100%);
}

/* Card body */
.gn-body {
    padding: 13px 14px 14px 14px;
    position: relative;
}

/* Close button */
#geo-nudge-close {
    position: absolute;
    top: 9px;
    right: 9px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s, color 0.15s;
}
#geo-nudge-close:hover { background: #f1f5f9; color: #475569; }

/* Location row */
.gn-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    padding-right: 22px;
}
.gn-pin-wrap {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(139,92,246,0.10));
    border: 1.5px solid rgba(99,102,241,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
/* Pulsing "live" dot in corner of pin */
.gn-pin-dot {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    border: 1.5px solid #fff;
    animation: gn-pulse 2.2s ease-in-out infinite;
}
@keyframes gn-pulse {
    0%,100% { transform: scale(1);   opacity: 1;    }
    50%      { transform: scale(1.5); opacity: 0.65; }
}

.gn-loc { flex: 1; min-width: 0; }
.gn-city {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gn-state {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}
.gn-isp {
    display: block;
    font-size: 0.62rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

/* Divider */
.gn-body::before {
    content: '';
    display: block;
    height: 1px;
    background: #f1f5f9;
    margin: 9px 0;
    position: relative;
    top: 0;
}

/* Tagline */
.gn-tagline {
    font-size: 0.74rem;
    color: #64748b;
    margin: 0 0 10px;
    line-height: 1.5;
}

/* CTA button */
.gn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 11px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: opacity 0.15s, transform 0.12s;
}
.gn-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(99,102,241,0.30);
}

/* Mobile */
@media (max-width: 500px) {
    #geo-nudge {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}

/* ══════════════════════════════════════════════════════════════════
   Responsive alignment utilities
   The pre-compiled tailwind.css omits these breakpoint variants, so
   they are defined here (app.css loads after tailwind.css). Mirrors
   Tailwind's class names so existing/future markup works as expected.
   ══════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .sm\:text-left      { text-align: left !important; }
    .sm\:text-right     { text-align: right !important; }
    .sm\:justify-start  { justify-content: flex-start !important; }
    .sm\:justify-end    { justify-content: flex-end !important; }
    .sm\:mx-0           { margin-left: 0 !important; margin-right: 0 !important; }
}
@media (min-width: 768px) {
    .md\:text-left      { text-align: left !important; }
    .md\:justify-start  { justify-content: flex-start !important; }
    .md\:mx-0           { margin-left: 0 !important; margin-right: 0 !important; }
}
@media (min-width: 1024px) {
    .lg\:text-left      { text-align: left !important; }
    .lg\:justify-start  { justify-content: flex-start !important; }
    .lg\:mx-0           { margin-left: 0 !important; margin-right: 0 !important; }
}
