@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Nastaliq+Urdu:wght@400;600;700&display=swap');

:root {
    --navy: #0a1f44;
    --navy-2: #102a57;
    --gold: #ffb400;
    --gold-2: #ffcc00;
    --bg: #f3f5f8;
    --bg-alt: #ffffff;
    --text: #16233d;
    --muted: #5f6d86;
    --line: rgba(10, 31, 68, 0.12);
    --shadow: 0 16px 30px rgba(7, 19, 41, 0.10);
    --shadow-strong: 0 24px 50px rgba(7, 19, 41, 0.16);
    --radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.12;
    z-index: -1;
}

.container {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.urdu {
    font-family: 'Noto Nastaliq Urdu', serif;
    direction: rtl;
    line-height: 2.15;
    font-size: clamp(1.05rem, 1.25vw, 1.22rem);
    letter-spacing: 0;
}

/* Header */
header,
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: #041026;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 24px rgba(4, 16, 38, 0.18);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    color: #fff;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 18px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 34px;
    transform: translateY(-50%);
    background: var(--gold-2);
}

.site-nav,
nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a,
nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    padding: 11px 15px;
    border: 1px solid transparent;
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.site-nav a::after,
nav a::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 7px;
    height: 2px;
    background: var(--gold-2);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
nav a:hover,
nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
nav a:hover::after,
nav a:focus-visible::after {
    transform: scaleX(1);
}

/* Hero */
.hero,
.hero-billboard {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    overflow: hidden;
    width: 100%;
    height: clamp(420px, 68vh, 720px);
    max-height: 70vh;
    min-height: 420px;
    padding: 0 !important;
    margin-top: 0;
}

.slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 5.8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.slide.no-overlay {
    background-size: contain;
    background-color: #041026;
}

.slide::before,
.overlay {
    content: '';
    position: absolute;
    inset: 0;
}

.slide::before {
    background: rgba(4, 16, 38, 0.42);
}

.slide.no-overlay::before {
    background: transparent;
}

.overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.75) 0%, rgba(15, 15, 15, 0.7) 34%, rgba(15, 15, 15, 0.5) 100%);
}

.slide-text {
    position: absolute;
    left: clamp(20px, 5vw, 72px);
    bottom: clamp(22px, 5vw, 56px);
    z-index: 2;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(255, 255, 255, 0.96);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(12px);
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-kicker {
    display: inline-flex;
    width: fit-content;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
}

.slide-title {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero,
    .hero-billboard {
        height: clamp(360px, 58vh, 560px);
        min-height: 360px;
    }

    .slide.no-overlay {
        background-size: cover;
    }

    .slide-text {
        left: 18px;
        right: 18px;
        max-width: none;
    }
}

/* Ticker */
.ticker-section {
    background: var(--navy);
    color: #fff;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 180, 0, 0.42);
}

.ticker-wrap {
    overflow: hidden;
}

.ticker {
    display: flex;
    gap: 34px;
    width: max-content;
    animation: scrollTicker 24s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.95rem;
}

.ticker-item::before {
    content: '•';
    margin-right: 10px;
    color: var(--gold-2);
}

.ticker-item.up {
    color: #c8f4d1;
}

.ticker-item.down {
    color: #ffd1d1;
}

/* Sections */
.why,
.services,
.get-quote-section,
.stats-section,
footer {
    position: relative;
}

.why,
.services,
.get-quote-section {
    padding: 92px 0;
}

.why {
    background: var(--bg-alt);
}

.services {
    background: linear-gradient(180deg, #f7f8fb, #f1f3f7);
    padding-top: 22px;
}

.why .container,
.services .container,
.get-quote-section .container,
.stats-section .container,
footer .container {
    text-align: center;
}

.why h2,
.services h2,
.get-quote-section .section-title {
    display: inline-block;
    color: var(--navy);
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 18px;
    position: relative;
    letter-spacing: -0.02em;
}

.why h2::after,
.services h2::after,
.get-quote-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 86px;
    height: 3px;
    transform: translateX(-50%);
    background: var(--gold-2);
}

.features-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 48px;
}

.features-wrapper .cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 34px 24px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card i {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 2.45rem;
    color: var(--gold);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.1rem;
}

