:root {
    --green-950: #09291f;
    --green-900: #103d2b;
    --green-700: #1f6845;
    --gold-600: #c9912d;
    --gold-400: #e8bd62;
    --flour: #fbfaf4;
    --surface: #ffffff;
    --ink: #17211b;
    --muted: #68736d;
    --line: rgba(16, 61, 43, .16);
    --shadow: 0 22px 60px rgba(9, 41, 31, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--flour);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

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

a {
    color: var(--green-700);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

h1,
h2,
h3 {
    color: var(--green-950);
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    font-weight: 850;
    max-width: 980px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

h3 {
    font-size: 1.18rem;
    font-weight: 760;
}

p {
    color: var(--muted);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 1000;
    padding: .6rem 1rem;
    background: var(--surface);
    color: var(--green-950);
    border-radius: var(--radius);
}

.skip-link:focus {
    left: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 250, 244, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    padding: .85rem 0;
}

.brand-mark {
    display: inline-flex;
    gap: .7rem;
    align-items: center;
    color: var(--green-950);
    text-decoration: none;
}

.brand-symbol {
    display: inline-grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--green-900), var(--green-700));
    color: white;
    font-weight: 850;
    box-shadow: 0 10px 28px rgba(16, 61, 43, .22);
}

.brand-mark small {
    display: block;
    color: var(--muted);
    font-size: .78rem;
}

.nav-link {
    color: var(--green-950);
    font-weight: 680;
    font-size: .95rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--gold-600);
}

.btn {
    border-radius: var(--radius);
    font-weight: 780;
    padding: .78rem 1.05rem;
}

.btn-sm {
    padding: .55rem .75rem;
    font-size: .88rem;
}

.btn-brand {
    background: var(--gold-600);
    border-color: var(--gold-600);
    color: #161007;
}

.btn-brand:hover {
    background: #b98225;
    border-color: #b98225;
}

.btn-outline-brand {
    border: 1px solid var(--green-700);
    color: var(--green-900);
    background: transparent;
}

.btn-outline-brand:hover {
    background: var(--green-900);
    color: white;
}

.section-pad {
    padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 76px);
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 78% 12%, rgba(232, 189, 98, .35), transparent 28rem),
        linear-gradient(135deg, var(--green-950), var(--green-900) 52%, #164d35);
}

.hero-section h1,
.hero-section p {
    color: white;
}

.hero-lead {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    max-width: 680px;
    color: rgba(255, 255, 255, .84) !important;
}

.hero-urdu {
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    color: var(--gold-400) !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.7rem;
}

.hero-visual {
    position: relative;
    transform-style: preserve-3d;
    animation: floatSlow 7s ease-in-out infinite;
}

.hero-visual img {
    filter: drop-shadow(0 30px 42px rgba(0, 0, 0, .28));
}

.trust-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.trust-grid,
.product-grid,
.local-grid,
.rate-grid,
.article-grid,
.gallery-grid,
.link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-grid article,
.product-card,
.local-grid article,
.rate-card,
.article-card,
.gallery-card,
.content-panel,
.contact-panel,
.map-placeholder,
.inquiry-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(9, 41, 31, .06);
}

.trust-grid article {
    padding: 1.2rem;
}

.trust-grid h2,
.trust-grid h3 {
    font-size: 1rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

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

.product-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card div {
    padding: 1.2rem;
}

.product-card img,
.gallery-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background: #eef2ec;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1rem;
}

.muted-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .92)),
        radial-gradient(circle at 10% 20%, rgba(232, 189, 98, .20), transparent 24rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split-panel,
.video-card,
.rate-board {
    background: var(--green-950);
    color: white;
    border-radius: var(--radius);
    padding: clamp(1.4rem, 4vw, 3rem);
    box-shadow: var(--shadow);
}

.split-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 1.5rem;
    align-items: center;
}

.split-panel h2,
.split-panel p,
.video-card h2,
.video-card p,
.rate-board h2,
.rate-board p {
    color: white;
}

.rate-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.rate-mini-grid article {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.journey-preview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.journey-preview article,
.process-timeline article {
    position: relative;
    padding: 1.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
}

.journey-preview span,
.process-timeline span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    aspect-ratio: 1;
    margin-bottom: .8rem;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--green-950);
    font-weight: 850;
}

.local-seo-band {
    background: linear-gradient(135deg, #fdfcf7, #eef5ee);
}

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

.local-grid article,
.article-card,
.gallery-card {
    padding: 1.1rem;
}

.video-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    min-height: 300px;
    background:
        radial-gradient(circle at 78% 50%, rgba(232, 189, 98, .34), transparent 18rem),
        linear-gradient(135deg, var(--green-950), #174f37);
}

.play-button {
    width: 120px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    background: var(--gold-400);
    color: var(--green-950);
    font-weight: 850;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .26);
}

.faq-section {
    background: var(--surface);
}

.faq-list {
    display: grid;
    gap: .9rem;
}

.faq-list article {
    padding: 1.1rem 1.3rem;
    border-left: 4px solid var(--gold-600);
    background: var(--flour);
    border-radius: var(--radius);
}

.page-hero {
    background:
        radial-gradient(circle at 80% 16%, rgba(232, 189, 98, .22), transparent 26rem),
        linear-gradient(135deg, #fdfcf7, #edf4ed);
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 800px;
    font-size: 1.15rem;
}

.content-panel,
.contact-panel,
.map-placeholder,
.inquiry-form {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.dark-panel {
    background: var(--green-950);
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p {
    color: white;
}

.rate-board {
    background: linear-gradient(135deg, var(--green-950), #174f37);
}

.rate-board-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.2rem;
}

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

.rate-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    padding: 1rem;
}

.rate-card h3,
.rate-card p {
    color: white;
}

.rate-value {
    font-size: 1.35rem;
    font-weight: 850;
}

.process-timeline {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.process-timeline article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

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

.gallery-card h3 {
    margin-top: .9rem;
}

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

.link-grid a {
    display: block;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    font-weight: 780;
}

.inquiry-form {
    display: grid;
    gap: .9rem;
}

.inquiry-form label {
    display: grid;
    gap: .35rem;
    color: var(--green-950);
    font-weight: 730;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .8rem .9rem;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.site-footer {
    background: var(--green-950);
    color: white;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer address {
    color: white;
}

.footer-main {
    padding: 4rem 0;
}

.footer-link,
.footer-nav a {
    color: var(--gold-400);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .45rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 1rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: .9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-grid;
    place-items: center;
    width: 58px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25d366;
    color: #052413;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(5, 36, 19, .25);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-14px) rotateX(2deg) rotateY(-2deg);
    }
}

@media (max-width: 1199px) {
    .trust-grid,
    .rate-grid,
    .local-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid,
    .gallery-grid,
    .article-grid,
    .link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-actions,
    .card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .split-panel,
    .video-card,
    .rate-board-head {
        grid-template-columns: 1fr;
        display: grid;
    }

    .trust-grid,
    .product-grid,
    .rate-grid,
    .local-grid,
    .journey-preview,
    .gallery-grid,
    .article-grid,
    .link-grid,
    .rate-mini-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        text-align: left;
    }

    .play-button {
        width: 92px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
