﻿:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --surface-alt: #111827;
    --text: #0f172a;
    --muted: #475569;
    --line: rgba(15, 23, 42, 0.1);
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --accent-soft: #dbeafe;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.topbar {
    background: #0f172a;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
}

.header-inner,
.hero-grid,
.content-grid,
.footer-grid,
.split-section,
.cta-banner {
    display: grid;
    gap: 24px;
}

.header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 1.35rem;
}

.brand-block {
    display: grid;
    gap: 2px;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.nav-list,
.footer-nav,
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.95rem;
    justify-content: center;
}

.nav-list a {
    font-weight: 700;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}

.hero,
.section {
    padding: 88px 0;
}

.hero-grid,
.split-section,
.content-grid,
.footer-grid,
.cta-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-home {
    padding-top: 68px;
}

.hero-grid-home {
    align-items: stretch;
}

.hero-home h1 {
    max-width: 14ch;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: var(--accent-dark);
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.hero-copy,
.section-heading,
.post-meta,
.site-footer p,
.stats-card p {
    color: var(--muted);
}

.hero-panel,
.info-card,
.post-card,
.page-card,
.stats-card,
.cta-banner,
.sidebar-area .widget,
.review-card,
.gallery-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel,
.info-card,
.post-card,
.page-card,
.stats-card,
.cta-banner,
.sidebar-area .widget,
.review-card,
.gallery-card {
    padding: 28px;
}

.panel-label {
    margin-top: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.feature-list li,
.footer-nav li,
.sidebar-area .widget {
    margin-bottom: 12px;
}

.compact-list li:last-child,
.footer-nav li:last-child {
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover,
.header-cta:hover {
    background: var(--accent-dark);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.section-muted {
    background: rgba(255, 255, 255, 0.4);
}

.section-dark {
    background: #0f172a;
    color: #fff;
}

.section-dark .eyebrow,
.section-dark .section-heading,
.section-dark p {
    color: #cbd5e1;
}

.centered {
    text-align: center;
}

.review-grid,
.gallery-grid,
.coverage-grid {
    display: grid;
    gap: 20px;
}

.review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.stars {
    color: #fbbf24;
    letter-spacing: 0.12em;
}

.split-section-wide {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.gallery-card {
    min-height: 220px;
    display: flex;
    align-items: end;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.78)),
        linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.gallery-card span {
    color: #fff;
    font-weight: 700;
}

.seo-grid {
    align-items: start;
}

.seo-copy-card p {
    color: var(--muted);
}

.seo-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.coverage-card {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.content-grid {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    padding: 72px 0;
    align-items: start;
}

.content-area {
    display: grid;
    gap: 20px;
}

.page-shell {
    padding: 72px 0;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.site-footer {
    padding: 52px 0 28px;
    border-top: 1px solid var(--line);
    background: #0b1220;
    color: #e2e8f0;
}

.site-footer h2,
.site-footer a,
.site-footer strong {
    color: #fff;
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .hero-grid,
    .split-section,
    .content-grid,
    .footer-grid,
    .cta-banner,
    .card-grid,
    .header-inner,
    .review-grid,
    .gallery-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        overflow-x: auto;
    }

    .topbar-inner,
    .footer-bottom,
    .contact-actions {
        justify-content: flex-start;
    }

    .header-cta {
        display: none;
    }

    h1 {
        max-width: none;
    }
}

.editorial-card,
.posts-intro {
    max-width: 920px;
}

.entry-content {
    display: grid;
    gap: 16px;
}

.entry-content ul,
.entry-content ol {
    padding-left: 22px;
    margin: 0;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.section-copy {
    color: var(--muted);
}

.editorial-card,
.posts-intro {
    max-width: 920px;
}

.entry-content {
    display: grid;
    gap: 16px;
}

.entry-content ul,
.entry-content ol {
    padding-left: 22px;
    margin: 0;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a,
.text-link {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-card,
.local-card,
.post-preview-grid .post-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-link {
    color: inherit;
}

.service-highlight,
.about-points,
.service-card,
.local-card,
.post-preview-grid .post-card {
    overflow: hidden;
}

.section-illustration,
.card-illustration {
    display: block;
    width: 100%;
    height: auto;
}

.hero-illustration {
    margin-top: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(15, 23, 42, 0.03));
}

.about-illustration {
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
}

.card-illustration {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.local-grid,
.post-preview-grid {
    display: grid;
    gap: 20px;
}

.local-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .local-grid,
    .post-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Pro Refinements */

:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-alt: #07152b;
    --text: #0b1b33;
    --muted: #526277;
    --line: rgba(11, 27, 51, 0.08);
    --accent: #0f67ff;
    --accent-dark: #0a4fc8;
    --accent-soft: #e7f0ff;
    --accent-soft-2: #ecfeff;
    --shadow: 0 24px 80px rgba(8, 30, 66, 0.08);
    --radius: 28px;
    --container: 1200px;
}

body {
    font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(15, 103, 255, 0.12), transparent 22%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent 18%),
        linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}

.topbar {
    background: linear-gradient(90deg, #081326 0%, #0f274d 100%);
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(11, 27, 51, 0.04);
}

.brand-mark {
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
}

.brand-text {
    font-size: 1.02rem;
    letter-spacing: 0.01em;
}

.header-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    box-shadow: 0 14px 30px rgba(15, 103, 255, 0.22);
}

.nav-list a {
    position: relative;
    padding-bottom: 4px;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-list a:hover::after {
    transform: scaleX(1);
}

.hero-home {
    padding: 64px 0 42px;
    position: relative;
}

.hero-grid-home {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
}

.hero-home h1 {
    font-size: clamp(3rem, 5.4vw, 5.4rem);
    letter-spacing: -0.03em;
    max-width: 12ch;
}

.hero-copy {
    max-width: 62ch;
    font-size: 1.05rem;
}

.hero-metrics {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 103, 255, 0.08);
    box-shadow: 0 18px 40px rgba(11, 27, 51, 0.06);
    backdrop-filter: blur(10px);
}

.metric-card strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-badges span {
    border: 1px solid rgba(15, 103, 255, 0.1);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
}

.service-highlight {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 28%),
        linear-gradient(160deg, #07152b 0%, #0f2850 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 80px rgba(7, 21, 43, 0.3);
}

.service-highlight .panel-label,
.service-highlight li {
    color: #dbeafe;
}

.hero-illustration {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.proof-strip {
    padding: 0 0 24px;
}

.proof-strip-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.proof-strip-inner span {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 103, 255, 0.08);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(11, 27, 51, 0.04);
}

.section {
    padding: 96px 0;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    max-width: 18ch;
    letter-spacing: -0.03em;
}

.centered h2,
.section-heading.centered h2 {
    margin-left: auto;
    margin-right: auto;
}

.section-copy {
    max-width: 62ch;
}

.info-card,
.page-card,
.post-card,
.stats-card,
.review-card,
.coverage-card,
.cta-banner {
    border-radius: 26px;
    border-color: rgba(11, 27, 51, 0.07);
    box-shadow: var(--shadow);
}

.service-card,
.local-card,
.post-preview-grid .post-card,
.process-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.local-card:hover,
.post-preview-grid .post-card:hover,
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(8, 30, 66, 0.12);
    border-color: rgba(15, 103, 255, 0.18);
}

.card-illustration {
    background: linear-gradient(135deg, #f8fbff 0%, #dbeafe 100%);
}

.text-link {
    font-weight: 700;
}

.reviews-section {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 25%),
        linear-gradient(180deg, #081326 0%, #0d1d39 100%);
}

.review-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
}

.process-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(231, 240, 255, 0.6));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 103, 255, 0.08);
    box-shadow: 0 16px 38px rgba(8, 30, 66, 0.06);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-section .split-section-wide {
    align-items: stretch;
}

.about-points {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.local-grid,
.post-preview-grid {
    gap: 22px;
}

.local-card,
.post-preview-grid .post-card {
    padding: 24px;
}

.faq-section .stats-card,
.about-points {
    border-color: rgba(15, 103, 255, 0.08);
}

.contact-banner {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 30%),
        linear-gradient(145deg, #081326 0%, #0d2244 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-banner .eyebrow,
.contact-banner p,
.contact-banner .text-link,
.contact-banner strong {
    color: #dbeafe;
}

.contact-banner .coverage-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.contact-banner .button-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 28%),
        linear-gradient(180deg, #071220 0%, #050d18 100%);
}

@media (max-width: 1024px) {
    .hero-grid-home,
    .split-section-wide,
    .process-grid,
    .proof-strip-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-grid-home,
    .hero-metrics,
    .proof-strip-inner,
    .process-grid,
    .local-grid,
    .post-preview-grid {
        grid-template-columns: 1fr;
    }

    .hero-home {
        padding-top: 40px;
    }

    .hero-home h1 {
        max-width: none;
    }
}

.menu-toggle,
.menu-backdrop,
.mobile-cta-bar {
    display: none;
}

.nav-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.header-contact-strip {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 103, 255, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(11, 27, 51, 0.06);
}

.contact-chip:hover {
    border-color: rgba(15, 103, 255, 0.24);
}

.menu-toggle {
    appearance: none;
    border: 0;
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: linear-gradient(135deg, #081326 0%, #0f2850 100%);
    box-shadow: 0 18px 38px rgba(7, 21, 43, 0.18);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-cta-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 35;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(7, 21, 43, 0.92);
    box-shadow: 0 28px 60px rgba(7, 21, 43, 0.34);
    backdrop-filter: blur(12px);
}

.mobile-cta-bar a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 800;
}

.mobile-cta-call {
    background: #fff;
    color: #081326;
}

.mobile-cta-whatsapp {
    background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
    color: #fff;
}

.service-regions-panel {
    margin-top: 28px;
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    border: 1px solid rgba(15, 103, 255, 0.08);
    box-shadow: 0 22px 48px rgba(8, 30, 66, 0.08);
}

.service-regions-copy h3 {
    margin-bottom: 10px;
}

.service-regions-copy p:last-child {
    margin-bottom: 0;
}

.service-regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
}

.service-region-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 103, 255, 0.1);
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(11, 27, 51, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-region-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 103, 255, 0.2);
    box-shadow: 0 18px 30px rgba(8, 30, 66, 0.08);
}

.blog-section-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.quote-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 28%),
        linear-gradient(145deg, #081326 0%, #0f2850 100%);
    color: #fff;
    box-shadow: 0 34px 80px rgba(7, 21, 43, 0.24);
}