.card p {
    color: var(--muted);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 31, 68, 0.18);
    box-shadow: var(--shadow-strong);
}

@media (max-width: 768px) {
    .features-wrapper,
    .features-wrapper .cards {
        flex-direction: column;
    }

    .card {
        min-width: 0;
    }
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    position: relative;
    min-height: 264px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    border: 1px solid rgba(10, 31, 68, 0.18);
    box-shadow: var(--shadow);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 8, 18, 0.1), rgba(3, 8, 18, 0.78));
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 20px 18px;
    text-align: left;
    color: #fff;
}

.service-content h3 {
    margin-bottom: 8px;
    color: var(--gold-2);
    font-size: 1.05rem;
}

.service-card:hover img {
    transform: scale(1.06);
}

/* Divider */
.section-divider {
    width: min(620px, 72%);
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(255, 180, 0, 0.95), transparent);
}

/* Quote */
.get-quote-section {
    background: var(--bg-alt);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.get-quote-section.show {
    opacity: 1;
    transform: translateY(0);
}

.get-quote-section .section-subtitle {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 34px;
}

#quoteForm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}

#quoteForm input,
#quoteForm select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(10, 31, 68, 0.16);
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

#quoteForm input:focus,
#quoteForm select:focus {
    outline: none;
    border-color: rgba(255, 180, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18);
    transform: translateY(-1px);
}

#quoteForm button {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 240px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

#quoteForm button:hover,
#quoteForm button:focus-visible {
    transform: translateY(-2px);
    background: #071734;
    box-shadow: var(--shadow-strong);
    outline: none;
}

/* Stats */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #08172f, var(--navy));
    color: #fff;
}

.stats-section .container {
    display: block;
}

.metrics-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.metrics-wrapper > .stat-box,
.metrics-wrapper > .metric-card {
    flex: 1;
    min-width: 250px;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
}

.stat-box {
    padding: 26px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 18px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-box h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.9rem);
    margin-bottom: 6px;
}

.stat-urdu {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.96);
}

.stat-box p {
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 768px) {
    .metrics-wrapper {
        flex-direction: column;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 90px 20px 100px;
    background: #dedfcf;
    color: var(--text);
}

.testimonials-container {
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 58px;
    color: var(--navy);
    font-size: clamp(2rem, 2.9vw, 2.7rem);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    max-width: 1510px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    flex: 1;
    min-width: 360px;
    max-width: 470px;
    min-height: 305px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 28px;
    padding: 60px 34px 0;
    text-align: left;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    overflow: visible;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

.testimonial-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-height: 112px;
    padding-right: 190px;
    position: relative;
    z-index: 2;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    text-align: left;
    direction: ltr;
}

.testimonial-meta h4 {
    margin: 0;
    color: inherit;
    font-weight: 800;
    font-size: clamp(1.5rem, 2vw, 1.95rem);
    line-height: 1.05;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.testimonial-meta span {
    color: #444;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.testimonial-avatar {
    position: absolute;
    top: -34px;
    right: 28px;
    display: block;
    width: 118px;
    height: 118px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: #fff;
    border: 7px solid #fff;
    box-shadow:
        0 0 0 7px var(--testimonial-accent, #f28f1c),
        0 10px 18px rgba(0, 0, 0, 0.14);
}

.testimonial-stars {
    display: inline-flex;
    gap: 5px;
    font-size: 1.8rem;
    line-height: 1;
}

.testimonial-stars span {
    color: #ffd75e;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.testimonial-card p {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 24, 39, 0.16);
    color: #555;
    font-size: 0.98rem;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.testimonial-bottom {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 22px;
    margin-left: -34px;
    margin-right: -34px;
    min-height: 60px;
    padding: 0 34px 0 34px;
    border-bottom-left-radius: 28px;
    overflow: hidden;
    direction: ltr;
}

.testimonial-bottom::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 72%;
    background: var(--testimonial-accent, #0a1f44);
    clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.testimonial-bottom::before {
    content: '❝';
    position: absolute;
    right: 20px;
    bottom: 7px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 1.8rem;
    line-height: 1;
    z-index: 1;
}

.testimonial-bottom .testimonial-stars {
    position: relative;
    z-index: 1;
    margin-left: 0;
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 0;
        max-width: none;
        padding-top: 56px;
    }

    .testimonial-top {
        padding-right: 136px;
        min-height: 100px;
    }

    .testimonial-avatar {
        width: 104px;
        height: 104px;
        right: 18px;
        top: -34px;
    }

    .testimonial-bottom {
        margin-left: -34px;
        margin-right: -34px;
    }
}

.testimonial-card:nth-child(1) {
    --testimonial-accent: #0a1f44;
    color: #0a1f44;
}

.testimonial-card:nth-child(2) {
    --testimonial-accent: #0a1f44;
    color: #0a1f44;
}

.testimonial-card:nth-child(3) {
    --testimonial-accent: #0a1f44;
    color: #0a1f44;
}

.testimonial-card:nth-child(1) .testimonial-stars span:last-child,
.testimonial-card:nth-child(3) .testimonial-stars span:last-child {
    display: none;
}

/* Footer */
footer {
    padding: 52px 0 18px;
    background: #111111;
    color: rgba(255, 255, 255, 0.9);
}

.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand-row {
    display: flex;
    justify-content: flex-start;
}

.footer-brand-copy {
    max-width: 280px;
}

.footer-logo {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-tagline {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.75;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.footer-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.footer-col {
    flex: 1 1 160px;
    min-width: 140px;
}

.footer-col h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.92rem;
}

.footer-link {
    display: block;
    width: fit-content;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    line-height: 1.5;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--gold-2);
    transform: translateX(3px);
    outline: none;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.footer-button:hover,
.footer-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 204, 0, 0.42);
}

.footer-social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-badges {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.social-badge span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.social-badge:hover,
.social-badge:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 204, 0, 0.42);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-row {
        justify-content: center;
        text-align: center;
    }

    .footer-brand-copy {
        max-width: 100%;
    }

    .footer-social-col {
        align-items: flex-start;
    }
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: var(--radius);
    background: #25d366;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp:hover,
.whatsapp:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    outline: none;
}

/* Page-specific blocks */
.page-hero,
.services-hero,
.contact-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.page-hero {
    padding: 118px 0 88px;
    background: var(--navy);
}

.page-hero::before,
.services-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 19, 41, 0.78);
}

