@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');


/* Dynamic font from admin settings - set by header.php */
:root { --site-font: 'Plus Jakarta Sans'; }


/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3385d6;
    --secondary: #00a3e0;
    --accent: #00c389;
    --dark: #0a1929;
    --dark2: #111827;
    --text: #1a202c;
    --text-mid: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --border: #e2e8f0;
    --bg: #f7fafc;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--site-font, 'DM Sans'), sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1rem;
}
h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { line-height: 1.8; margin-bottom: 1rem; color: var(--text-mid); }
a  { transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #0a1929;
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-info a:hover { color: #fff; }
.contact-info i { font-size: 0.8rem; }
.top-bar-right { display: flex; align-items: center; gap: 1.25rem; }
.currency-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.9);
}
.currency-selector i { font-size: 0.85rem; /* color from inline style */ }
.currency-selector select {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    font-family: inherit;
}
.currency-selector select option { background: #0a1929; color: #fff; }
.top-bar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }
.social-links { display: flex; gap: 0.875rem; }
.social-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s, filter 0.2s;
    display: flex;
    align-items: center;
}
.social-links a:hover { transform: translateY(-2px); filter: brightness(1.3); color: #fff; }
.social-links a i { /* color comes from inline style */ }

/* ===== NAVIGATION ===== */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.navbar { padding: 0; }

.navbar .container {
    display: flex;
    align-items: center;
    height: 76px;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 2.5rem;
}
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 42px; width: auto; display: block; }

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 0;
    align-items: stretch;
    flex: 1;
    height: 100%;
}
.nav-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: color 0.15s;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.nav-menu > li > a:hover { color: var(--primary); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a.active { color: var(--primary); }
.nav-menu > li > a i.fa-chevron-down {
    font-size: 0.5rem;
    color: #6b7280;
    transition: transform 0.2s;
    margin-left: 0.15rem;
}
.nav-menu > li:hover > a i.fa-chevron-down { transform: rotate(180deg); color: var(--primary); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.15s ease;
    padding: 0.5rem 0;
    z-index: 1001;
    list-style: none;
    border-radius: 0 0 4px 4px;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.12s, color 0.12s;
}
.dropdown-menu a i { color: var(--primary); width: 16px; font-size: 0.875rem; }
.dropdown-menu a:hover { background: #f5f8ff; color: var(--primary); }
.dropdown-menu a.active { background: #eff6ff; color: var(--primary); font-weight: 600; }

/* Nav actions — two buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border: 1.5px solid #111827;
    color: #111827;
    background: transparent;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.15s;
    white-space: nowrap;
}
.btn-nav-outline:hover { background: #111827; color: #fff; }

.client-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.15s;
    white-space: nowrap;
    border: 1.5px solid var(--primary);
}
.client-portal-btn i { font-size: 0.875rem; }
.client-portal-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    width: 22px; height: 2px;
    background: #111827;
    border-radius: 1px;
    display: block;
    transition: all 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
    background: #1a237e;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 60px 20px 0;
    z-index: 2;
}

.hero-left h1 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

.hero-left p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.hero-left .hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    flex: 0 0 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img-wrap {
    width: 100%;
    max-width: 520px;
    padding-top: 0;
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transform: scale(1.15);
    transform-origin: bottom center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

/* ===== SECTION BACKGROUNDS - unique per section ===== */

/* Services: light blue-grey with soft colorful glows — tech/digital feel */
.services-preview {
    background-color: #f0f4ff;
    background-image:
        radial-gradient(ellipse 55% 60% at 5% 15%, rgba(59,130,246,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 95% 85%, rgba(139,92,246,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 35% 40% at 50% 50%, rgba(20,184,166,0.07) 0%, transparent 70%);
    padding: 40px 0;
    position: relative;
}

/* Reset heading overrides back to dark on light bg */
.services-preview h2 {
    color: #111827 !important;
}
.services-preview .section-eyebrow {
    color: var(--primary);
    background: rgba(0,102,204,0.08);
}
.services-preview .section-subtitle {
    color: #6b7280 !important;
}

/* Pricing: deep navy gradient — premium, value */
.pricing-section {
    background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 90px 0;
    position: relative;
}
.pricing-section h2,
.pricing-section > .container > p,
.pricing-section .section-subtitle {
    color: #f1f5f9 !important;
}

/* About preview: warm off-white with large soft radial blobs */
.about-preview {
    background-color: #fafafa;
    background-image:
        radial-gradient(ellipse 60% 50% at 15% 50%, rgba(59,130,246,0.06) 0%, transparent 100%),
        radial-gradient(ellipse 50% 60% at 85% 30%, rgba(99,102,241,0.06) 0%, transparent 100%);
    padding: 90px 0;
    position: relative;
}

/* Hosting features: rich green gradient — uptime/reliability */
.hosting-features {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    padding: 90px 0;
    position: relative;
}
.hosting-features h2,
.hosting-features > .container > p,
.hosting-features .section-subtitle {
    color: #ecfdf5 !important;
}
.hosting-features .feature-card-large {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}
.hosting-features .feature-card-large h3 { color: #fff; }
.hosting-features .feature-card-large p { color: rgba(255,255,255,0.75); }
.hosting-features .feature-icon { background: rgba(255,255,255,0.12); }
.hosting-features .feature-icon i { color: #6ee7b7; }

/* Tech specs: dark slate with graph-paper grid — server/technical */
.tech-specs {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(99,102,241,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 90px 0;
    position: relative;
}
.tech-specs h2,
.tech-specs > .container > p,
.tech-specs .section-subtitle {
    color: #f1f5f9 !important;
}
.tech-specs .spec-category {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.tech-specs .spec-category h3 { color: #e2e8f0; }
.tech-specs .spec-category ul li { color: #94a3b8; border-color: rgba(255,255,255,0.06); }

/* Portfolio: deep purple gradient — creative/design */
.portfolio-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    padding: 45px 0;
    position: relative;
}
.portfolio-section h2,
.portfolio-section > .container > p,
.portfolio-section .section-subtitle {
    color: #ede9fe !important;
}
.portfolio-section .filter-btn {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.portfolio-section .filter-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}
.portfolio-section .filter-btn:hover {
    border-color: #a78bfa;
    color: #a78bfa;
}

/* Contact: teal gradient — approachable/open */
.contact-section {
    background: linear-gradient(135deg, #0f4c5c 0%, #0e7490 50%, #0f4c5c 100%);
    padding: 90px 0;
    position: relative;
}
.contact-section h2,
.contact-section > .container > p,
.contact-section .section-subtitle {
    color: #e0f7fa !important;
}
.contact-section .contact-info h2 { color: #e0f7fa !important; }
.contact-section .contact-info > p { color: rgba(255,255,255,0.75) !important; }
.contact-section .contact-item {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}
.contact-section .contact-item h3 { color: #fff; }
.contact-section .contact-item p { color: rgba(255,255,255,0.7); }

/* Domain section (domains.html): orange tint with crosshatch */
.domain-section {
    background-color: #fff7ed;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(249,115,22,0.07) 20px, rgba(249,115,22,0.07) 21px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(249,115,22,0.07) 20px, rgba(249,115,22,0.07) 21px);
    padding: 90px 0;
    position: relative;
}

/* About page section: light lavender with soft blobs */
.about-section {
    background-color: #f5f3ff;
    background-image:
        radial-gradient(ellipse 55% 45% at 10% 25%, rgba(139,92,246,0.08) 0%, transparent 100%),
        radial-gradient(ellipse 45% 55% at 90% 75%, rgba(167,139,250,0.08) 0%, transparent 100%);
    padding: 90px 0;
    position: relative;
}

/* Services detail: rose/red with small dots */
.services-detail {
    background-color: #fff1f2;
    background-image: radial-gradient(circle, #fca5a5 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 90px 0;
    position: relative;
}

/* Testimonials: clean white — let the cards stand out */
.testimonials-section {
    background-color: #f8fafc;
    background-image:
        linear-gradient(rgba(226,232,240,0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226,232,240,0.6) 1px, transparent 1px);
    background-size: 60px 60px;
    padding: 40px 0;
    position: relative;
}

/* Section headers - clean, no gradient text */
.services-preview h2,
.pricing-section h2,
.about-preview h2,
.hosting-features h2,
.tech-specs h2,
.portfolio-section h2,
.contact-section h2,
.domain-section h2,
.about-section h2,
.services-detail h2,
.testimonials-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Dark section headings override */
.pricing-section h2,
.hosting-features h2,
.tech-specs h2,
.portfolio-section h2,
.contact-section h2 {
    color: #f1f5f9;
}

.section-subtitle,
.services-preview > .container > p,
.pricing-section > .container > p,
.about-preview > .container > p {
    color: #6b7280;
    font-size: 1.1rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

/* Dark section subtitles */
.pricing-section > .container > p,
.hosting-features > .container > p,
.tech-specs > .container > p,
.portfolio-section > .container > p,
.contact-section > .container > p {
    color: rgba(255,255,255,0.65);
}

/* ===== SERVICES PREVIEW ===== */
.section-eyebrow {
    display: block;
    width: fit-content;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(0,102,204,0.08);
    padding: 0.35rem 0.875rem;
    border-radius: 20px;
    margin: 0 auto 0.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

/* Card base */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* left color bar */
.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 16px 0 0 16px;
    transition: width 0.28s ease;
}
.service-card:hover::before { width: 6px; }
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Icon */
.sc-icon-wrap {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.28s ease;
}
.service-card:hover .sc-icon-wrap { transform: scale(1.08) rotate(-6deg); }
.sc-icon-wrap i { font-size: 1.4rem; }

/* Content */
.sc-content { flex: 1; min-width: 0; }
.sc-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}
.sc-content p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 0.875rem;
}
.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
}
.sc-link i { font-size: 0.6rem; transition: transform 0.2s; }
.service-card:hover .sc-link i { transform: translateX(3px); }

/* ── Color themes ── */

/* Blue */
.sc-blue::before                  { background: #3b82f6; }
.sc-blue .sc-icon-wrap             { background: #eff6ff; }
.sc-blue .sc-icon-wrap i           { color: #2563eb; }
.sc-blue .sc-content h3            { color: #1e40af; }
.sc-blue .sc-link                  { color: #2563eb; }
.sc-blue:hover                     { border-color: #bfdbfe; box-shadow: 0 16px 40px rgba(59,130,246,0.12); }

/* Violet */
.sc-violet::before                 { background: #8b5cf6; }
.sc-violet .sc-icon-wrap           { background: #faf5ff; }
.sc-violet .sc-icon-wrap i         { color: #7c3aed; }
.sc-violet .sc-content h3          { color: #5b21b6; }
.sc-violet .sc-link                { color: #7c3aed; }
.sc-violet:hover                   { border-color: #e9d5ff; box-shadow: 0 16px 40px rgba(139,92,246,0.12); }

/* Pink */
.sc-pink::before                   { background: #ec4899; }
.sc-pink .sc-icon-wrap             { background: #fdf2f8; }
.sc-pink .sc-icon-wrap i           { color: #db2777; }
.sc-pink .sc-content h3            { color: #9d174d; }
.sc-pink .sc-link                  { color: #db2777; }
.sc-pink:hover                     { border-color: #fbcfe8; box-shadow: 0 16px 40px rgba(236,72,153,0.12); }

/* Green */
.sc-green::before                  { background: #22c55e; }
.sc-green .sc-icon-wrap            { background: #f0fdf4; }
.sc-green .sc-icon-wrap i          { color: #16a34a; }
.sc-green .sc-content h3           { color: #14532d; }
.sc-green .sc-link                 { color: #16a34a; }
.sc-green:hover                    { border-color: #bbf7d0; box-shadow: 0 16px 40px rgba(34,197,94,0.12); }

/* Orange */
.sc-orange::before                 { background: #f97316; }
.sc-orange .sc-icon-wrap           { background: #fff7ed; }
.sc-orange .sc-icon-wrap i         { color: #ea580c; }
.sc-orange .sc-content h3          { color: #7c2d12; }
.sc-orange .sc-link                { color: #ea580c; }
.sc-orange:hover                   { border-color: #fed7aa; box-shadow: 0 16px 40px rgba(249,115,22,0.12); }

/* Teal */
.sc-teal::before                   { background: #14b8a6; }
.sc-teal .sc-icon-wrap             { background: #f0fdfa; }
.sc-teal .sc-icon-wrap i           { color: #0d9488; }
.sc-teal .sc-content h3            { color: #134e4a; }
.sc-teal .sc-link                  { color: #0d9488; }
.sc-teal:hover                     { border-color: #99f6e4; box-shadow: 0 16px 40px rgba(20,184,166,0.12); }

@media (max-width: 960px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #0a1929 0%, #0f2744 50%, #0a1929 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(59,130,246,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(139,92,246,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

/* Vertical dividers between cards */
.stat-card + .stat-card {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-card {
    text-align: center;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: background 0.3s ease;
}
.stat-card:hover {
    background: rgba(255,255,255,0.04);
}

.stat-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.stat-card:hover .stat-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.stat-icon-wrap i { font-size: 1.5rem; }

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}
.stat-label {
    font-size: 0.9375rem;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.stat-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card + .stat-card { border-left: none; }
    .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .stat-card:nth-child(1),
    .stat-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ===== TESTIMONIALS - SLIDER ===== */
.testimonials-grid { display: none; } /* replaced by slider */

.testi-header {
    text-align: center;
    margin-bottom: 3rem;
}
.testi-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}
.testi-header p {
    font-size: 1rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}
.testi-header p strong { color: #111827; }
.testi-stars-inline i { color: #fbbf24; font-size: 0.9rem; }

.testi-slider-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-arrow {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.testi-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,102,204,0.2);
}

.testi-slider {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    overflow: hidden;
}

.testi-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: none;
}
.testi-card.visible { display: block; }
.testi-card:hover {
    box-shadow: 0 10px 32px rgba(0,102,204,0.1);
    border-color: rgba(0,102,204,0.2);
    transform: translateY(-3px);
}

.testi-card-top {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}
.testi-card-top img {
    width: 52px; height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}
.testi-author { flex: 1; }
.testi-author h4 { font-size: 1rem; font-weight: 700; color: #111827; margin: 0 0 0.2rem; }
.testi-author span { font-size: 0.8125rem; color: #6b7280; }

.testi-badge {
    background: #22c55e;
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    display: flex;
    gap: 0.2rem;
    flex-shrink: 0;
}
.testi-badge i { color: #fff; font-size: 0.75rem; }

.testi-card > p {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}
.testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}
.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Partner logos - marquee scroll */
.testi-partners {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
.testi-partners > span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 2rem;
}

/* Marquee track */
.testi-logos-track {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testi-logos-track:hover .testi-logos { animation-play-state: paused; }

.testi-logos {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: logoScroll 28s linear infinite;
    flex-wrap: nowrap;
}

@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testi-logo {
    flex-shrink: 0;
    opacity: 1;
    filter: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.testi-logo:hover { transform: scale(1.12); opacity: 0.85; }
.testi-logo img { height: 52px; width: auto; display: block; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 0 !important;
    background: none !important;
    overflow: hidden;
}

.about-preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

/* Left: dark visual panel */
.about-visual {
    position: relative;
    overflow: hidden;
}

.about-visual-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 0;
    background-image: url('https://images.unsplash.com/photo-1531973576160-7125cd663d86?w=900&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
}

/* Overlay: stronger at top & bottom, lighter in middle so image shows */
.about-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10,25,41,0.82) 0%,
            rgba(10,25,41,0.35) 35%,
            rgba(10,25,41,0.35) 65%,
            rgba(10,25,41,0.92) 100%
        );
    z-index: 0;
}

/* All children above overlay */
.about-visual-bg > *:not(.about-visual-overlay) { position: relative; z-index: 1; }

/* Top pill */
.about-year-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(251,191,36,0.15);
    border: 1px solid rgba(251,191,36,0.4);
    color: #fbbf24;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    align-self: flex-start;
}
.about-year-pill i { font-size: 0.7rem; }

/* Center card */
.about-center-card {
    text-align: center;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 320px;
    margin: auto 0;
}
.about-center-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(0,102,204,0.45);
}
.about-center-icon i { font-size: 1.6rem; color: #fff; }
.about-center-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}
.about-center-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 500;
}
.about-center-divider {
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    margin: 1rem auto;
    opacity: 0.7;
}
.about-center-tagline {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    line-height: 1.5;
}

/* Bottom offices row */
.about-offices-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(10,25,41,0.75);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.1rem 1.5rem;
    margin-top: auto;
}
.about-office {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}
.about-office-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    margin: 0 1rem;
}
.about-flag-img {
    width: 28px;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    flex-shrink: 0;
}
.about-office strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.about-office span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Right: content panel */
.about-text {
    background: #ffffff;
    padding: 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(0,102,204,0.08);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    width: fit-content;
}
.about-eyebrow i { font-size: 0.75rem; }

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-align: left;
}

.about-lead {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.about-lead strong { color: #0f172a; }

/* 4 pillar cards */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.25rem;
}
.about-pillar {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}
.about-pillar:hover { transform: translateY(-3px); }

/* Card 1 — blue (Global Reach) */
.about-pillar:nth-child(1) {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.about-pillar:nth-child(1):hover {
    background: #dbeafe;
    box-shadow: 0 8px 24px rgba(59,130,246,0.15);
}
.about-pillar:nth-child(1) .about-pillar-icon {
    background: #3b82f6;
}
.about-pillar:nth-child(1) .about-pillar-icon i { color: #fff; }
.about-pillar:nth-child(1) h4 { color: #1d4ed8; }

/* Card 2 — green (Reliable Infrastructure) */
.about-pillar:nth-child(2) {
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.about-pillar:nth-child(2):hover {
    background: #dcfce7;
    box-shadow: 0 8px 24px rgba(34,197,94,0.15);
}
.about-pillar:nth-child(2) .about-pillar-icon {
    background: #22c55e;
}
.about-pillar:nth-child(2) .about-pillar-icon i { color: #fff; }
.about-pillar:nth-child(2) h4 { color: #15803d; }

/* Card 3 — purple (Custom Solutions) */
.about-pillar:nth-child(3) {
    background: #faf5ff;
    border-color: #e9d5ff;
}
.about-pillar:nth-child(3):hover {
    background: #f3e8ff;
    box-shadow: 0 8px 24px rgba(139,92,246,0.15);
}
.about-pillar:nth-child(3) .about-pillar-icon {
    background: #8b5cf6;
}
.about-pillar:nth-child(3) .about-pillar-icon i { color: #fff; }
.about-pillar:nth-child(3) h4 { color: #6d28d9; }

/* Card 4 — orange (24/7 Support) */
.about-pillar:nth-child(4) {
    background: #fff7ed;
    border-color: #fed7aa;
}
.about-pillar:nth-child(4):hover {
    background: #ffedd5;
    box-shadow: 0 8px 24px rgba(249,115,22,0.15);
}
.about-pillar:nth-child(4) .about-pillar-icon {
    background: #f97316;
}
.about-pillar:nth-child(4) .about-pillar-icon i { color: #fff; }
.about-pillar:nth-child(4) h4 { color: #c2410c; }

.about-pillar-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.about-pillar-icon i { font-size: 1.1rem; }
.about-pillar h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}
.about-pillar p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}
.about-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.about-contact-link:hover { gap: 0.75rem; color: var(--primary-dark); }
.about-contact-link i { font-size: 0.8rem; }

/* Old about-content (kept for other pages) */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-content h2 { font-size: 2.25rem; font-weight: 700; color: #111827; margin-bottom: 1.5rem; }
.about-content p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.25rem; }
.about-content .btn { margin-top: 1.5rem; }

/* Responsive */
@media (max-width: 960px) {
    .about-preview-inner { grid-template-columns: 1fr; }
    .about-visual-bg { min-height: 320px; }
    .about-text { padding: 2.5rem 2rem; }
    .about-text h2 { font-size: 2rem; }
}
@media (max-width: 560px) {
    .about-pillars { grid-template-columns: 1fr; }
    .about-text { padding: 2.5rem 1.5rem; }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: 2.75rem; font-weight: 800; color: #ffffff; margin-bottom: 1rem; letter-spacing: -0.03em; }
.cta-content p { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-secondary { border-color: rgba(255,255,255,0.5); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: 3rem; font-weight: 800; color: #ffffff; margin-bottom: 1rem; }
.page-header p { font-size: 1.2rem; color: rgba(255,255,255,0.85); }

/* ===== FOOTER ===== */
footer {
    background: #0d1117;
    color: var(--white);
    margin-top: 0;
}

.footer-top {
    padding: 4rem 0 3rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
    background:
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0,102,204,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(0,163,224,0.06) 0%, transparent 60%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
}

/* Brand col */
.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Payment methods */
.footer-payment { margin-top: 0.25rem; }
.footer-payment-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
}
.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}
.pay-logo {
    height: 28px;
    width: auto;
    border-radius: 6px;
    padding: 5px 10px;
    background: #fff;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.pay-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
/* Individual brand tints on the bg */
.pay-visa   { background: #1a1f71; }
.pay-mc     { background: #252525; }
.pay-amex   { background: #007bc1; }
.pay-paypal { background: #003087; }
.pay-bank {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #1a6b3c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: default;
}
.pay-bank i { font-size: 0.85rem; }
.pay-btc    { background: #f7931a; }
.pay-eth    { background: #627eea; }

/* Link cols */
.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.footer-col ul li a i {
    font-size: 0.55rem;
    color: var(--primary);
    transition: transform 0.2s;
}
.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-col ul li a:hover i { transform: translateX(3px); }

/* Contact col */
.footer-contact-items { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.footer-contact-item i {
    color: var(--primary);
    font-size: 0.875rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 14px;
}
.footer-contact-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,102,204,0.12);
    border-color: rgba(0,102,204,0.3);
}
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0,102,204,0.15);
    transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.pricing-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text); }
.price { font-size: 3.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; line-height: 1; }
.price span { font-size: 1.1rem; color: var(--text-light); font-weight: 500; }

.pricing-card ul { list-style: none; margin: 2rem 0; text-align: left; }
.pricing-card ul li {
    padding: 0.875rem 0;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-card .btn { width: 100%; margin-top: 1.25rem; text-align: center; }

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-card {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.service-detail-card:hover {
    box-shadow: 0 16px 48px rgba(0,102,204,0.12);
    border-color: rgba(0,102,204,0.2);
    transform: translateY(-4px);
}
.service-icon {
    flex-shrink: 0;
    width: 100px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,102,204,0.08);
    border-radius: 20px;
    border: 1px solid rgba(0,102,204,0.15);
}
.service-icon i { font-size: 3rem; color: var(--primary); }
.service-info h2 { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.service-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.service-info ul { list-style: none; margin: 1.5rem 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.875rem; }
.service-info ul li { display: flex; align-items: center; color: var(--text-mid); font-weight: 500; }
.service-info ul li::before {
    content: "✓";
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: var(--primary); color: #fff;
    border-radius: 50%; font-size: 0.7rem; font-weight: 700;
    margin-right: 0.75rem; flex-shrink: 0;
}

/* ===== HOSTING FEATURES ===== */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-large {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.feature-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,102,204,0.12);
    border-color: rgba(0,102,204,0.25);
}
.feature-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.25rem;
    background: rgba(0,102,204,0.08);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.feature-card-large:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-icon i { font-size: 2.25rem; color: var(--primary); }
.feature-card-large h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.feature-card-large p { color: var(--text-mid); line-height: 1.7; font-size: 0.9375rem; margin: 0; }

/* ===== TECH SPECS ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.spec-category {
    background: #ffffff;
    padding: 2.25rem;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.spec-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,102,204,0.1);
    border-color: rgba(0,102,204,0.2);
}
.spec-category h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text); display: flex; align-items: center; gap: 0.6rem; }
.spec-category h3 i { color: var(--primary); font-size: 1.3rem; }
.spec-category ul { list-style: none; }
.spec-category ul li { padding: 0.65rem 0; color: var(--text-mid); border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; gap: 0.6rem; font-size: 0.9375rem; }
.spec-category ul li::before { content: "→"; color: var(--primary); font-weight: 700; }
.spec-category ul li:last-child { border-bottom: none; }

/* ===== PORTFOLIO ===== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    color: var(--text-mid);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.portfolio-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,102,204,0.12);
    border-color: rgba(0,102,204,0.25);
}
.portfolio-image { position: relative; overflow: hidden; }
.portfolio-image img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover .portfolio-image img { transform: scale(1.08); }
.portfolio-info { padding: 1.75rem; }
.portfolio-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.category { display: inline-block; padding: 3px 10px; background: rgba(0,102,204,0.08); color: var(--primary); font-weight: 600; font-size: 0.8rem; border-radius: 15px; margin-bottom: 0.5rem; }
.date { color: var(--text-light); font-size: 0.875rem; margin: 0.5rem 0; }
.project-link { color: var(--primary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.project-link:hover { gap: 0.65rem; }

.pagination { display: flex; justify-content: center; gap: 0.6rem; }
.page-btn { padding: 0.6rem 1.25rem; border: 2px solid #e5e7eb; background: #fff; cursor: pointer; border-radius: 8px; font-weight: 600; transition: all 0.25s; }
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text); }
.contact-info > p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.8; }
.contact-item {
    display: flex; gap: 1.25rem;
    margin: 1.75rem 0; padding: 1.25rem;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}
.contact-item:hover { background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.contact-item i { font-size: 1.5rem; color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }
.contact-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.contact-item p { color: var(--text-mid); line-height: 1.6; margin: 0; font-size: 0.9375rem; }

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
.contact-form .form-group { margin-bottom: 1.5rem; }

/* Contact Form Alerts */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.contact-alert-success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
}
.contact-alert-error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
}
.contact-alert-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-alert-success .contact-alert-icon { color: #059669; }
.contact-alert-error .contact-alert-icon { color: #dc2626; }
.contact-alert-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}
.contact-alert-success .contact-alert-content strong { color: #065f46; }
.contact-alert-error .contact-alert-content strong { color: #991b1b; }
.contact-alert-content p {
    margin: 0;
    font-size: 13px;
}
.contact-alert-success .contact-alert-content p { color: #047857; }
.contact-alert-error .contact-alert-content p { color: #b91c1c; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s ease;
    background: #f9fafb;
    color: var(--text);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

/* ===== DOMAIN PAGE ===== */
.domain-search { text-align: center; margin-bottom: 4rem; }
.domain-search h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 2rem; color: var(--text); }
.search-box {
    display: flex;
    max-width: 680px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.search-box input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    font-family: inherit;
}
.search-box input:focus { outline: none; border-color: var(--primary); }
.search-box .btn { border-radius: 0 10px 10px 0; padding: 1rem 2rem; }

.domain-pricing, .domain-features { margin: 4rem 0; }
.domain-pricing h2, .domain-features h2 { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 3rem; color: var(--text); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center; padding: 2.25rem;
    background: #fff; border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,102,204,0.1); }
.feature-card i { font-size: 3rem; color: var(--primary); margin-bottom: 1.25rem; display: block; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.feature-card p { color: var(--text-mid); line-height: 1.7; font-size: 0.9375rem; margin: 0; }

/* ===== ABOUT PAGE ===== */
.about-intro { max-width: 900px; margin: 0 auto 4rem; text-align: center; }
.about-intro h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.about-intro p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; }

.team-section { margin-top: 4rem; }
.team-section h2 { text-align: center; font-size: 2.25rem; font-weight: 700; margin-bottom: 3rem; color: var(--text); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.team-member {
    background: #fff; padding: 2.5rem 2rem;
    border-radius: 14px; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.team-member:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,102,204,0.12); border-color: rgba(0,102,204,0.25); }
.member-icon {
    width: 90px; height: 90px;
    background: rgba(0,102,204,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(0,102,204,0.12);
    transition: all 0.3s ease;
}
.team-member:hover .member-icon { transform: scale(1.1); border-color: rgba(0,102,204,0.3); }
.member-icon i { font-size: 2.5rem; color: var(--primary); }
.team-member h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.role { color: var(--text-light); font-weight: 600; font-size: 0.9rem; }

/* ===== HOSTING PAGE EXTRAS ===== */
.hosting-header { padding: 70px 0 60px; }
.server-icon-wrapper {
    width: 110px; height: 110px;
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.15);
    border-radius: 28px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.25);
    animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.server-icon-wrapper i { font-size: 3.5rem; color: #60a5fa; }
.header-features { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.header-features span { display: flex; align-items: center; gap: 0.5rem; font-size: 1.05rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.header-features i { color: #34d399; font-size: 1.1rem; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,102,204,0.35);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,102,204,0.45); }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed; top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===== ANIMATED BG (subtle) ===== */
.animated-bg { display: none; }

/* ===== MISC UTILITIES ===== */
.fade-in-up { animation: fadeInUp 0.6s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== DOMAIN SEARCH SECTION (Homepage) ===== */
.domain-search-section {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* subtle grid overlay */
.domain-search-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.domain-search-section .container { position: relative; z-index: 1; }

.domain-search-header { text-align: center; margin-bottom: 2.5rem; }
.domain-search-header h2 {
    font-size: 2.25rem; font-weight: 700;
    color: #ffffff; margin-bottom: 0.5rem;
}
.domain-search-header p { color: rgba(255,255,255,0.55); font-size: 1.05rem; }

.domain-tabs { display: flex; gap: 0; margin-bottom: 0; width: fit-content; }
.domain-tab {
    padding: 0.6rem 1.5rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    border: none; cursor: pointer;
    font-size: 0.9375rem; font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 8px 8px 0 0;
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--site-font, 'DM Sans'), sans-serif;
}
.domain-tab.active { background: #ffffff; color: #0f172a; }

.domain-search-box { max-width: 820px; margin: 0 auto; }

.domain-input-wrap {
    display: flex; align-items: stretch;
    background: #ffffff;
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.domain-input-wrap input {
    flex: 1; padding: 1.1rem 1.5rem;
    border: none; outline: none;
    font-size: 1.05rem; color: #1a202c;
    background: transparent;
    font-family: var(--site-font, 'DM Sans'), sans-serif;
}
.domain-input-wrap input::placeholder { color: #9ca3af; }
.domain-search-btn {
    padding: 1rem 2rem;
    background: var(--primary); color: #fff;
    border: none; cursor: pointer;
    font-size: 1rem; font-weight: 600;
    transition: background 0.2s ease;
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--site-font, 'DM Sans'), sans-serif;
    white-space: nowrap;
}
.domain-search-btn:hover { background: var(--primary-dark); }

/* Live Results */
.domain-results { margin-top: 1rem; display: none; }
.domain-results.active { display: block; }

.domain-result-item {
    display: flex; align-items: center; justify-content: space-between;
    border-radius: 8px; padding: 0.875rem 1.25rem;
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}
.domain-result-item.available {
    background: rgba(52,211,153,0.08);
    border: 1px solid rgba(52,211,153,0.2);
}
.domain-result-item.taken {
    background: rgba(248,113,113,0.07);
    border: 1px solid rgba(248,113,113,0.15);
}
.domain-result-item.unknown {
    background: rgba(148,163,184,0.07);
    border: 1px solid rgba(148,163,184,0.15);
}
.domain-result-name { font-size: 1rem; font-weight: 600; color: #fff; }
.domain-result-status { display: flex; align-items: center; gap: 0.875rem; }
.status-available { color: #34d399; font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 0.375rem; }
.status-taken { color: #f87171; font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 0.375rem; }
.status-unknown { color: #94a3b8; font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 0.375rem; }
.domain-result-price { font-weight: 700; color: #e2e8f0; font-size: 0.9375rem; }

.domain-add-btn {
    padding: 0.375rem 1rem;
    background: var(--primary); color: #fff;
    border-radius: 6px; font-size: 0.875rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
    white-space: nowrap;
}
.domain-add-btn:hover { background: var(--primary-dark); color: #fff; }

.domain-whois-btn {
    padding: 0.375rem 1rem;
    background: rgba(255,255,255,0.1); color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px; font-size: 0.875rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
    display: flex; align-items: center; gap: 0.375rem;
    white-space: nowrap;
}
.domain-whois-btn:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.35); }

.domain-searching { text-align: center; color: rgba(255,255,255,0.6); padding: 1.25rem; font-size: 0.9375rem; }

/* Domain Price Cards - colorful, extension only */
/* Domain Price Cards - white bg, colorful extension text */
.domain-prices {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.domain-price-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.domain-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.domain-price-card.com   .domain-ext-label { color: #3b82f6; }
.domain-price-card.net   .domain-ext-label { color: #10b981; }
.domain-price-card.info  .domain-ext-label { color: #8b5cf6; }
.domain-price-card.tv    .domain-ext-label { color: #ec4899; }
.domain-price-card.compk .domain-ext-label { color: #22c55e; }

.domain-ext-label {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.domain-price-card.compk .domain-ext-label {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.domain-price-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}
.domain-price-tag span { font-size: 0.75rem; font-weight: 400; color: #9ca3af; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-left h1 { font-size: 2.4rem; white-space: normal; }
    .hero-right { flex: 0 0 380px; }
}

@media (max-width: 900px) {
    .hero-inner { flex-direction: column; min-height: auto; }
    .hero-left { padding: 50px 0 20px; text-align: center; align-items: center; }
    .hero-right { flex: none; width: 100%; max-width: 300px; margin: 0 auto; }
    .domain-prices { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-currency { display: flex !important; }
    .navbar .container { height: 58px; }
    .logo { margin-right: 0; }
    .logo img { height: 36px; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 77px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 0.25rem 0 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 3px solid var(--primary);
        gap: 0;
        z-index: 999;
        align-items: flex-start;
        height: auto;
    }
    .nav-menu.active { display: flex; }
    .nav-menu > li { width: 100%; display: block; }
    .nav-menu > li > a {
        width: 100%;
        padding: 0.8rem 1.25rem;
        font-size: 0.875rem;
        text-transform: uppercase;
    }
    .nav-menu > li > a::after { display: none; }
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: #f0f7ff;
        color: var(--primary);
        border-left: 3px solid var(--primary);
        padding-left: calc(1.25rem - 3px);
    }
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid #f0f4f8;
        border-radius: 0;
        border-left: 3px solid #dbeafe;
        margin: 0;
        display: none;
        padding: 0.25rem 0;
        background: #f8faff;
    }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 0.65rem 1.25rem 0.65rem 2rem; font-size: 0.875rem; }

    .hero-left h1 { font-size: 2rem; white-space: normal; }
    .cta-content h2 { font-size: 2rem; }
    .page-header h1 { font-size: 2.25rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid-large { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-slider { grid-template-columns: 1fr; }
    .testi-arrow { display: none; }
    .testi-logos { gap: 2rem; }
    .testi-logo img { height: 36px; }
    .domain-input-wrap { flex-wrap: wrap; }
}

@media (max-width: 560px) {
    .domain-prices { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .hero-left h1 { font-size: 1.75rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
}


/* ===== SERVICES PAGE ===== */

/* Hero */
.services-hero {
    background: #0d1b3e;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.services-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 10% 50%, rgba(59,130,246,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 30%, rgba(139,92,246,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.services-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #60a5fa;
    background: rgba(96,165,250,0.12);
    border: 1px solid rgba(96,165,250,0.25);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}
.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.services-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
}

/* Services Grid Section */
.services-grid-section {
    background: #f8fafc;
    padding: 50px 0;
}

.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

/* Base card */
.service-card-pro {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
/* top color bar */
.service-card-pro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.service-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.service-icon-pro {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease;
}
.service-card-pro:hover .service-icon-pro { transform: scale(1.1) rotate(-6deg); }
.service-icon-pro i { font-size: 1.4rem; }

.service-card-pro > p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

.service-features-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}
.service-features-list li i {
    font-size: 0.7rem;
    flex-shrink: 0;
}

.service-card-pro .scp-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ── Service card color themes ── */

/* Blue — Web Development */
.scp-blue::before                   { background: #3b82f6; }
.scp-blue                           { border-color: #bfdbfe; }
.scp-blue .service-icon-pro         { background: #eff6ff; }
.scp-blue .service-icon-pro i       { color: #2563eb; }
.scp-blue .service-card-header h3   { color: #1e40af; }
.scp-blue .service-features-list li i { color: #3b82f6; }
.scp-blue .scp-btn                  { background: #2563eb; border-color: #2563eb; color: #fff; }
.scp-blue .scp-btn:hover            { background: #1d4ed8; border-color: #1d4ed8; }
.scp-blue:hover                     { border-color: #93c5fd; box-shadow: 0 16px 40px rgba(59,130,246,0.15); }

/* Green — Mobile Apps */
.scp-green::before                  { background: #22c55e; }
.scp-green                          { border-color: #bbf7d0; }
.scp-green .service-icon-pro        { background: #f0fdf4; }
.scp-green .service-icon-pro i      { color: #16a34a; }
.scp-green .service-card-header h3  { color: #15803d; }
.scp-green .service-features-list li i { color: #22c55e; }
.scp-green .scp-btn                 { background: #16a34a; border-color: #16a34a; color: #fff; }
.scp-green .scp-btn:hover           { background: #15803d; border-color: #15803d; }
.scp-green:hover                    { border-color: #86efac; box-shadow: 0 16px 40px rgba(34,197,94,0.15); }

/* Violet — E-commerce */
.scp-violet::before                 { background: #8b5cf6; }
.scp-violet                         { border-color: #e9d5ff; }
.scp-violet .service-icon-pro       { background: #faf5ff; }
.scp-violet .service-icon-pro i     { color: #7c3aed; }
.scp-violet .service-card-header h3 { color: #5b21b6; }
.scp-violet .service-features-list li i { color: #8b5cf6; }
.scp-violet .scp-btn                { background: #7c3aed; border-color: #7c3aed; color: #fff; }
.scp-violet .scp-btn:hover          { background: #6d28d9; border-color: #6d28d9; }
.scp-violet:hover                   { border-color: #c4b5fd; box-shadow: 0 16px 40px rgba(139,92,246,0.15); }

/* Pink — Custom Software */
.scp-pink::before                   { background: #ec4899; }
.scp-pink                           { border-color: #fbcfe8; }
.scp-pink .service-icon-pro         { background: #fdf2f8; }
.scp-pink .service-icon-pro i       { color: #db2777; }
.scp-pink .service-card-header h3   { color: #9d174d; }
.scp-pink .service-features-list li i { color: #ec4899; }
.scp-pink .scp-btn                  { background: #db2777; border-color: #db2777; color: #fff; }
.scp-pink .scp-btn:hover            { background: #be185d; border-color: #be185d; }
.scp-pink:hover                     { border-color: #f9a8d4; box-shadow: 0 16px 40px rgba(236,72,153,0.15); }

/* Amber — CMS Development */
.scp-amber::before                  { background: #f59e0b; }
.scp-amber                          { border-color: #fde68a; }
.scp-amber .service-icon-pro        { background: #fffbeb; }
.scp-amber .service-icon-pro i      { color: #d97706; }
.scp-amber .service-card-header h3  { color: #92400e; }
.scp-amber .service-features-list li i { color: #f59e0b; }
.scp-amber .scp-btn                 { background: #d97706; border-color: #d97706; color: #fff; }
.scp-amber .scp-btn:hover           { background: #b45309; border-color: #b45309; }
.scp-amber:hover                    { border-color: #fcd34d; box-shadow: 0 16px 40px rgba(245,158,11,0.15); }

/* Cyan — Web Hosting */
.scp-cyan::before                   { background: #06b6d4; }
.scp-cyan                           { border-color: #a5f3fc; }
.scp-cyan .service-icon-pro         { background: #ecfeff; }
.scp-cyan .service-icon-pro i       { color: #0891b2; }
.scp-cyan .service-card-header h3   { color: #164e63; }
.scp-cyan .service-features-list li i { color: #06b6d4; }
.scp-cyan .scp-btn                  { background: #0891b2; border-color: #0891b2; color: #fff; }
.scp-cyan .scp-btn:hover            { background: #0e7490; border-color: #0e7490; }
.scp-cyan:hover                     { border-color: #67e8f9; box-shadow: 0 16px 40px rgba(6,182,212,0.15); }

/* Orange — SEO */
.scp-orange::before                 { background: #f97316; }
.scp-orange                         { border-color: #fed7aa; }
.scp-orange .service-icon-pro       { background: #fff7ed; }
.scp-orange .service-icon-pro i     { color: #ea580c; }
.scp-orange .service-card-header h3 { color: #7c2d12; }
.scp-orange .service-features-list li i { color: #f97316; }
.scp-orange .scp-btn                { background: #ea580c; border-color: #ea580c; color: #fff; }
.scp-orange .scp-btn:hover          { background: #c2410c; border-color: #c2410c; }
.scp-orange:hover                   { border-color: #fdba74; box-shadow: 0 16px 40px rgba(249,115,22,0.15); }

/* Indigo — Dedicated Server Management */
.scp-indigo::before                 { background: #6366f1; }
.scp-indigo                         { border-color: #c7d2fe; }
.scp-indigo .service-icon-pro       { background: #eef2ff; }
.scp-indigo .service-icon-pro i     { color: #4f46e5; }
.scp-indigo .service-card-header h3 { color: #3730a3; }
.scp-indigo .service-features-list li i { color: #6366f1; }
.scp-indigo .scp-btn                { background: #4f46e5; border-color: #4f46e5; color: #fff; }
.scp-indigo .scp-btn:hover          { background: #4338ca; border-color: #4338ca; }
.scp-indigo:hover                   { border-color: #a5b4fc; box-shadow: 0 16px 40px rgba(99,102,241,0.15); }

/* Teal — Bug Fixes & Consultancy */
.scp-teal::before                   { background: #14b8a6; }
.scp-teal                           { border-color: #99f6e4; }
.scp-teal .service-icon-pro         { background: #f0fdfa; }
.scp-teal .service-icon-pro i       { color: #0d9488; }
.scp-teal .service-card-header h3   { color: #134e4a; }
.scp-teal .service-features-list li i { color: #14b8a6; }
.scp-teal .scp-btn                  { background: #0d9488; border-color: #0d9488; color: #fff; }
.scp-teal .scp-btn:hover            { background: #0f766e; border-color: #0f766e; }
.scp-teal:hover                     { border-color: #5eead4; box-shadow: 0 16px 40px rgba(20,184,166,0.15); }

/* Why Choose Us Section */
.services-why-section {
    background: #f8fafc;
    padding: 50px 0;
    border-top: 1px solid #e5e7eb;
}

.services-why-header {
    text-align: center;
    margin-bottom: 3rem;
}
.services-why-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}
.services-why-header p {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Base why-card */
.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1.5px solid #e5e7eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}
.why-card:hover { transform: translateY(-6px); }

.why-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.25s ease;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-icon i { font-size: 1.6rem; }

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.why-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Why card color themes ── */

/* Blue — Experience */
.why-blue                 { background: #eff6ff; border-color: #bfdbfe; }
.why-blue::before         { background: #3b82f6; }
.why-blue .why-icon       { background: #dbeafe; }
.why-blue .why-icon i     { color: #2563eb; }
.why-blue h4              { color: #1e40af; }
.why-blue:hover           { box-shadow: 0 12px 32px rgba(59,130,246,0.18); border-color: #93c5fd; }

/* Green — Expert Team */
.why-green                { background: #f0fdf4; border-color: #bbf7d0; }
.why-green::before        { background: #22c55e; }
.why-green .why-icon      { background: #dcfce7; }
.why-green .why-icon i    { color: #16a34a; }
.why-green h4             { color: #15803d; }
.why-green:hover          { box-shadow: 0 12px 32px rgba(34,197,94,0.18); border-color: #86efac; }

/* Violet — 24/7 Support */
.why-violet               { background: #faf5ff; border-color: #e9d5ff; }
.why-violet::before       { background: #8b5cf6; }
.why-violet .why-icon     { background: #f3e8ff; }
.why-violet .why-icon i   { color: #7c3aed; }
.why-violet h4            { color: #5b21b6; }
.why-violet:hover         { box-shadow: 0 12px 32px rgba(139,92,246,0.18); border-color: #c4b5fd; }

/* Orange — Quality */
.why-orange               { background: #fff7ed; border-color: #fed7aa; }
.why-orange::before       { background: #f97316; }
.why-orange .why-icon     { background: #ffedd5; }
.why-orange .why-icon i   { color: #ea580c; }
.why-orange h4            { color: #7c2d12; }
.why-orange:hover         { box-shadow: 0 12px 32px rgba(249,115,22,0.18); border-color: #fdba74; }

/* Responsive */
@media (max-width: 960px) {
    .services-grid-pro { grid-template-columns: repeat(2, 1fr); }
    .services-why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-hero-content h1 { font-size: 2.4rem; }
}
@media (max-width: 560px) {
    .services-grid-pro { grid-template-columns: 1fr; }
    .services-why-grid { grid-template-columns: 1fr; }
    .services-hero { padding: 60px 0; }
    .services-hero-content h1 { font-size: 1.9rem; }
    .services-grid-section, .services-why-section { padding: 35px 0; }
}


/* ===== SHARED HOSTING PRICING ===== */
.sh-pricing-section {
    background: #ffffff;
    padding: 72px 0 64px;
    border-top: 1px solid #e2e8f0;
}

.sh-pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.sh-pricing-header .services-eyebrow {
    margin-bottom: 1rem;
}
.sh-pricing-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0a1929;
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}
.sh-pricing-header p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards grid */
.sh-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* Base plan card */
.sh-plan {
    background: #fff;
    border: 1px solid #dde3ec;
    border-radius: 14px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.22s, transform 0.22s;
}
.sh-plan:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

/* Featured middle card */
.sh-plan-featured {
    border: 2px solid #0066cc;
    box-shadow: 0 12px 40px rgba(0,102,204,0.16);
    transform: translateY(-10px);
    background: #fff;
}
.sh-plan-featured:hover {
    box-shadow: 0 20px 56px rgba(0,102,204,0.22);
    transform: translateY(-14px);
}

/* Blue top bar on featured */
.sh-plan-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #0066cc;
    border-radius: 14px 14px 0 0;
}

/* Most Popular badge */
.sh-popular-badge {
    position: absolute;
    top: -1px;
    right: 1.75rem;
    background: #0066cc;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.28rem 0.875rem;
    border-radius: 0 0 8px 8px;
}

/* Plan name + description */
.sh-plan-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #e9edf3;
}

.sh-plan-icon {
    width: 46px; height: 46px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
}
.sh-plan-icon i { font-size: 1.2rem; }

.sh-icon-blue   { background: #eff6ff; }
.sh-icon-blue i { color: #2563eb; }
.sh-icon-indigo   { background: #eef2ff; }
.sh-icon-indigo i { color: #4f46e5; }
.sh-icon-violet   { background: #faf5ff; }
.sh-icon-violet i { color: #7c3aed; }

.sh-plan-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a1929;
    margin: 0 0 0.3rem;
    letter-spacing: -0.01em;
}
.sh-plan-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

/* Price block */
.sh-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 1.75rem;
}

.sh-price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    line-height: 1;
    align-self: flex-start;
    margin-top: 0.6rem;
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
}

.sh-price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0a1929;
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
}
.sh-plan-featured .sh-price-amount { color: #0066cc; }

.sh-price-period {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.4rem;
}

/* Feature list */
.sh-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    flex: 1;
}
.sh-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}
.sh-features li:last-child { border-bottom: none; }

.sh-features li i.fa-check {
    color: #16a34a;
    font-size: 0.75rem;
    flex-shrink: 0;
    width: 14px;
}
.sh-feat-no { color: #b0b8c4; }
.sh-features li.sh-feat-no i.fa-times {
    color: #d1d5db;
    font-size: 0.75rem;
    flex-shrink: 0;
    width: 14px;
}

/* CTA Buttons — match header button style exactly */
/* Outline style for regular cards (like .btn-nav-outline) */
.sh-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid #111827;
    color: #111827;
    background: transparent;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.15s;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.sh-btn-outline:hover {
    background: #111827;
    color: #fff;
}

/* Solid blue for featured card (like .client-portal-btn) */
.sh-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    background: #0066cc;
    color: #fff;
    border: 1.5px solid #0066cc;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.15s, border-color 0.15s;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.sh-btn-solid:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #fff;
}

/* Guarantee strip */
.sh-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.1rem 2rem;
    flex-wrap: wrap;
    gap: 0;
}
.sh-guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    padding: 0.4rem 1.5rem;
    white-space: nowrap;
}
.sh-guarantee-item i { font-size: 0.95rem; }
.sh-guarantee-divider {
    width: 1px;
    height: 20px;
    background: #dde3ec;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .sh-plans-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .sh-plan-featured { transform: none; }
    .sh-plan-featured:hover { transform: translateY(-4px); }
    .sh-guarantee { gap: 0.25rem; }
    .sh-guarantee-divider { display: none; }
    .sh-guarantee-item { padding: 0.4rem 1rem; }
}


/* ===== VPS PRICING ===== */
.vps-pricing-section {
    background: #fff;
    padding: 72px 0 64px;
    border-top: 1px solid #e2e8f0;
}

.vps-pricing-block {
    margin-bottom: 5rem;
}
.vps-pricing-block:last-child { margin-bottom: 0; }

.vps-pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.vps-pricing-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0a1929;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}
.vps-pricing-header p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

/* 3-col grid */
.vps-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* Base card */
.vps-plan {
    background: #fff;
    border: 1px solid #dde3ec;
    border-radius: 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
}
.vps-plan:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

/* Featured card */
.vps-plan-featured {
    border: 2px solid #0066cc;
    box-shadow: 0 12px 40px rgba(0,102,204,0.16);
    transform: translateY(-10px);
}
.vps-plan-featured:hover {
    box-shadow: 0 20px 56px rgba(0,102,204,0.22);
    transform: translateY(-14px);
}
.vps-plan-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #0066cc;
}

/* Badge */
.vps-popular-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: #0066cc;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.28rem 0.875rem;
    border-radius: 0 0 8px 8px;
}

/* Plan top: name + price */
.vps-plan-top {
    padding: 2rem 1.75rem 1.5rem;
    border-bottom: 1px solid #e9edf3;
}
.vps-plan-top h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a1929;
    margin: 0 0 0.875rem;
    letter-spacing: -0.01em;
}

.vps-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
}
.vps-price-cur {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    align-self: flex-start;
    margin-top: 0.45rem;
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
}
.vps-price-num {
    font-size: 2.75rem;
    font-weight: 900;
    color: #0a1929;
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
}
.vps-plan-featured .vps-price-num { color: #0066cc; }
.vps-price-mo {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.3rem;
}

/* Spec rows */
.vps-specs {
    padding: 0.5rem 0;
    flex: 1;
}
.vps-spec-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.75rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.vps-spec-row:last-child { border-bottom: none; }
.vps-spec-row:hover { background: #f8fafc; }

.vps-spec-icon {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vps-spec-icon i {
    font-size: 0.875rem;
    color: #0066cc;
}

.vps-spec-label {
    flex: 1;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}
.vps-spec-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a1929;
    text-align: right;
    white-space: nowrap;
}
.vps-spec-val.vps-addon {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.8125rem;
}
.vps-spec-val.vps-included {
    color: #16a34a;
    font-weight: 600;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.vps-spec-val.vps-included i { font-size: 0.7rem; }
.vps-spec-val.vps-na {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.8125rem;
}

/* Buttons — match header exactly */
.vps-btn-outline,
.vps-btn-solid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 1.75rem 1.75rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.15s;
    border: 1.5px solid;
}
.vps-btn-outline {
    background: transparent;
    color: #111827;
    border-color: #111827;
}
.vps-btn-outline:hover {
    background: #111827;
    color: #fff;
}
.vps-btn-solid {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}
.vps-btn-solid:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #fff;
}

@media (max-width: 960px) {
    .vps-plans-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .vps-plan-featured { transform: none; }
    .vps-plan-featured:hover { transform: translateY(-4px); }
}


/* ===== VPS PAGE — reduced section paddings ===== */
.vps-page .hosting-features   { padding: 48px 0; }
.vps-page .vps-pricing-section { padding: 52px 0 48px; border-top: 1px solid #e2e8f0; }
.vps-page .vps-pricing-block   { margin-bottom: 3.5rem; }
.vps-page .tech-specs          { padding: 48px 0; }
.vps-page .stats-section       { padding: 44px 0; }
.vps-page .testimonials-section { padding: 44px 0; }


/* ===== VPS PAGE — hero background ===== */
.vps-page .page-header {
    background:
        linear-gradient(135deg, rgba(10,25,41,0.82) 0%, rgba(0,40,90,0.75) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
}
.vps-page .page-header::before { display: none; }


/* ===== SHARED HOSTING PAGE — hero background ===== */
.shared-hosting-page .page-header {
    background:
        linear-gradient(135deg, rgba(4,30,66,0.83) 0%, rgba(0,60,100,0.76) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
}
.shared-hosting-page .page-header::before { display: none; }


/* ===== DEDICATED SERVERS PAGE ===== */
.dedicated-page .page-header {
    background:
        linear-gradient(135deg, rgba(8,18,36,0.75) 0%, rgba(0,30,70,0.68) 100%),
        url('https://images.unsplash.com/photo-1600132806370-bf17e65e942f?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
}
.dedicated-page .page-header::before { display: none; }

.dedicated-page .hosting-features   { padding: 48px 0; }
.dedicated-page .pricing-section     { padding: 52px 0; }
.dedicated-page .tech-specs          { padding: 48px 0; }
.dedicated-page .stats-section       { padding: 44px 0; }
.dedicated-page .testimonials-section { padding: 44px 0; }


/* ===== DEDICATED SERVERS — CARD ROW LAYOUT ===== */
.ds-pricing-section {
    background: #f8fafc;
    padding: 60px 0 52px;
    border-top: 1px solid #e2e8f0;
}

.ds-block { margin-bottom: 4rem; }
.ds-block:last-child { margin-bottom: 0; }

.ds-block-header {
    text-align: center;
    margin-bottom: 2rem;
}
.ds-block-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0a1929;
    margin-bottom: 0.4rem;
    letter-spacing: -0.025em;
}
.ds-block-header p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.ds-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Base card */
.ds-card {
    background: #fff;
    border: 1px solid #dde3ec;
    border-radius: 14px;
    padding: 1.75rem 2rem;
    position: relative;
    transition: box-shadow 0.22s, transform 0.22s;
}
.ds-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

/* Featured card */
.ds-card-featured {
    border: 2px solid #0066cc;
    box-shadow: 0 6px 28px rgba(0,102,204,0.13);
    background: #fafcff;
}
.ds-card-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #3b82f6);
    border-radius: 14px 14px 0 0;
}

/* Badge */
.ds-card-badge {
    position: absolute;
    top: 0; right: 1.75rem;
    background: #0066cc;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.875rem;
    border-radius: 0 0 8px 8px;
}

/* Top row: name | price | button */
.ds-card-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #edf2f7;
    flex-wrap: wrap;
}

.ds-card-name { flex: 1; min-width: 180px; }
.ds-card-name h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a1929;
    margin: 0;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.ds-card-name h3 span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: #f1f5f9;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
}
.ds-location-flag {
    background: none !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
}
.ds-location-flag .fi {
    font-size: 1.4em;
    width: 1.4em;
    line-height: 1;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.ds-card-pricing {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.ds-only {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}
.ds-price-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.05rem;
    line-height: 1;
}
.ds-cur {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin-top: 0.35rem;
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
}
.ds-num {
    font-size: 2.75rem;
    font-weight: 900;
    color: #0a1929;
    letter-spacing: -0.04em;
    font-family: var(--site-font, 'Plus Jakarta Sans'), sans-serif;
    line-height: 1;
}
.ds-card-featured .ds-num { color: #0066cc; }
.ds-cents {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.2rem;
    line-height: 1.45;
}

/* Order button */
.ds-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.75rem;
    background: #0066cc;
    color: #fff;
    border: 1.5px solid #0066cc;
    border-radius: 3px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.ds-order-btn:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #fff;
}

/* Specs grid — 4 cols */
.ds-card-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 1rem;
}
.ds-spec {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

/* Colored icon pills */
.ds-si {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ds-si i { font-size: 0.75rem; }

.ds-si-blue   { background: #eff6ff; }
.ds-si-blue i { color: #2563eb; }
.ds-si-green   { background: #f0fdf4; }
.ds-si-green i { color: #16a34a; }
.ds-si-violet   { background: #faf5ff; }
.ds-si-violet i { color: #7c3aed; }
.ds-si-orange   { background: #fff7ed; }
.ds-si-orange i { color: #ea580c; }
.ds-si-teal   { background: #f0fdfa; }
.ds-si-teal i { color: #0d9488; }
.ds-si-indigo   { background: #eef2ff; }
.ds-si-indigo i { color: #4f46e5; }
.ds-si-pink   { background: #fdf2f8; }
.ds-si-pink i { color: #db2777; }
.ds-si-amber   { background: #fffbeb; }
.ds-si-amber i { color: #d97706; }

/* ── Mobile: collapse to card style ── */
@media (max-width: 768px) {
    .ds-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .ds-order-btn { width: 100%; justify-content: center; }
    .ds-card-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ds-card-specs { grid-template-columns: 1fr; }
    .ds-card { padding: 1.25rem; }
}


/* ===== OFFSHORE PAGE — hero background ===== */
.offshore-page .page-header {
    background:
        linear-gradient(135deg, rgba(6,20,45,0.84) 0%, rgba(30,10,60,0.76) 100%),
        url('https://images.unsplash.com/photo-1614064641938-3bbee52942c7?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
}
.offshore-page .page-header::before { display: none; }
.offshore-page .hosting-features   { padding: 48px 0; }
.offshore-page .ds-pricing-section  { padding: 52px 0 48px; }
.offshore-page .tech-specs          { padding: 48px 0; }
.offshore-page .stats-section       { padding: 44px 0; }

/* ===== DOMAINS PAGE — hero background ===== */
.domains-page .page-header {
    background:
        linear-gradient(135deg, rgba(6,20,45,0.88) 0%, rgba(10,40,80,0.82) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
    padding: 70px 0 60px;
}
.domains-page .page-header::before { display: none; }

.domain-features-section {
    padding: 30px 0;
    background: #ffffff;
}
.domain-features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1a202c;
}

/* ===== PORTFOLIO PAGE — hero background ===== */
.portfolio-page .page-header {
    background:
        linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.82) 100%),
        url('https://images.unsplash.com/photo-1522542550221-31fd19575a2d?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
    padding: 70px 0 60px;
}
.portfolio-page .page-header::before { display: none; }

/* Portfolio page: fix grid layout for standalone page */
.portfolio-page .portfolio-section {
    padding: 60px 0;
    overflow: hidden;
}
.portfolio-page .portfolio-section .container {
    max-width: 1200px;
    overflow: hidden;
}
.portfolio-page .portfolio-section .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.portfolio-page .portfolio-section .portfolio-info h3 {
    color: var(--text);
}
.portfolio-page .portfolio-section .portfolio-info .category {
    color: var(--primary);
    background: rgba(0,102,204,0.08);
}
.portfolio-page .portfolio-section .project-link {
    color: var(--primary);
}
.portfolio-page .portfolio-section .pagination .page-btn {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.portfolio-page .portfolio-section .pagination .page-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}

/* ===== ABOUT PAGE — hero background & sections ===== */
.about-page .page-header {
    background:
        linear-gradient(135deg, rgba(15,23,42,0.90) 0%, rgba(30,58,138,0.85) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
    padding: 70px 0 60px;
}
.about-page .page-header::before { display: none; }

.about-story-section {
    padding: 60px 0 30px;
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-content .section-eyebrow {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0,102,204,0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-story-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-highlight-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.about-highlight-item p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.about-story-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offices-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center .section-eyebrow {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0,102,204,0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header-center h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.section-header-center p {
    font-size: 1.05rem;
    color: #6b7280;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.office-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.office-flag {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.office-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.office-location {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.office-location i {
    margin-right: 0.375rem;
}

.office-details {
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.office-details p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.office-details i {
    color: var(--primary);
    width: 18px;
}

.team-section {
    padding: 30px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.team-section .section-header-center {
    margin-bottom: 3rem;
}

.team-section .section-eyebrow {
    background: rgba(0,102,204,0.08);
    color: var(--primary);
}

.team-section h2 {
    color: #1a202c !important;
}

.team-section .section-header-center p {
    color: #6b7280;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-member {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(96,165,250,0.3);
    box-shadow: 0 20px 40px rgba(96,165,250,0.15);
}

.member-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    transition: all 0.4s ease;
}

.team-member:hover .member-photo img {
    border-color: #60a5fa;
    transform: scale(1.05);
}

.member-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(96,165,250,0.4);
}

.team-member h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.team-member .role {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.member-social a {
    flex: 1;
    max-width: 44px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:nth-child(1) {
    background: rgba(0,119,181,0.1);
    color: #0077b5;
    border: 1px solid rgba(0,119,181,0.2);
}

.member-social a:nth-child(1):hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,119,181,0.3);
}

.member-social a:nth-child(2) {
    background: rgba(29,161,242,0.1);
    color: #1da1f2;
    border: 1px solid rgba(29,161,242,0.2);
}

.member-social a:nth-child(2):hover {
    background: #1da1f2;
    color: #ffffff;
    border-color: #1da1f2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29,161,242,0.3);
}

.member-social a:nth-child(3) {
    background: rgba(234,67,53,0.1);
    color: #ea4335;
    border: 1px solid rgba(234,67,53,0.2);
}

.member-social a:nth-child(3):hover {
    background: #ea4335;
    color: #ffffff;
    border-color: #ea4335;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234,67,53,0.3);
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-story-visual {
        order: -1;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-story-content h2,
    .section-header-center h2 {
        font-size: 1.875rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-member h3 {
        font-size: 1rem;
    }
    
    .team-member .role {
        font-size: 0.8125rem;
    }
}

/* ===== CONTACT PAGE — hero background & sections ===== */
.contact-page .page-header {
    background:
        linear-gradient(135deg, rgba(15,23,42,0.90) 0%, rgba(30,58,138,0.85) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=85&auto=format&fit=crop') center center / cover no-repeat;
    padding: 70px 0 60px;
}
.contact-page .page-header::before { display: none; }

.contact-main-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-main-section .contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-form label i {
    color: var(--primary);
    margin-right: 0.375rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--site-font, 'DM Sans'), sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    color: #6b7280;
    margin-bottom: 1.75rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.375rem;
}

.contact-info-item p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0.125rem 0;
}

.contact-offices {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-offices h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.office-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.office-mini-card:last-child {
    margin-bottom: 0;
}

.office-mini-card img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.office-mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.office-mini-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-main-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card,
    .contact-offices {
        padding: 1.75rem;
    }
}

/* ═══════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════════ */

/* Prevent horizontal overflow on all screens */
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }
.container { padding-left: 15px; padding-right: 15px; }

@media (max-width: 768px) {
    /* Global spacing */
    section { padding: 2.5rem 0; }
    .container { padding-left: 16px; padding-right: 16px; }
    
    /* Hero */
    .hero { min-height: auto; }
    .hero-inner { min-height: auto; padding: 0 16px; }
    .hero-left { padding: 30px 0 15px; }
    .hero-left h1 { font-size: 1.75rem; line-height: 1.2; }
    .hero-left p { font-size: 0.95rem; }
    .hero-left .hero-subtitle { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .hero-buttons { gap: 0.6rem; }
    .hero-buttons .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .hero-right { max-width: 250px; }
    .hero-img-wrap img { transform: scale(1); }
    
    /* Page headers */
    .page-header { padding: 2rem 0; }
    .page-header h1 { font-size: 1.75rem; }
    .page-header p { font-size: 0.9rem; }
    .header-features { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
    .header-features span { font-size: 0.75rem; }
    
    /* Domain search */
    .domain-search-header h2 { font-size: 1.5rem; }
    .domain-search-box { padding: 1rem; }
    .domain-input-wrap { flex-direction: column; }
    .domain-input-wrap input { border-radius: 6px; }
    .domain-search-btn { border-radius: 6px; width: 100%; }
    .domain-prices { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .domain-price-card { padding: 12px 8px; }
    .domain-ext-label { font-size: 0.85rem; }
    .domain-price-tag { font-size: 0.9rem; }
    
    /* Services */
    .services-grid, .services-grid-pro { grid-template-columns: 1fr; }
    .services-why-grid { grid-template-columns: 1fr; }
    .service-card-pro { padding: 1.25rem; }
    
    /* Hosting plans */
    .sh-plans-grid, .vps-plans-grid { grid-template-columns: 1fr; }
    .sh-plan, .vps-plan { margin: 0; }
    
    /* Dedicated/Offshore server cards */
    .ds-cards { gap: 1rem; }
    .ds-card { padding: 1rem; }
    .ds-card-top { flex-direction: column; gap: 12px; align-items: flex-start; }
    .ds-card-name h3 { font-size: 1rem; }
    .ds-card-specs { grid-template-columns: 1fr; gap: 6px; }
    .ds-spec { font-size: 0.8rem; padding: 6px 8px; }
    .ds-block-header h2 { font-size: 1.4rem; }
    
    /* Features grid */
    .features-grid-large { grid-template-columns: 1fr; gap: 1rem; }
    .feature-card-large { padding: 1.25rem; }
    .feature-card-large h3 { font-size: 1rem; }
    
    /* Tech specs */
    .specs-grid { grid-template-columns: 1fr; gap: 1rem; }
    .spec-category { padding: 1rem; }
    
    /* Portfolio */
    .portfolio-grid { grid-template-columns: 1fr; gap: 1rem; }
    .portfolio-filters { flex-wrap: wrap; gap: 6px; justify-content: center; }
    .filter-btn { padding: 6px 12px; font-size: 0.75rem; }
    
    /* About / Team */
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
    
    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }
    
    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 1rem; }
    .stat-number { font-size: 1.75rem; }
    
    /* Testimonials */
    .testimonials-grid, .testi-slider { grid-template-columns: 1fr; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand { text-align: center; }
    .footer-payment-methods { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
    
    /* CTA */
    .cta-content h2 { font-size: 1.5rem; }
    .cta-content p { font-size: 0.9rem; }
    .cta-buttons { flex-direction: column; gap: 0.5rem; }
    .cta-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-left h1 { font-size: 1.5rem; }
    .hero-right { max-width: 200px; }
    .page-header h1 { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .domain-prices { grid-template-columns: 1fr; }
    .header-features span { font-size: 0.7rem; padding: 4px 8px; }
    .ds-card-pricing { flex-direction: column; align-items: flex-start; }
    .portfolio-filters { gap: 4px; }
    .filter-btn { padding: 5px 10px; font-size: 0.7rem; }
    .footer-col h4 { font-size: 0.95rem; }
    section { padding: 2rem 0; }
}

@media (max-width: 360px) {
    .container { padding-left: 12px; padding-right: 12px; }
    .hero-left h1 { font-size: 1.35rem; }
    .hero-buttons .btn { font-size: 0.75rem; padding: 0.45rem 0.8rem; }
    .ds-card { padding: 0.75rem; }
}

/* Portfolio page mobile fix */
@media (max-width: 768px) {
    .portfolio-page .portfolio-section .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .portfolio-image img { height: 180px; }
    .portfolio-info { padding: 1rem; }
    .portfolio-info h3 { font-size: 1rem; }
    .pagination { flex-wrap: wrap; gap: 6px; justify-content: center; }
    .page-btn { min-width: 36px; padding: 6px 10px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .portfolio-page .portfolio-section .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-image img { height: 200px; }
}

/* Mobile currency selector in navbar */
.mobile-currency { display: none; }
.mobile-currency select {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    font-family: inherit;
}
@media (max-width: 768px) {
    .mobile-currency { display: flex; align-items: center; margin-left: auto; margin-right: 10px; }
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Blog & Product single page mobile */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-content img {
        max-width: 100%;
        height: auto;
    }
}

/* ===== BLOG LAYOUT ===== */
.blog-main-section { padding: 50px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.blog-main { min-width: 0; }

/* Blog Post Meta Bar */
.blog-post-meta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 16px 20px; margin-bottom: 24px; gap: 12px;
}
.blog-meta-author { display: flex; align-items: center; gap: 10px; }
.blog-author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.blog-author-info { display: flex; flex-direction: column; }
.blog-author-name { font-weight: 700; color: #111827; font-size: 0.95rem; }
.blog-author-role { font-size: 0.75rem; color: #9ca3af; }
.blog-meta-details { display: flex; flex-wrap: wrap; gap: 16px; }
.blog-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.85rem; color: #6b7280; }
.blog-meta-item i { color: var(--primary); font-size: 0.8rem; }
.blog-cat-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.blog-cat-link:hover { text-decoration: underline; }

/* Featured Image */
.blog-featured-img { border-radius: 12px; overflow: hidden; margin-bottom: 30px; }
.blog-featured-img img { width: 100%; display: block; }

/* Blog Content */
.blog-content { font-size: 1.05rem; line-height: 1.9; color: #374151; }
.blog-content h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 2rem 0 1rem; }
.blog-content h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 1.5rem 0 0.75rem; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content ul, .blog-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; }
.blog-content blockquote {
    border-left: 4px solid var(--primary); background: #f0f7ff;
    padding: 16px 20px; margin: 1.5rem 0; border-radius: 0 8px 8px 0;
    font-style: italic; color: #374151;
}
.blog-content pre {
    background: #1e293b; color: #e2e8f0; padding: 20px; border-radius: 10px;
    overflow-x: auto; margin: 1.5rem 0; font-size: 0.9rem; line-height: 1.6;
}
.blog-content code { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; color: #e11d48; }
.blog-content pre code { background: none; padding: 0; color: inherit; }
.blog-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.blog-content a { color: var(--primary); text-decoration: underline; }
.blog-content a:hover { color: var(--primary-dark); }
.blog-content .btn { text-decoration: none; }
.blog-content .btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: background 0.2s; }
.blog-content .btn-primary:hover { background: var(--primary-dark); color: #fff; }

/* Tags */
.blog-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid #e5e7eb; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.blog-tags-label { font-weight: 600; color: #374151; display: flex; align-items: center; gap: 6px; }
.blog-tags-label i { color: var(--primary); }
.blog-tag {
    display: inline-block; background: #f3f4f6; color: #374151;
    padding: 4px 14px; border-radius: 20px; font-size: 0.8rem;
    text-decoration: none; transition: all 0.2s; border: 1px solid #e5e7eb;
}
.blog-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Share Bar */
.blog-share { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid #e5e7eb; }
.blog-share-label { font-weight: 600; color: #374151; font-size: 0.9rem; }
.blog-share-btn {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; font-size: 0.85rem; transition: transform 0.2s, box-shadow 0.2s;
}
.blog-share-btn:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.blog-share-fb { background: #1877f2; }
.blog-share-tw { background: #1da1f2; }
.blog-share-li { background: #0a66c2; }
.blog-share-wa { background: #25d366; }

.blog-back-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; color: var(--primary); font-weight: 600; text-decoration: none; }
.blog-back-link:hover { gap: 10px; }

/* Related Posts */
.blog-related { margin-top: 50px; padding-top: 30px; border-top: 2px solid #f3f4f6; }
.blog-related-title { font-size: 1.2rem; font-weight: 700; color: #111827; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.blog-related-title i { color: var(--primary); }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-related-card {
    text-decoration: none; border-radius: 10px; overflow: hidden;
    border: 1px solid #e5e7eb; transition: all 0.2s; background: #fff;
}
.blog-related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-related-img { height: 120px; overflow: hidden; }
.blog-related-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-related-info { padding: 12px; }
.blog-related-info h4 { font-size: 0.85rem; font-weight: 600; color: #111827; margin-bottom: 4px; line-height: 1.4; }
.blog-related-info span { font-size: 0.75rem; color: #9ca3af; display: flex; align-items: center; gap: 4px; }

/* Blog List Cards */
.blog-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.blog-filter-tab {
    padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 500;
    text-decoration: none; color: #6b7280; background: #f3f4f6; border: 1px solid #e5e7eb; transition: all 0.2s;
}
.blog-filter-tab:hover { color: var(--primary); border-color: var(--primary); }
.blog-filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-filter-tab span { font-size: 0.75rem; opacity: 0.7; margin-left: 2px; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid #e5e7eb; transition: all 0.3s;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-card-img-wrap { display: block; height: 200px; overflow: hidden; position: relative; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }
.blog-card-img-wrap.no-img { background: #f3f4f6; }
.blog-card-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #d1d5db; font-size: 2.5rem; }
.blog-card-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff; padding: 3px 10px;
    border-radius: 6px; font-size: 0.7rem; font-weight: 600;
}
.blog-card-body { padding: 18px; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 10px; }
.blog-card-meta span { font-size: 0.75rem; color: #9ca3af; display: flex; align-items: center; gap: 4px; }
.blog-card-meta i { font-size: 0.7rem; color: var(--primary); }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: #111827; text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body > p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 14px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #f3f4f6; }
.blog-card-author { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #6b7280; font-weight: 500; }
.blog-author-avatar-sm {
    width: 24px; height: 24px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.6rem;
}
.blog-read-more { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { gap: 8px; }

.blog-empty { text-align: center; padding: 60px; color: #9ca3af; }
.blog-empty i { font-size: 48px; margin-bottom: 16px; display: block; opacity: 0.3; }

.blog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.blog-page-btn {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; border: 1px solid #e5e7eb; color: #6b7280;
    text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.blog-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.blog-page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.blog-widget {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 20px; margin-bottom: 20px;
}
.blog-widget-title {
    font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 16px;
    padding-bottom: 10px; border-bottom: 2px solid #f3f4f6;
    display: flex; align-items: center; gap: 8px;
}
.blog-widget-title i { color: var(--primary); font-size: 0.9rem; }

.blog-search-form { display: flex; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.blog-search-form input { flex: 1; border: none; padding: 10px 14px; font-size: 0.85rem; outline: none; font-family: inherit; }
.blog-search-form button { background: var(--primary); color: #fff; border: none; padding: 10px 14px; cursor: pointer; transition: background 0.2s; }
.blog-search-form button:hover { background: var(--primary-dark); }

.blog-widget-cats { list-style: none; padding: 0; margin: 0; }
.blog-widget-cats li { border-bottom: 1px solid #f3f4f6; }
.blog-widget-cats li:last-child { border-bottom: none; }
.blog-widget-cats a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; color: #374151; text-decoration: none; font-size: 0.9rem; transition: color 0.2s;
}
.blog-widget-cats a:hover, .blog-widget-cats a.active { color: var(--primary); font-weight: 600; }
.cat-count {
    background: #f3f4f6; color: #6b7280; padding: 2px 8px;
    border-radius: 10px; font-size: 0.75rem; font-weight: 600;
}
.blog-widget-cats a.active .cat-count { background: var(--primary); color: #fff; }

.blog-widget-latest { list-style: none; padding: 0; margin: 0; }
.blog-widget-latest li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.blog-widget-latest li:last-child { border-bottom: none; }
.blog-latest-thumb { width: 60px; height: 45px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.blog-latest-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-latest-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.blog-latest-info a { font-size: 0.85rem; font-weight: 600; color: #111827; text-decoration: none; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-latest-info a:hover { color: var(--primary); }
.blog-latest-info span { font-size: 0.7rem; color: #9ca3af; margin-top: 3px; display: flex; align-items: center; gap: 4px; }

.blog-widget-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .blog-sidebar .blog-widget { margin-bottom: 0; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .blog-post-meta { flex-direction: column; align-items: flex-start; }
}