.quote-banner-copy p,
.quote-banner-copy .eyebrow,
.quote-banner-card li,
.quote-banner-card strong {
    color: #dbeafe;
}

.quote-banner-badges {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quote-banner-badges span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.quote-banner-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote-banner-card .button {
    margin-top: 18px;
}

.quote-page-shell {
    padding-top: 48px;
}

.quote-page-card {
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.quote-page-card .entry-content {
    display: block;
}

.quote-form-shell {
    margin-top: 22px;
}

.quote-form-intro {
    margin-bottom: 22px;
}

.quote-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.quote-badges span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 103, 255, 0.08);
    border: 1px solid rgba(15, 103, 255, 0.08);
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.88rem;
}

.quote-notice {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
}

.quote-notice-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.16);
    color: #166534;
}

.quote-notice-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.16);
    color: #991b1b;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: start;
}

.quote-info-card,
.quote-form-card {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(15, 103, 255, 0.08);
    background: #fff;
    box-shadow: 0 20px 44px rgba(8, 30, 66, 0.08);
}

.quote-form-card {
    display: grid;
    gap: 18px;
}

.quote-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quote-field {
    display: grid;
    gap: 8px;
}

.quote-field span,
.quote-group-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    padding: 14px 16px;
    background: #f8fbff;
    color: var(--text);
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.quote-field input:focus,
.quote-field textarea:focus {
    outline: none;
    border-color: rgba(15, 103, 255, 0.34);
    box-shadow: 0 0 0 4px rgba(15, 103, 255, 0.1);
    background: #fff;
}

.quote-request-group {
    display: grid;
    gap: 12px;
}

.quote-request-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-request-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quote-request-card {
    min-height: 112px;
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #f8fbff;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.quote-request-card strong {
    color: var(--text);
}

.quote-request-card small {
    color: var(--muted);
    font-size: 0.86rem;
}