.page-hero .container,
.services-hero .container,
.contact-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero,
.contact-hero {
    padding: 122px 0 94px;
}

.breadcrumb {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--gold-2);
    text-decoration: none;
}

.services-section,
.contact-info-section,
.contact-form-section {
    padding: 80px 0;
}

.services-grid,
.contact-grid,
.process-steps {
    display: grid;
    gap: 24px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-page .service-card,
.service-card.simple {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-eyebrow.light {
    color: rgba(255, 255, 255, 0.82);
}

.section-intro {
    max-width: 820px;
    margin: 0 auto 28px;
    color: var(--muted);
    line-height: 1.8;
}

.services-page .section-title {
    margin-bottom: 14px;
}

.services-page .services-grid {
    margin-top: 34px;
}

.services-page .card-top,
.service-card .card-top {
    background: var(--navy);
    color: #fff;
    padding: 32px 20px;
    text-align: center;
}

.services-page .card-top i,
.service-card .card-top i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--gold-2);
}

.services-page .card-top h3,
.service-card .card-top h3 {
    font-size: 1.04rem;
    letter-spacing: 0.02em;
}

.services-page .card-bottom,
.service-card .card-bottom {
    background: var(--gold-2);
    padding: 18px 18px 20px;
    text-align: left;
    flex-grow: 1;
}

.services-page .card-bottom p,
.service-card .card-bottom p {
    color: #13233d;
    line-height: 1.9;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
}

.services-page .service-card:hover,
.service-card.simple:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.services-page .service-card {
    animation: fadeUp 0.8s ease both;
}

.services-page .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-page .service-card:nth-child(2) { animation-delay: 0.10s; }
.services-page .service-card:nth-child(3) { animation-delay: 0.15s; }
.services-page .service-card:nth-child(4) { animation-delay: 0.20s; }
.services-page .service-card:nth-child(5) { animation-delay: 0.25s; }
.services-page .service-card:nth-child(6) { animation-delay: 0.30s; }
.services-page .service-card:nth-child(7) { animation-delay: 0.35s; }
.services-page .service-card:nth-child(8) { animation-delay: 0.40s; }