.quote-request-option input:checked + .quote-request-card {
    border-color: rgba(15, 103, 255, 0.24);
    background: linear-gradient(180deg, #ffffff 0%, #ecf5ff 100%);
    box-shadow: 0 18px 34px rgba(15, 103, 255, 0.1);
    transform: translateY(-2px);
}

.quote-submit {
    min-height: 52px;
}

@media (max-width: 900px) {
    body.menu-open {
        overflow: hidden;
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
    }

    body.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 29;
        border: 0;
        padding: 0;
        background: rgba(5, 13, 24, 0.46);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    body.menu-open .menu-backdrop {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-panel {
        position: fixed;
        top: 102px;
        left: 16px;
        right: 16px;
        z-index: 30;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 103, 255, 0.08);
        box-shadow: 0 32px 60px rgba(7, 21, 43, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.98);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        max-height: calc(100vh - 140px);
        overflow: auto;
    }

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

    .main-nav {
        overflow: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-list a::after {
        display: none;
    }

    .header-contact-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-chip,
    .header-contact-strip .header-cta {
        width: 100%;
        justify-content: center;
        min-height: 50px;
    }

    .header-contact-strip .header-cta {
        display: inline-flex;
    }

    .mobile-cta-bar {
        display: grid;
    }

    .service-regions-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .quote-banner,
    .quote-form-grid,
    .quote-field-grid,
    .quote-request-options {
        grid-template-columns: 1fr;
    }

    .quote-banner,
    .quote-page-card,
    .quote-info-card,
    .quote-form-card {
        padding: 24px;
    }

    .site-footer {
        padding-bottom: 108px;
    }
}

/* Premium refinement layer */

body {
    font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.11), transparent 22%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 26%),
        linear-gradient(180deg, #f9fbff 0%, #eef4ff 52%, #f7f9fc 100%);
}

h1,
h2,
h3,
.brand-text,
.quote-request-card strong {
    font-family: "Bahnschrift", "Aptos", "Trebuchet MS", sans-serif;
}

body:not(.theme-ready) .hero-grid-home,
body:not(.theme-ready) .proof-strip-inner,
body:not(.theme-ready) .card-grid,
body:not(.theme-ready) .quote-banner {
    opacity: 0;
    transform: translateY(18px);
}

.theme-ready .hero-grid-home,
.theme-ready .proof-strip-inner,
.theme-ready .card-grid,
.theme-ready .quote-banner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 420ms ease, transform 420ms ease;
}

.topbar {
    background:
        radial-gradient(circle at left, rgba(56, 189, 248, 0.16), transparent 22%),
        linear-gradient(90deg, #081326 0%, #0d2447 100%);
}

.topbar-inner {
    min-height: 50px;
}

.topbar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-pill {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dbeafe;
    font-size: 0.8rem;
    font-weight: 700;
}

.topbar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 800;
}

.site-header {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 32px rgba(8, 30, 66, 0.05);
}

.brand {
    gap: 14px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f67ff 0%, #38bdf8 100%);
    box-shadow: 0 16px 34px rgba(15, 103, 255, 0.24);
}

.brand-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.nav-list {
    gap: 20px;
}

.nav-list a {
    font-size: 0.94rem;
    letter-spacing: 0.01em;
}

.header-cta {
    min-height: 48px;
    padding: 0 20px;
}

.hero-home {
    position: relative;
    padding: 74px 0 54px;
}

.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}

.hero-home::before {
    width: 340px;
    height: 340px;
    top: -40px;
    left: -120px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 68%);
}

.hero-home::after {
    width: 420px;
    height: 420px;
    right: -140px;
    top: 40px;
    background: radial-gradient(circle, rgba(15, 103, 255, 0.14), transparent 68%);
}

.hero-grid-home {
    position: relative;
    gap: 38px;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.hero-home h1 {
    max-width: 11ch;
    letter-spacing: -0.04em;
}

.hero-copy {
    font-size: 1.06rem;
    max-width: 60ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 103, 255, 0.08);
    border: 1px solid rgba(15, 103, 255, 0.08);
    font-weight: 800;
}

.hero-metrics {
    gap: 16px;
}

.metric-card {
    border-radius: 24px;
}

.metric-card strong {
    font-family: "Bahnschrift", "Aptos", "Trebuchet MS", sans-serif;
    font-size: 1.6rem;
}

.hero-badges span {
    min-height: 38px;
    padding: 0 14px;
}

.service-highlight {
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.service-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 30%);
    pointer-events: none;
}

.hero-panel-meta {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.hero-panel-stat {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-stat strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 0.95rem;
}

.hero-panel-stat span {
    color: #dbeafe;
    font-size: 0.86rem;
}

.hero-panel-cta {
    width: 100%;
    margin-top: 18px;
}

.proof-strip {
    padding-bottom: 30px;
}

.proof-strip-inner span {
    min-height: 62px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
}

.section-heading {
    display: grid;
    gap: 12px;
}

.section-heading h2 {
    max-width: 16ch;
}

.section-copy {
    font-size: 1.02rem;
}

.info-card,
.page-card,
.post-card,
.stats-card,
.review-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.info-card::before,
.page-card::before,
.post-card::before,
.stats-card::before,
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 103, 255, 0.3), rgba(56, 189, 248, 0));
}

.service-card,
.local-card,
.post-preview-grid .post-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.card-index {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 103, 255, 0.14), rgba(56, 189, 248, 0.18));
    color: var(--accent-dark);
    font-family: "Bahnschrift", "Aptos", "Trebuchet MS", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
}

.card-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.card-chip {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 103, 255, 0.08);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.card-illustration {
    border-radius: 22px;
    min-height: 170px;
}

.service-regions-panel {
    margin-top: 32px;
}

.quote-banner {
    position: relative;
    overflow: hidden;
    padding: 38px;
}

.quote-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 26%);
    pointer-events: none;
}

.quote-banner-copy,
.quote-banner-card {
    position: relative;
    z-index: 1;
}

.review-card {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
}

.process-card {
    border-radius: 28px;
}

.about-points,
.quote-info-card,
.quote-form-card {
    border-radius: 28px;
}

.blog-highlight-section .post-card {
    min-height: 100%;
}

.blog-section-actions .button-secondary {
    min-width: 220px;
}

.contact-banner {
    border-radius: 30px;
}