.services-page .service-card:nth-child(2n) {
    transform: translateY(10px);
}

.services-page .service-card:nth-child(2n):hover {
    transform: translateY(4px);
}

.services-page .card-top {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-page .card-bottom {
    min-height: 180px;
    display: flex;
    align-items: center;
}

.services-page .card-bottom p {
    margin: 0;
}

.process-section {
    padding: 88px 0;
    background: #fff;
    border-top: 1px solid var(--line);
}

.process-section h2 {
    font-size: clamp(2rem, 3vw, 2.55rem);
    color: var(--navy);
    margin-bottom: 12px;
}

.process-panels {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.process-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease;
}

.process-panel.reverse {
    grid-template-columns: minmax(380px, 0.96fr) minmax(0, 1.04fr);
}

.process-media {
    position: relative;
    min-height: 360px;
    background: var(--navy);
}

.process-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.process-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 41, 0.06), rgba(7, 19, 41, 0.36));
}

.process-index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(10, 31, 68, 0.92);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-copy {
    padding: 34px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(10, 31, 68, 0.08);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.process-copy h3 {
    color: var(--navy);
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.process-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 18px;
}

.process-copy ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.process-copy li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-weight: 600;
}

.process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 2px;
    background: var(--gold);
}

.process-panel {
    animation: fadeUp 0.8s ease both;
}

.process-panel:nth-child(1) { animation-delay: 0.05s; }
.process-panel:nth-child(2) { animation-delay: 0.12s; }
.process-panel:nth-child(3) { animation-delay: 0.19s; }
.process-panel:nth-child(4) { animation-delay: 0.26s; }

.process-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.process-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-panel--consultation .process-copy,
.process-panel--delivery .process-copy {
    background: linear-gradient(180deg, #ffffff, #fafbfc);
}

.process-panel--planning .process-copy {
    background: linear-gradient(180deg, #0a1f44, #102a57);
    color: #fff;
}

.process-panel--planning .process-copy h3,
.process-panel--planning .process-copy p,
.process-panel--planning .process-copy li,
.process-panel--planning .process-label {
    color: #fff;
}

.process-panel--planning .process-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-2);
}

.process-panel--planning .process-copy li::before {
    background: var(--gold-2);
}

.process-panel--planning .process-media::after {
    background: linear-gradient(180deg, rgba(10, 31, 68, 0.14), rgba(10, 31, 68, 0.54));
}

.process-panel--execution .process-copy {
    background: linear-gradient(180deg, #fbfcfe, #f1f4f8);
}

.process-panel--delivery .process-copy {
    background: linear-gradient(180deg, #fff, #f8f9fb);
}

.process-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.process-panel--planning .process-note {
    border-top-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.78);
}

.process-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.process-chips span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(10, 31, 68, 0.12);
    background: #fff;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
}

.process-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 18px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 31, 68, 0.32);
    padding-bottom: 3px;
}

.process-link:hover,
.process-link:focus-visible {
    color: var(--gold);
    outline: none;
}

.process-panel.reverse .process-copy {
    background: linear-gradient(180deg, #fbfcfe, #f7f8fb);
}

.process-panel:not(.reverse) .process-copy {
    background: linear-gradient(180deg, #ffffff, #fafbfc);
}

.cta-section {
    padding: 72px 0;
    background: var(--navy);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.cta-section p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.84);
}

.cta-section .btn {
    background: var(--gold-2);
    color: var(--navy);
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
    padding: 26px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-card i {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 1.8rem;
    color: var(--navy);
}

.contact-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
}

.contact-form-section {
    background: #fff;
}

.form-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: #fff;
}

.contact-form button {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 24px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.contact-form button:hover {
    background: #071734;
}

.success-msg {
    max-width: 680px;
    margin: 18px auto 0;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.22);
    color: #0d6935;
    text-align: center;
}

/* Motion */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1120px) {
    .cards,
    .stats-section .container,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    header {
        padding: 14px 0;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-content {
        width: min(100%, calc(100% - 36px));
        margin-left: 18px;
        padding-left: 20px;
    }

    #quoteForm {
        grid-template-columns: 1fr;
    }

    #quoteForm button {
        width: 100%;
    }

    .cards,
    .process-panel,
    .stats-section .container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        text-align: center;
    }

    footer a {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(1440px, calc(100% - 24px));
    }

    nav a {
        padding: 10px 12px;
    }

    .hero {
        min-height: 94svh;
    }

    .hero-content {
        margin-left: 12px;
        padding-left: 16px;
    }

    .btn,
    .whatsapp,
    #quoteForm button {
        width: 100%;
        justify-content: center;
    }

    .section-eyebrow {
        letter-spacing: 0.16em;
    }

    .process-panel.reverse {
        grid-template-columns: 1fr;
    }

    .process-panel {
        min-height: auto;
    }

    .process-media,
    .process-panel.reverse .process-media {
        min-height: 240px;
    }

    .process-copy {
        padding: 28px 22px;
    }

    .process-panel--planning .process-copy {
        background: linear-gradient(180deg, #0a1f44, #102a57);
    }

    .whatsapp {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   REBUILT CORPORATE SYSTEM
   Overrides the earlier decorative theme with a cleaner,
   more handcrafted visual language.
   ========================================================= */

:root {
    --corp-navy: #0b1f3a;
    --corp-navy-deep: #08162c;
    --corp-gold: #c79a2b;
    --corp-gold-light: #dfb24a;
    --corp-cream: #f6f4ee;
    --corp-white: #ffffff;
    --corp-ink: #17253c;
    --corp-muted: #6b7484;
    --corp-line: rgba(11, 31, 58, 0.12);
    --corp-line-strong: rgba(11, 31, 58, 0.2);
    --corp-shadow: 0 12px 26px rgba(5, 15, 28, 0.08);
    --corp-shadow-strong: 0 18px 36px rgba(5, 15, 28, 0.12);
    --corp-radius: 4px;
}

body {
    background: #f8f7f3;
    color: var(--corp-ink);
}

.container {
    width: min(1440px, calc(100% - 40px));
}

header {
    background: rgba(15, 15, 15, 0.35);
    padding: 14px 0;
    box-shadow: none;
}

.logo {
    font-size: 1.45rem;
    letter-spacing: 0.03em;
}

nav a {
    padding: 10px 14px;
    border-radius: var(--corp-radius);
    color: rgba(255, 255, 255, 0.92);
}

nav a:hover,
nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.hero {
    height: 82vh;
    max-height: 860px;
    min-height: 560px;
    padding: 0;
    margin-top: 60px;
    align-items: center;
}

.slides,
.slide {
    background-position: center;
    background-size: cover;
}

.overlay {
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.75) 0%, rgba(15, 15, 15, 0.7) 42%, rgba(15, 15, 15, 0.5) 100%);
}

.hero-content {
    max-width: 760px;
    padding: 8px 0 8px 24px;
    border-left: 3px solid var(--corp-gold-light);
    animation: corpRise 0.8s ease both;
}

.hero-content::before {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.06;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero .urdu {
    max-width: 560px;
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.96);
}