.site-footer {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-grid-home,
    .quote-banner,
    .service-regions-panel {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
    }
}

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

    .topbar-inner {
        align-items: center;
        flex-direction: row;
        padding: 0;
    }

    .hero-home {
        padding: 48px 0 30px;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Executive palette refinement */

:root {
    --bg: #edf1f5;
    --surface: #ffffff;
    --surface-alt: #0a2137;
    --text: #102132;
    --muted: #5b6a7a;
    --line: rgba(16, 33, 50, 0.1);
    --accent: #0f4c81;
    --accent-dark: #0a2742;
    --accent-soft: #e8eef5;
    --shadow: 0 26px 70px rgba(10, 39, 66, 0.08);
}

body {
    background:
        radial-gradient(circle at top left, rgba(15, 76, 129, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(17, 58, 91, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f6 56%, #f7f8fb 100%);
}

.topbar {
    background:
        radial-gradient(circle at left, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(90deg, #0a2137 0%, #113a5b 100%);
}

.site-header {
    background: rgba(248, 250, 252, 0.94);
    border-bottom-color: rgba(16, 33, 50, 0.08);
}

.brand-mark,
.header-cta,
.button-primary,
.process-step {
    background: linear-gradient(135deg, #0f4c81 0%, #1b6a9c 100%);
}

.button-secondary,
.contact-chip,
.service-region-chip,
.proof-strip-inner span {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(16, 33, 50, 0.08);
}

.eyebrow,
.card-label,
.card-chip,
.quote-badges span {
    background: rgba(15, 76, 129, 0.07);
    border-color: rgba(15, 76, 129, 0.08);
    color: var(--accent-dark);
}

.service-highlight,
.quote-banner,
.contact-banner,
.site-footer {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
        linear-gradient(145deg, #0a2137 0%, #133756 100%);
}

.service-highlight .panel-label,
.service-highlight li,
.hero-panel-stat span,
.quote-banner-copy p,
.quote-banner-card li,
.quote-banner-card strong,
.contact-banner .eyebrow,
.contact-banner p,
.contact-banner strong,
.site-footer p,
.site-footer a {
    color: #dce7f1;
}

.reviews-section {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #0a2137 0%, #102e49 100%);
}

.review-card {
    background: rgba(255, 255, 255, 0.09);
}

.quote-banner-card,
.contact-banner .coverage-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Visual lift and vivid CTA layer */

:root {
    --call-start: #ff9a1f;
    --call-end: #ff5b2e;
    --wa-start: #25d366;
    --wa-end: #159947;
    --glow-gold: rgba(255, 154, 31, 0.28);
    --glow-green: rgba(37, 211, 102, 0.28);
}

.hero-home {
    padding-top: 84px;
}

.hero-grid-home > div:first-child {
    position: relative;
    z-index: 1;
}

.hero-copy {
    font-size: 1.08rem;
}

.hero-live-contact {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-call-card,
.hero-whatsapp-card {
    position: relative;
    overflow: hidden;
    min-height: 126px;
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 20px;
    border-radius: 26px;
    color: #fff;
    box-shadow: 0 26px 60px rgba(7, 21, 43, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-call-card::before,
.hero-whatsapp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.hero-call-card {
    background: linear-gradient(135deg, var(--call-start) 0%, var(--call-end) 100%);
    box-shadow: 0 26px 60px var(--glow-gold);
}

.hero-whatsapp-card {
    background: linear-gradient(135deg, var(--wa-start) 0%, var(--wa-end) 100%);
    box-shadow: 0 26px 60px var(--glow-green);
}

.hero-call-card:hover,
.hero-whatsapp-card:hover,
.header-call-cta:hover,
.header-whatsapp-cta:hover,
.mobile-cta-call:hover,
.mobile-cta-whatsapp:hover {
    transform: translateY(-3px);
}

.hero-contact-kicker,
.header-cta-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-call-card strong,
.hero-whatsapp-card strong {
    position: relative;
    z-index: 1;
    font-family: "Bahnschrift", "Aptos", "Trebuchet MS", sans-serif;
    font-size: 1.16rem;
    line-height: 1.15;
}

.hero-call-card small,
.hero-whatsapp-card small {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
}

.header-contact-strip {
    gap: 14px;
}

.header-call-cta,
.header-whatsapp-cta {
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: inline-grid;
    align-content: center;
    gap: 3px;
    padding: 10px 16px;
    border-radius: 22px;
    color: #fff;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-call-cta::before,
.header-whatsapp-cta::before,
.mobile-cta-call::before,
.mobile-cta-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%);
    pointer-events: none;
}

.header-call-cta::after,
.header-whatsapp-cta::after,
.mobile-cta-call::after,
.mobile-cta-whatsapp::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.26);
    opacity: 0;
    transform: scale(0.96);
    animation: ringPulse 2.8s ease-out infinite;
    pointer-events: none;
}

.header-call-cta {
    background: linear-gradient(135deg, var(--call-start) 0%, var(--call-end) 100%);
    box-shadow: 0 18px 38px var(--glow-gold);
}

.header-whatsapp-cta {
    background: linear-gradient(135deg, var(--wa-start) 0%, var(--wa-end) 100%);
    box-shadow: 0 18px 38px var(--glow-green);
}

.header-call-cta strong,
.header-whatsapp-cta strong {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.header-quote-cta {
    background: linear-gradient(135deg, #0f4c81 0%, #1b6a9c 100%);
    box-shadow: 0 18px 38px rgba(15, 76, 129, 0.2);
}

.hero-actions .button-primary {
    box-shadow: 0 18px 38px rgba(15, 76, 129, 0.22);
}

.hero-actions .button-secondary {
    color: #fff;
    border-color: rgba(37, 211, 102, 0.22);
    background: linear-gradient(135deg, var(--wa-start) 0%, var(--wa-end) 100%);
    box-shadow: 0 18px 38px var(--glow-green);
}

.topbar-phone {
    background: linear-gradient(135deg, var(--call-start) 0%, var(--call-end) 100%);
    box-shadow: 0 14px 30px rgba(255, 91, 46, 0.22);
}

.service-highlight {
    box-shadow: 0 38px 90px rgba(10, 33, 55, 0.34);
}

.quote-banner {
    box-shadow: 0 34px 90px rgba(10, 33, 55, 0.26);
}

.mobile-cta-bar {
    padding: 12px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(135deg, #0a2137 0%, #133756 100%);
}

.mobile-cta-call,
.mobile-cta-whatsapp {
    position: relative;
    overflow: hidden;
    min-height: 54px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.mobile-cta-call {
    background: linear-gradient(135deg, var(--call-start) 0%, var(--call-end) 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(255, 91, 46, 0.24);
}

.mobile-cta-whatsapp {
    background: linear-gradient(135deg, var(--wa-start) 0%, var(--wa-end) 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24);
}

.contact-banner .button-primary {
    background: linear-gradient(135deg, var(--call-start) 0%, var(--call-end) 100%);
    box-shadow: 0 18px 34px rgba(255, 91, 46, 0.24);
}

.contact-banner .button-secondary {
    background: linear-gradient(135deg, var(--wa-start) 0%, var(--wa-end) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.22);
}

@keyframes ringPulse {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }
    35% {
        opacity: 0.36;
    }
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@media (max-width: 1024px) {
    .hero-live-contact {
        grid-template-columns: 1fr;
    }

    .header-contact-strip {
        grid-template-columns: 1fr;
    }

    .header-call-cta,
    .header-whatsapp-cta,
    .header-quote-cta {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .hero-home {
        padding-top: 52px;
    }

    .hero-live-contact {
        gap: 12px;
    }

    .header-call-cta,
    .header-whatsapp-cta,
    .header-quote-cta {
        min-height: 58px;
    }
}

/* Responsive header fit + vivid color polish */

:root {
    --accent: #1566e0;
    --accent-dark: #0a2444;
    --call-start: #ffb327;
    --call-end: #ff5a2b;
    --wa-start: #32d67b;
    --wa-end: #0fa958;
}

body {
    background:
        radial-gradient(circle at top right, rgba(21, 102, 224, 0.08), transparent 24%),
        radial-gradient(circle at top left, rgba(255, 179, 39, 0.08), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.hero-home {
    background:
        radial-gradient(circle at top left, rgba(255, 179, 39, 0.16), transparent 18%),
        radial-gradient(circle at bottom right, rgba(21, 102, 224, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.nav-panel {
    align-items: start;
}

.main-nav {
    min-width: 0;
}

.header-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    min-width: min(100%, 540px);
}

.header-contact-strip > a {
    min-width: 0;
}

.header-call-cta,
.header-whatsapp-cta,
.header-quote-cta {
    width: 100%;
}

.header-call-cta,
.header-whatsapp-cta {
    justify-items: start;
    text-align: left;
    padding-inline: 15px;
}

.header-call-cta strong,
.header-whatsapp-cta strong {
    font-size: clamp(0.84rem, 0.76rem + 0.28vw, 0.98rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-quote-cta {
    min-height: 56px;
    border-radius: 22px;
}

.topbar-pill {
    background: linear-gradient(135deg, rgba(255, 179, 39, 0.14), rgba(21, 102, 224, 0.11));
    border-color: rgba(21, 102, 224, 0.14);
    color: #0a2444;
}

.hero-home h1 {
    background: linear-gradient(135deg, #081f38 0%, #135ac9 56%, #16a8b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section:not(.section-dark) .section-heading h2,
.service-regions-copy h3 {
    background: linear-gradient(135deg, #0a2444 0%, #135ac9 58%, #0e7490 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
}

.eyebrow,
.card-label,
.quote-badges span {
    background: linear-gradient(135deg, rgba(21, 102, 224, 0.12), rgba(22, 168, 184, 0.11));
    border-color: rgba(21, 102, 224, 0.14);
    color: #0c4aa2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.card-chip {
    background: linear-gradient(135deg, rgba(255, 179, 39, 0.18), rgba(255, 90, 43, 0.12));
    border-color: rgba(255, 122, 54, 0.2);
    color: #8b3f12;
}

.text-link,
.post-card h3 a,
.info-card h3 a,
.page-card h3 a {
    color: #115fd5;
}

.text-link:hover,
.post-card h3 a:hover,
.info-card h3 a:hover,
.page-card h3 a:hover {
    color: #0a468f;
}

.hero-copy,
.section-heading p,
.service-regions-copy p {
    color: #51647a;
}

.hero-panel,
.info-card,
.post-card,
.page-card,
.stats-card,
.review-card,
.gallery-card {
    box-shadow: 0 28px 64px rgba(7, 21, 43, 0.1);
}

@media (max-width: 1280px) {
    .nav-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header-contact-strip {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 1180px) {
    .header-contact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-quote-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .header-contact-strip {
        display: grid;
        grid-template-columns: 1fr;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    .hero-home h1,
    .section:not(.section-dark) .section-heading h2,
    .service-regions-copy h3 {
        background: none;
        color: #0a2444;
    }
}

/* Home CTA fix + smaller icons */

.site-header {
    z-index: 90;
    isolation: isolate;
}

.header-inner,
.nav-panel,
.header-contact-strip {
    position: relative;
    z-index: 3;
}

.header-contact-strip a,
.header-call-cta,
.header-whatsapp-cta,
.header-quote-cta {
    pointer-events: auto;
    cursor: pointer;
}

.section-illustration {
    width: min(150px, 100%);
}

.hero-illustration,
.about-illustration {
    width: 132px;
}

.card-illustration {
    width: 84px;
    max-width: 84px;
    min-height: 84px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 18px;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Compact header sizing */

.topbar {
    font-size: 0.82rem;
}

.topbar-inner {
    min-height: 36px;
    gap: 10px;
}

.topbar-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.7rem;
}

.topbar-phone {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.82rem;
}

.header-inner {
    min-height: 64px;
    gap: 16px;
}

.brand {
    gap: 8px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.98rem;
}

.brand-block {
    gap: 0;
}

.brand-text {
    line-height: 1.05;
    font-size: 0.98rem;
}

.nav-list {
    gap: 10px;
    font-size: 0.86rem;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 4px;
}

.header-contact-strip {
    gap: 8px;
    min-width: min(100%, 470px);
}

.header-call-cta,
.header-whatsapp-cta {
    min-height: 46px;
    padding: 7px 12px;
    border-radius: 18px;
}

.header-cta-kicker {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.62rem;
}

.header-call-cta strong,
.header-whatsapp-cta strong {
    font-size: 0.84rem;
}

.header-quote-cta,
.header-cta {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 0.86rem;
}

@media (max-width: 1180px) {
    .brand-subtitle {
        display: none;
    }
}

/* Extra compact logo and menu */

.topbar {
    font-size: 0.72rem;
}

.topbar-inner {
    min-height: 28px;
    gap: 6px;
}

.topbar-pill {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.6rem;
}

.topbar-phone {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.68rem;
}

.header-inner {
    min-height: 52px;
    gap: 10px;
}

.brand,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.custom-logo,
.custom-logo-link img {
    width: auto;
    max-width: 100%;
    max-height: 28px;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.76rem;
}

.brand-text {
    font-size: 0.8rem;
    line-height: 1;
}

.nav-list {
    gap: 6px;
    font-size: 0.76rem;
}

.nav-list a {
    min-height: 26px;
    padding: 0 2px;
}

.header-contact-strip {
    gap: 5px;
    min-width: min(100%, 380px);
}

.header-call-cta,
.header-whatsapp-cta {
    min-height: 34px;
    padding: 4px 8px;
    border-radius: 14px;
}

.header-cta-kicker {
    min-height: 16px;
    padding: 0 6px;
    font-size: 0.52rem;
}

.header-call-cta strong,
.header-whatsapp-cta strong {
    font-size: 0.68rem;
}

.header-quote-cta,
.header-cta {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 0.72rem;
}

/* Header removed */

.site-logo-strip {
    display: none;
}

.site-header-restored {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(10, 36, 68, 0.08);
    box-shadow: 0 10px 28px rgba(7, 21, 43, 0.06);
    backdrop-filter: blur(14px);
}

.header-inner-restored {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.brand-restored,
.brand-restored .custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-restored .custom-logo,
.brand-restored .custom-logo-link img {
    width: auto;
    max-width: 100%;
    max-height: 44px;
}

.nav-panel-restored {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    justify-self: start;
    width: auto;
    margin-right: auto;
}

.nav-panel-restored .nav-list {
    gap: 12px;
    font-size: 0.88rem;
    justify-content: flex-start;
}

.nav-panel-restored .nav-list a {
    min-height: 34px;
    padding: 0 3px;
}

.header-quote-cta-restored {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 0.82rem;
}

.home-slider {
    padding: 28px 0 8px;
}

.home-slider-shell {
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 179, 39, 0.14), transparent 18%),
        linear-gradient(135deg, #0a2444 0%, #135ac9 64%, #1aa6b7 100%);
    box-shadow: 0 30px 70px rgba(7, 21, 43, 0.18);
    color: #fff;
}

.home-slide {
    display: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
    align-items: center;
    gap: 28px;
}

.home-slide.is-active {
    display: grid;
}

.home-slide h2 {
    max-width: 14ch;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.home-slide p:not(.eyebrow) {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.9);
}

.home-slide .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.home-slide-actions .button-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.home-slide-visual {
    display: flex;
    justify-content: center;
}

.slider-illustration {
    width: min(230px, 100%);
    filter: drop-shadow(0 18px 34px rgba(7, 21, 43, 0.22));
}

.home-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.slider-dot.is-active {
    width: 28px;
    background: #fff;
}

.site-logo-strip {
    padding: 10px 0 4px;
}

.site-logo-inner {
    display: flex;
    justify-content: center;
}

.site-logo-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f4c81 0%, #1b6a9c 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.site-logo-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0a2444;
}

.site-logo-strip .custom-logo,
.site-logo-strip .custom-logo-link img {
    width: auto;
    max-width: 100%;
    max-height: 34px;
}

.site-main {
    padding-top: 0;
}

.hero-home {
    padding-top: 12px;
}

@media (max-width: 900px) {
    body.menu-open {
        overflow: auto;
    }

    .header-inner-restored {
        position: relative;
        min-height: 62px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand-restored .custom-logo,
    .brand-restored .custom-logo-link img {
        max-height: 36px;
    }

    .nav-panel-restored {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        width: min(280px, calc(100vw - 32px));
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
        border-radius: 18px;
        max-height: min(320px, calc(100vh - 100px));
        overflow: auto;
        box-shadow: 0 20px 40px rgba(7, 21, 43, 0.16);
    }

    .nav-panel-restored .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-panel-restored .nav-list li {
        width: 100%;
    }

    .nav-panel-restored .nav-list a {
        display: block;
        width: 100%;
        min-height: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .header-quote-cta-restored {
        width: 100%;
        justify-content: center;
    }

    .menu-backdrop,
    body.menu-open .menu-backdrop {
        display: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .home-slider-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .home-slide {
        grid-template-columns: 1fr;
    }

    .home-slide h2 {
        max-width: none;
    }

    .hero-home {
        padding-top: 10px;
    }
}

/* CTA smaller + logo slightly larger */

.brand-restored .custom-logo,
.brand-restored .custom-logo-link img {
    max-height: 50px;
}

.brand-restored .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.84rem;
}

.hero-live-contact {
    gap: 12px;
}

.hero-call-card,
.hero-whatsapp-card {
    min-height: 108px;
    padding: 16px;
    border-radius: 22px;
}

.hero-contact-kicker {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.62rem;
}

.hero-call-card strong,
.hero-whatsapp-card strong {
    font-size: 1rem;
}

.hero-call-card small,
.hero-whatsapp-card small {
    font-size: 0.8rem;
}

.mobile-cta-call,
.mobile-cta-whatsapp {
    min-height: 46px;
    font-size: 0.84rem;
}

@media (max-width: 900px) {
    .brand-restored .custom-logo,
    .brand-restored .custom-logo-link img {
        max-height: 40px;
    }

    .hero-call-card,
    .hero-whatsapp-card {
        min-height: 94px;
        padding: 14px;
    }
}

/* Hero contact cards compact */

.hero-live-contact {
    grid-template-columns: repeat(2, minmax(0, 210px));
    justify-content: start;
    gap: 10px;
    max-width: 430px;
}

.hero-call-card,
.hero-whatsapp-card {
    min-height: 82px;
    padding: 12px;
    gap: 4px;
    border-radius: 18px;
}

.hero-contact-kicker {
    min-height: 18px;
    padding: 0 7px;
    font-size: 0.54rem;
}

.hero-call-card strong,
.hero-whatsapp-card strong {
    font-size: 0.9rem;
    line-height: 1.08;
}

.hero-call-card small,
.hero-whatsapp-card small {
    font-size: 0.72rem;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .hero-live-contact {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

/* Service region details */

.service-region-details {
    margin-top: 24px;
    scroll-margin-top: 110px;
}

.service-region-details-heading {
    max-width: 760px;
    margin-bottom: 20px;
}

.service-region-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-region-detail-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 36, 68, 0.08);
    box-shadow: 0 22px 48px rgba(7, 21, 43, 0.08);
}

.service-region-detail-card h3 {
    margin: 10px 0 12px;
    color: #0a2444;
}

.service-region-detail-card p {
    color: #51647a;
}

.service-region-note {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(21, 102, 224, 0.08);
    border: 1px solid rgba(21, 102, 224, 0.1);
    color: #0c4aa2;
    font-size: 0.76rem;
    font-weight: 700;
}

.service-content-library {
    margin-top: 28px;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(21, 102, 224, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.94) 100%);
    border: 1px solid rgba(10, 36, 68, 0.08);
    box-shadow: 0 24px 56px rgba(7, 21, 43, 0.08);
}

.service-content-library-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.service-content-group-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-content-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(10, 36, 68, 0.07);
    box-shadow: 0 20px 44px rgba(7, 21, 43, 0.07);
}

.service-content-card h3 {
    margin-bottom: 16px;
    color: #0a2444;
}

.service-content-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-content-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(21, 102, 224, 0.06);
    border: 1px solid rgba(21, 102, 224, 0.1);
    color: #0a2444;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Turksat frequency panel */

.turksat-frequency-panel {
    margin-top: 28px;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(26, 166, 183, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.92) 100%);
    border: 1px solid rgba(10, 36, 68, 0.08);
    box-shadow: 0 24px 56px rgba(7, 21, 43, 0.08);
}

.turksat-frequency-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 18px;
    align-items: end;
}

.turksat-frequency-copy h3 {
    margin-bottom: 10px;
    color: #0a2444;
}

.turksat-frequency-copy p:last-child {
    margin-bottom: 0;
    color: #51647a;
}

.turksat-frequency-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.turksat-frequency-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border-radius: 22px;
    border: 1px solid rgba(10, 36, 68, 0.08);
    background: rgba(255, 255, 255, 0.88);
}

.turksat-frequency-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.turksat-frequency-table th,
.turksat-frequency-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(10, 36, 68, 0.08);
}

.turksat-frequency-table th {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0c4aa2;
    background: rgba(21, 102, 224, 0.06);
}

.turksat-frequency-table td {
    font-size: 0.94rem;
    color: #0a2444;
}

.turksat-frequency-table td strong {
    color: #0a2444;
}

.turksat-frequency-table tbody tr:nth-child(even) {
    background: rgba(21, 102, 224, 0.03);
}

.turksat-frequency-table tbody tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 900px) {
    .service-region-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-content-library {
        padding: 22px;
        border-radius: 24px;
    }

    .service-content-group-grid {
        grid-template-columns: 1fr;
    }

    .turksat-frequency-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .turksat-frequency-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .turksat-frequency-actions {
        justify-content: flex-start;
    }
}

/* Top spacing reset */

.site-main {
    padding-top: 0;
}

.home-slider {
    padding-top: 0;
}

.hero-home {
    padding-top: 0;
}

.page-shell,
.content-grid,
.quote-page-shell {
    padding-top: 0;
}

@media (max-width: 900px) {
    .home-slider,
    .hero-home,
    .page-shell,
    .content-grid,
    .quote-page-shell {
        padding-top: 0;
    }
}

/* Premium visual layer */

:root {
    --premium-ink: #07111f;
    --premium-ink-soft: #102746;
    --premium-gold: #caa45d;
    --premium-gold-soft: #f3e4bf;
    --premium-line: rgba(202, 164, 93, 0.22);
}

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(202, 164, 93, 0.16), transparent 22%),
        radial-gradient(circle at 92% 12%, rgba(21, 102, 224, 0.1), transparent 24%),
        linear-gradient(180deg, #f7f9fc 0%, #eef4fb 46%, #f8fbff 100%);
}

.site-header-restored {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 17, 31, 0.96) 0%, rgba(16, 39, 70, 0.94) 58%, rgba(13, 88, 120, 0.88) 100%);
    border-bottom: 1px solid var(--premium-line);
    box-shadow: 0 20px 44px rgba(4, 10, 20, 0.22);
}

.site-header-restored::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(243, 228, 191, 0.12), transparent 26%, transparent 74%, rgba(243, 228, 191, 0.08));
    pointer-events: none;
}

.header-inner-restored {
    position: relative;
    z-index: 1;
}

.brand-restored {
    padding: 8px 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(7, 17, 31, 0.08);
    box-shadow: 0 14px 30px rgba(4, 10, 20, 0.12);
}

.brand-restored .custom-logo-link {
    background: transparent;
}

.brand-restored .brand-text {
    color: #07111f;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-panel-restored .nav-list a {
    color: rgba(255, 255, 255, 0.84);
    padding: 0 12px;
    border-radius: 999px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-panel-restored .nav-list a::after {
    display: none;
}

.nav-panel-restored .nav-list a:hover,
.nav-panel-restored .nav-list .current-menu-item > a,
.nav-panel-restored .nav-list .current_page_item > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.header-quote-cta-restored,
.button-primary {
    background: linear-gradient(135deg, #f8ebc8 0%, #d6b26b 56%, #b98535 100%);
    color: #07111f;
    border: 1px solid rgba(124, 85, 24, 0.18);
    box-shadow: 0 16px 34px rgba(122, 86, 28, 0.22);
}

.header-quote-cta-restored:hover,
.button-primary:hover {
    color: #07111f;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(122, 86, 28, 0.26);
}

.button-secondary {
    background: rgba(7, 17, 31, 0.78);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
    background: linear-gradient(135deg, #f6e7c3 0%, #caa45d 100%);
    box-shadow: 0 16px 34px rgba(122, 86, 28, 0.18);
}

.menu-toggle span {
    background: #07111f;
}

.home-slider-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at top left, rgba(243, 228, 191, 0.18), transparent 22%),
        radial-gradient(circle at bottom right, rgba(33, 150, 243, 0.16), transparent 24%),
        linear-gradient(135deg, #07111f 0%, #0e2746 34%, #0f4f8b 72%, #117b89 100%);
    box-shadow: 0 34px 90px rgba(4, 10, 20, 0.3);
}

.home-slider-shell::before,
.home-slider-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.home-slider-shell::before {
    width: 180px;
    height: 180px;
    top: -40px;
    right: 10%;
    background: rgba(243, 228, 191, 0.18);
}

.home-slider-shell::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -30px;
    background: rgba(17, 123, 137, 0.18);
}

.slider-arrow {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.slider-dot.is-active {
    background: linear-gradient(135deg, #ffffff 0%, #f3e4bf 100%);
}

.hero-grid-home > div:first-child {
    position: relative;
    padding: 20px 22px 16px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 250, 255, 0.92) 100%);
    border: 1px solid rgba(202, 164, 93, 0.12);
    box-shadow: 0 28px 68px rgba(7, 21, 43, 0.08);
}

.hero-grid-home > div:first-child::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(202, 164, 93, 0.96) 18%, rgba(15, 103, 255, 0.7) 82%, transparent 100%);
}

.hero-home h1,
.section:not(.section-dark) .section-heading h2,
.service-regions-copy h3 {
    background: linear-gradient(135deg, #07111f 0%, #0f4f8b 58%, #caa45d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric-card,
.info-card,
.page-card,
.post-card,
.service-region-detail-card,
.service-content-card,
.turksat-frequency-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 255, 0.94) 100%);
    border-color: rgba(7, 17, 31, 0.08);
    box-shadow: 0 24px 56px rgba(7, 21, 43, 0.08);
}

.metric-card::before,
.info-card::before,
.page-card::before,
.post-card::before,
.service-region-detail-card::before,
.service-content-card::before,
.turksat-frequency-panel::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(202, 164, 93, 0.96), rgba(15, 103, 255, 0.68));
}

.service-highlight {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(243, 228, 191, 0.12);
    background:
        radial-gradient(circle at top right, rgba(243, 228, 191, 0.14), transparent 24%),
        linear-gradient(160deg, #07111f 0%, #0d2242 58%, #113b67 100%);
    box-shadow: 0 34px 80px rgba(4, 10, 20, 0.28);
}

.service-highlight::after {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(243, 228, 191, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.hero-badges span,
.proof-strip-inner span,
.service-region-chip,
.service-content-chip {
    border-color: var(--premium-line);
    box-shadow: 0 10px 24px rgba(7, 21, 43, 0.05);
}

.service-content-chip {
    background: linear-gradient(135deg, rgba(243, 228, 191, 0.26), rgba(15, 103, 255, 0.08));
    color: #0a2444;
}

.service-region-note,
.card-chip {
    background: linear-gradient(135deg, rgba(243, 228, 191, 0.34), rgba(202, 164, 93, 0.14));
    border-color: rgba(202, 164, 93, 0.22);
    color: #7a5419;
}

.hero-call-card {
    background: linear-gradient(135deg, #fff7e8 0%, #f6dd9c 100%);
    border: 1px solid rgba(202, 164, 93, 0.18);
    box-shadow: 0 20px 40px rgba(122, 86, 28, 0.16);
}

.hero-whatsapp-card {
    background: linear-gradient(135deg, #eefdf4 0%, #c8f1d6 100%);
    border: 1px solid rgba(40, 167, 69, 0.16);
    box-shadow: 0 20px 40px rgba(18, 100, 49, 0.12);
}

.turksat-frequency-table th {
    background: linear-gradient(135deg, rgba(243, 228, 191, 0.34), rgba(21, 102, 224, 0.08));
    color: #6d4b12;
}

.reviews-section {
    background:
        radial-gradient(circle at top left, rgba(243, 228, 191, 0.12), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #0c2038 100%);
}

@media (max-width: 900px) {
    .hero-grid-home > div:first-child {
        padding: 18px;
        border-radius: 28px;
    }

    .brand-restored {
        padding: 6px 10px;
        border-radius: 16px;
    }

    .nav-panel-restored {
        background: linear-gradient(180deg, rgba(7, 17, 31, 0.96) 0%, rgba(16, 39, 70, 0.94) 100%);
        border: 1px solid rgba(243, 228, 191, 0.16);
    }

    .nav-panel-restored .nav-list a {
        color: rgba(255, 255, 255, 0.88);
    }

    .home-slider-shell::before,
    .home-slider-shell::after {
        display: none;
    }
}

/* Image-only slider */

.home-slider {
    padding: 8px 0 14px;
}

.home-slider-shell {
    padding: 12px 12px 18px;
    border-radius: 30px;
}

.home-slider-track {
    position: relative;
}

.home-slide {
    grid-template-columns: 1fr;
    gap: 0;
}

.home-slide-media {
    position: relative;
    width: 100%;
}

.home-slide-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 56px rgba(4, 10, 20, 0.24);
}

.home-slider-controls {
    margin-top: 14px;
}

@media (max-width: 900px) {
    .home-slider-shell {
        padding: 8px 8px 14px;
        border-radius: 22px;
    }

    .home-slide-image {
        border-radius: 16px;
    }
}

/* Vivid button colors */

:root {
    --vivid-orange-start: #ffd84a;
    --vivid-orange-mid: #ff8a1f;
    --vivid-orange-end: #ff5b14;
    --vivid-blue-start: #2ad6ff;
    --vivid-blue-mid: #1b74ff;
    --vivid-blue-end: #1847d8;
}

.button,
.header-cta {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.header-quote-cta-restored,
.button-primary {
    background: linear-gradient(135deg, var(--vivid-orange-start) 0%, var(--vivid-orange-mid) 52%, var(--vivid-orange-end) 100%);
    color: #fff;
    border: 1px solid rgba(255, 120, 28, 0.3);
    box-shadow: 0 18px 38px rgba(255, 106, 24, 0.28);
}

.header-quote-cta-restored:hover,
.button-primary:hover {
    background: linear-gradient(135deg, #ffe168 0%, #ff972f 50%, #ff6419 100%);
    color: #fff;
    box-shadow: 0 20px 42px rgba(255, 106, 24, 0.34);
}

.button-secondary {
    background: linear-gradient(135deg, var(--vivid-blue-start) 0%, var(--vivid-blue-mid) 56%, var(--vivid-blue-end) 100%);
    color: #fff;
    border-color: rgba(43, 159, 255, 0.24);
    box-shadow: 0 18px 38px rgba(27, 116, 255, 0.24);
}

.button-secondary:hover {
    background: linear-gradient(135deg, #57e1ff 0%, #2d83ff 54%, #2353ec 100%);
    color: #fff;
    box-shadow: 0 20px 42px rgba(27, 116, 255, 0.3);
}

/* Photo illustrations */

.hero-photo,
.about-photo {
    width: 100%;
    max-width: none;
    height: 230px;
    object-fit: cover;
    padding: 0;
    border-radius: 24px;
}

.hero-photo {
    height: 250px;
}

.card-illustration-photo {
    width: 100%;
    max-width: none;
    min-height: 0;
    height: 190px;
    aspect-ratio: auto;
    object-fit: cover;
    padding: 0;
    margin-bottom: 16px;
    border-radius: 20px;
}

.region-detail-image {
    height: 180px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .hero-photo,
    .about-photo {
        height: 200px;
    }

    .card-illustration-photo,
    .region-detail-image {
        height: 170px;
    }
}

/* Clearer logo */

.brand-restored {
    padding: 10px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(7, 17, 31, 0.1);
    box-shadow:
        0 18px 36px rgba(4, 10, 20, 0.16),
        0 0 0 4px rgba(255, 255, 255, 0.08);
}

.brand-restored .custom-logo,
.brand-restored .custom-logo-link img {
    width: auto;
    max-width: min(100%, 260px);
    max-height: 64px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.08) saturate(1.08);
}

.brand-restored .brand-text {
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .brand-restored {
        padding: 8px 12px;
        border-radius: 18px;
    }

    .brand-restored .custom-logo,
    .brand-restored .custom-logo-link img {
        max-width: min(100%, 200px);
        max-height: 52px;
    }
}