.hero::after {
    content: 'PROFESSIONAL WORKER';
    position: absolute;
    left: clamp(24px, 5vw, 88px);
    bottom: 18px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.btn {
    border-radius: var(--corp-radius);
    background: var(--corp-gold);
    color: #fff;
    box-shadow: none;
    min-height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn:hover,
.btn:focus-visible {
    background: var(--corp-gold-light);
    color: #fff;
    box-shadow: none;
}

.ticker-section {
    background: var(--corp-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-item {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.why,
.services,
.get-quote-section,
.process-section,
.contact-info-section,
.contact-form-section {
    padding: 92px 0;
}

.why {
    background: linear-gradient(180deg, #ffffff, #f8f7f3);
}

.services {
    background: linear-gradient(180deg, #f4f4ef, #f0ede5);
    padding-top: 24px;
}

.why h2,
.services h2,
.get-quote-section .section-title,
.process-section h2,
.contact-form-section h2 {
    color: var(--corp-navy);
}

.why h2::after,
.services h2::after,
.get-quote-section .section-title::after {
    background: var(--corp-gold);
    height: 2px;
}

.section-eyebrow {
    color: var(--corp-gold);
    letter-spacing: 0.24em;
    font-size: 0.72rem;
}

.section-intro,
.get-quote-section .section-subtitle,
.cta-section p,
.step p,
.contact-card p,
.process-copy p {
    color: var(--corp-muted);
}

.cards {
    gap: 20px;
}

.card {
    border-radius: var(--corp-radius);
    border: 1px solid var(--corp-line);
    box-shadow: var(--corp-shadow);
    background: #fff;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--corp-line-strong);
    box-shadow: var(--corp-shadow-strong);
}

.service-grid {
    gap: 18px;
}

.service-card {
    border-radius: var(--corp-radius);
    min-height: 280px;
    box-shadow: var(--corp-shadow);
}

.service-card::after {
    background: linear-gradient(180deg, rgba(6, 12, 23, 0.08), rgba(6, 12, 23, 0.82));
}

.service-card img {
    filter: grayscale(0.1) contrast(1.05);
}

.service-content {
    padding: 18px 18px 16px;
}

.service-content h3 {
    color: #f0d27b;
}

.get-quote-section {
    background: #fff;
}

#quoteForm input,
#quoteForm select,
.contact-form input,
.contact-form textarea {
    border-radius: var(--corp-radius);
    border-color: var(--corp-line-strong);
}

#quoteForm button,
.contact-form button {
    border-radius: var(--corp-radius);
    background: var(--corp-navy);
    color: #fff;
    box-shadow: var(--corp-shadow);
}

#quoteForm button:hover,
#quoteForm button:focus-visible,
.contact-form button:hover {
    background: var(--corp-navy-deep);
}

.stats-section {
    background: var(--corp-navy);
}

.stat-box {
    border-radius: var(--corp-radius);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

footer {
    background: linear-gradient(180deg, #071325, #0b1f3a);
}

footer h3,
.cta-section h2 {
    color: #f0d27b;
}

.footer-grid {
    gap: 22px;
}

footer a:hover,
footer a:focus-visible {
    color: #fff;
    transform: none;
}

.cta-section {
    background: var(--corp-navy);
}

.cta-section .btn {
    background: #fff;
    color: var(--corp-navy);
}

.cta-section .btn:hover {
    background: var(--corp-cream);
}

.page-hero,
.services-hero,
.contact-hero {
    background: var(--corp-navy);
}

.contact-hero {
    background: url('images/contact-hero.png') no-repeat center / cover,
                rgba(6, 12, 23, 0.78);
}

.page-hero::before,
.services-hero::before,
.contact-hero::before {
    background: rgba(6, 12, 23, 0.78);
}

.page-hero p,
.services-hero p,
.contact-hero p {
    color: rgba(255, 255, 255, 0.84);
}

.breadcrumb a {
    color: #f0d27b;
}

.contact-card,
.step,
.process-panel,
.services-page .service-card {
    border-radius: var(--corp-radius);
    border-color: var(--corp-line);
    box-shadow: var(--corp-shadow);
}

.process-panel {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.25s ease;
}

.process-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-panel:hover {
    transform: translateY(-4px);
}

.process-panel--planning .process-copy {
    background: linear-gradient(180deg, var(--corp-navy), var(--corp-navy-deep));
}

.process-panel--planning .process-copy h3,
.process-panel--planning .process-copy p,
.process-panel--planning .process-copy li,
.process-panel--planning .process-label,
.process-panel--planning .process-note {
    color: #fff;
}

.process-label,
.process-chips span,
.process-link {
    border-radius: var(--corp-radius);
}

.process-chips span {
    background: #fff;
    border-color: var(--corp-line-strong);
}

.process-note {
    border-top-color: var(--corp-line);
}

.process-link {
    color: var(--corp-navy);
    border-bottom-color: rgba(11, 31, 58, 0.28);
}

.process-link:hover,
.process-link:focus-visible {
    color: var(--corp-gold);
}

.services-page .service-card,
.services-page .card-top,
.services-page .card-bottom {
    border-radius: var(--corp-radius);
}

.services-page .service-card:nth-child(2n) {
    transform: translateY(8px);
}

.services-page .service-card:nth-child(2n):hover {
    transform: translateY(2px);
}

.services-page .service-card:nth-child(4n+1) .card-top {
    background: linear-gradient(180deg, #0b1f3a, #102a57);
}

.services-page .service-card:nth-child(4n+2) .card-top {
    background: linear-gradient(180deg, #102a57, #0b1f3a);
}

.services-page .service-card:nth-child(4n+3) .card-top {
    background: linear-gradient(180deg, #0a1f44, #122f60);
}

.services-page .service-card:nth-child(4n) .card-top {
    background: linear-gradient(180deg, #122f60, #0a1f44);
}

.whatsapp {
    border-radius: var(--corp-radius);
    box-shadow: var(--corp-shadow-strong);
}

@keyframes corpRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .process-panel,
    .process-panel.reverse {
        grid-template-columns: 1fr;
    }

    .process-media {
        min-height: 280px;
    }
}

@media (max-width: 860px) {
    .hero {
        height: 78vh;
    color: #ffffff !important;
}

/* Pull hero sections to the very top so their background touches the viewport top */
.hero,
.services-hero-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Keep background images covering under the header */
.slides, .slide, .services-hero-banner {
    background-position: center;
    background-size: cover;
}

/* Push the hero content down so it isn't hidden behind the floating header */
.hero-content,
.services-hero-banner .hero-content {
    padding-top: calc(var(--site-header-height) + 12px) !important;
}

/* Mobile: slightly smaller header height */
@media (max-width: 860px) {
    :root { --site-header-height: 56px; }
}

@media (max-width: 560px) {
    :root { --site-header-height: 48px; }
    .hero-content,
    .services-hero-banner .hero-content {
        padding-top: calc(var(--site-header-height) + 8px) !important;
    }
}
        max-height: 760px;
        min-height: 500px;
        margin-top: 58px;
    }

    .hero-content {
        padding-left: 18px;
    }

    .cards,
    .stats-section .container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .hero {
        height: 72vh;
        max-height: 640px;
        min-height: 420px;
        margin-top: 56px;
    }

    .hero-content {
        margin-left: 12px;
        width: calc(100% - 24px);
        padding: 14px 0 16px 14px;
    }

    .hero::after {
        left: 12px;
        bottom: 10px;
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }

    .btn,
    #quoteForm button,
    .cta-section .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
    }
}

/* ===== FINAL OVERRIDE: Force Header Absolute Overlay ===== */
:root {
    --site-header-height: 64px;
}

header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    height: var(--site-header-height) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* Hero background must reach the top */
.hero {
    padding: 0 !important;
    margin-top: 0 !important;
}

.hero .slides {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
}

.hero .slide {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
}

/* Text content pushed down below header */
.hero-content {
    padding-top: calc(var(--site-header-height) + 18px) !important;
}

/* Services page hero */
.services-hero-banner {
    padding: 0 !important;
    margin-top: 0 !important;
}

.services-hero-banner .hero-content {
    padding-top: calc(var(--site-header-height) + 56px) !important;
}

@media (max-width: 860px) {
    :root { --site-header-height: 56px; }
    .hero-content { padding-top: calc(var(--site-header-height) + 14px) !important; }
}

@media (max-width: 560px) {
    :root { --site-header-height: 48px; }
    .hero-content { padding-top: calc(var(--site-header-height) + 10px) !important; }
}

/* Modern footer styles (added) */
.modern-footer {
    background: #041026;
    border-top: 1px solid #1e293b;
    color: #cbd5e1;
    padding: 40px 0 18px;
}

.modern-footer .footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.modern-footer .footer-col {
    flex: 1;
    min-width: 220px;
}

.modern-footer h3 {
    color: #facc15;
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.2;
}

.modern-footer p,
.modern-footer .footer-link {
    color: #cbd5e1;
    margin: 0 0 8px;
    font-size: 0.98rem;
    text-decoration: none;
}

.modern-footer .footer-link:hover,
.modern-footer .footer-link:focus {
    text-decoration: underline;
    color: #ffffff;
}

.social-badges {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e293b;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    border: 1px solid rgba(255,255,255,0.03);
}

.social-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

.social-badge:hover,
.social-badge:focus {
    background: #facc15;
    color: #041026;
    transform: translateY(-3px);
    outline: none;
}

.modern-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 12px 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .modern-footer .footer-columns {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .modern-footer .footer-col {
        min-width: 0;
    }

    .social-badges {
        justify-content: flex-start;
    }
}