/* ==================================================
   01. DESIGN TOKENS
   ================================================== */
:root {
    --ink: #191715;
    --muted: #706964;
    --cream: #f7f2ea;
    --paper: #fffaf4;
    --clay: #9f4227;
    --clay-2: #c65b34;
    --rust: #7d2f1e;
    --charcoal: #24211f;
    --line: rgba(45,35,30,.13);
    --shadow: 0 24px 70px rgba(68,39,26,.16);
    --radius: 28px;
}

/* ==================================================
   02. GLOBAL / BASE
   ================================================== */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

/* ==================================================
   03. HEADER / NAVIGATION
   ================================================== */
.scroll-progress {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg,var(--clay),#e28c5e);
    transition: width .08s linear;
}
.site-nav {
    padding: 12px 0;
    transition: .3s ease;
    background: rgba(255,250,244,.75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    padding: 7px 0;
    background: rgba(255,250,244,.94);
    border-color: var(--line);
    box-shadow: 0 12px 35px rgba(46,30,22,.08);
}
.nav-shell {
    max-width: 1500px;
}
.brand-lockup {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
}
.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.brand-copy {
    display: grid;
    line-height: 1;
    text-align: center;
}
.brand-copy strong {
    font-size: 17px;
    letter-spacing: .18em;
    font-weight: 600;
    white-space: nowrap;
}
.brand-roshan {
    color: #24211f;
}
.brand-bricks {
    color: #b64d2e;
}
.brand-copy small {
    font-size: 10px;
    letter-spacing: .34em;
    color: #6f3022;
    margin-top: 7px;
    font-weight: 800;
    text-align: center;
    padding-left: .34em;
}
.site-nav .nav-link {
    position: relative;
    color: #332f2c!important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: .7rem .9rem!important;
}
.site-nav .nav-link:after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 4px;
    height: 2px;
    background: var(--clay);
    transition: .25s;
}
.site-nav .nav-link:hover:after,.site-nav .nav-link.active:after {
    left: .9rem;
    right: .9rem;
}

/* ==================================================
   04. BUTTONS
   ================================================== */
.btn {
    border-radius: 13px;
    font-weight: 600;
    letter-spacing: .01em;
}
.btn-terracotta {
    background: linear-gradient(135deg,var(--clay-2),var(--clay));
    border: 0;
    color: #fff;
    box-shadow: 0 10px 25px rgba(159,66,39,.23);
}
.btn-terracotta:hover {
    color: #fff;
    background: linear-gradient(135deg,#d4693e,#8f3921);
    transform: translateY(-1px);
}
.btn-whatsapp {
    background: #1f9d55;
    border: 0;
    color: #fff;
    box-shadow: 0 10px 25px rgba(31,157,85,.2);
}
.btn-whatsapp:hover {
    background: #188449;
    color: #fff;
    transform: translateY(-1px);
}
.btn-glass {
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.11);
    color: #fff;
    backdrop-filter: blur(12px);
}
.btn-glass:hover {
    background: #fff;
    color: #241d19;
}

/* ==================================================
   05. HERO
   ================================================== */
.hero-section {
    height: min(900px,100vh);
    min-height: 700px;
    position: relative;
    background: #1e1815;
}
.hero-slide {
    position: relative;
}
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide-1 .hero-media {
    object-position: center 55%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(23,18,15,.78) 0%,rgba(23,18,15,.52) 45%,rgba(23,18,15,.12) 78%),linear-gradient(0deg,rgba(20,15,12,.48),transparent 55%);
}
.hero-overlay.darker {
    background: linear-gradient(90deg,rgba(22,16,12,.78),rgba(22,16,12,.3) 68%,rgba(22,16,12,.24));
}
.hero-content-wrap {
    height: 100%;
    position: relative;
    z-index: 2;
    padding-top: 86px;
}
.eyebrow,.section-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-weight: 700;
    color: var(--clay-2);
    margin-bottom: 18px;
}
.hero-section .eyebrow {
    color: #f0b08d;
}
.display-hero {
    font-size: clamp(3.5rem,7vw,7.1rem);
    line-height: .92;
    letter-spacing: -.055em;
    font-weight: 600;
    color: #fff;
    max-width: 1050px;
}
.display-hero span {
    font-weight: 300;
    color: #f5d5c6;
}
.hero-copy {
    font-size: clamp(1rem,1.4vw,1.22rem);
    line-height: 1.7;
    color: rgba(255,255,255,.77);
    max-width: 720px;
    margin: 24px 0 30px;
}
.hero-control {
    width: 8%;
    opacity: 1;
}
.control-disc {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
    font-size: 1.2rem;
}
.hero-dots {
    bottom: 128px;
}
.hero-dots [data-bs-target] {
    width: 34px;
    height: 3px;
    border: 0;
    border-radius: 999px;
}
.hero-trustbar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(22,17,14,.72);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.13);
    color: #fff;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 23px 18px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child {
    border-right: 0;
}
.trust-item i {
    font-size: 1.6rem;
    color: #e08055;
}
.trust-item span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .11em;
    line-height: 1.45;
}

/* ==================================================
   06. ABOUT / COMMON SECTIONS
   ================================================== */
.section-pad {
    padding: 110px 0;
}
.about-section {
    background: var(--paper);
}
.media-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 540px;
}
.media-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .8s ease;
}
.about-media-frame {
    min-height: 0;
    aspect-ratio: 877/622;
    background: #0c1820;
}
.about-media-frame img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.about-media-frame:hover img {
    transform: scale(1.01);
}
.media-frame:hover img {
    transform: scale(1.03);
}
.floating-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: rgba(255,250,244,.93);
    backdrop-filter: blur(16px);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(49,30,22,.16);
    display: grid;
}
.note-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--clay);
}
.floating-note strong {
    font-size: 20px;
    margin-top: 3px;
}
.section-title {
    font-size: clamp(2.4rem,4.6vw,5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 560;
}
.section-title span {
    color: var(--clay);
    font-weight: 350;
}
.lead-soft {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #4f4945;
}
.mini-feature {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-top: 1px solid var(--line);
}
.mini-feature i {
    font-size: 1.45rem;
    color: var(--clay);
}
.mini-feature div {
    display: grid;
    gap: 4px;
}
.mini-feature strong {
    font-size: .95rem;
}
.mini-feature span {
    font-size: .82rem;
    color: var(--muted);
}

/* ==================================================
   07. BRICK BRANDS CAROUSEL
   ================================================== */
.brands-section {
    background: #fff;
}
.brand-carousel {
    border-radius: 32px;
    background: linear-gradient(145deg,#f7efe6,#ebe0d4);
    padding: 34px;
    box-shadow: inset 0 0 0 1px rgba(91,55,38,.08);
}
.brand-stage {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 310px;
    align-items: center;
    gap: 20px;
}
.brand-stage img {
    width: 100%;
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 34px 36px rgba(84,43,27,.2));
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.carousel-item.active .brand-stage img {
    animation: brickFloat 5s ease-in-out infinite;
}
.brand-info {
    align-self: end;
    margin-bottom: 70px;
    background: rgba(255,255,255,.74);
    backdrop-filter: blur(16px);
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.7);
}
.brand-info span {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clay);
}
.brand-info h3 {
    font-family: Georgia,serif;
    font-size: 3.4rem;
    margin: 2px 0 8px;
}
.brand-info p {
    color: var(--muted);
    margin: 0;
}
.brand-arrow {
    width: 54px;
    height: 54px;
    top: 46%;
    bottom: auto;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: var(--ink);
    opacity: 1;
    font-size: 1.3rem;
    margin: 0 18px;
}
.brand-thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 18px;
}
.brand-thumb {
    border: 1px solid rgba(87,52,36,.12);
    background: rgba(255,255,255,.55);
    border-radius: 16px;
    padding: 8px;
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 10px;
    text-align: left;
    transition: .25s;
}
.brand-thumb img {
    width: 74px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
}
.brand-thumb span {
    font-weight: 600;
}
.brand-thumb.active,.brand-thumb:hover {
    border-color: var(--clay);
    background: #fff;
    box-shadow: 0 10px 25px rgba(68,39,26,.1);
    transform: translateY(-2px);
}

/* ==================================================
   08. PRODUCTS / MATERIALS
   ================================================== */
.products-section {
    background: var(--cream);
}
.section-heading {
    max-width: 820px;
    margin: auto;
}
.section-heading>p:last-child {
    max-width: 580px;
}
.product-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(74,49,37,.08);
    box-shadow: 0 10px 30px rgba(64,42,30,.06);
    transition: transform .35s,box-shadow .35s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(64,42,30,.13);
}
.product-media {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #eee;
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.product-card:hover .product-media img {
    transform: scale(1.04);
}
.fly-media img {
    object-fit: contain;
    background: #f6f6f6;
    padding: 18px;
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--clay);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.product-body {
    padding: 26px;
}
.product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--clay);
    font-weight: 700;
    margin-bottom: 8px;
}
.product-body h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.product-body p:not(.product-category) {
    color: var(--muted);
    line-height: 1.65;
}
.text-link {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 650;
    text-decoration: none;
}
.text-link i {
    transition: transform .2s;
}
.text-link:hover i {
    transform: translateX(4px);
}
.grade-visual {
    height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 28px;
    background: linear-gradient(145deg,#bd5b34,#73301d);
    color: white;
    position: relative;
    overflow: hidden;
}
.grade-visual:after {
    content: "";
    position: absolute;
    width: 210px;
    height: 90px;
    border: 20px solid rgba(255,255,255,.09);
    right: -45px;
    top: 50px;
    transform: rotate(-14deg);
    border-radius: 10px;
}
.grade-visual span {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1;
}
.grade-visual i {
    font-size: 3rem;
    opacity: .85;
}
.grade-two {
    background: linear-gradient(145deg,#c87950,#8c4930);
}
.grade-visual.dark {
    background: linear-gradient(145deg,#4f3329,#201c1a);
}
.material-card {
    background: linear-gradient(145deg,#fff,#f6eee8);
}
.material-icons {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #28221f;
    color: #fff;
}
.material-icons i {
    font-size: 2.5rem;
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    color: #e77b4b;
}

/* ==================================================
   09. DELIVERY + QUOTE FORM
   ================================================== */
.delivery-section {
    position: relative;
    background: #15110f;
    min-height: 700px;
}
.delivery-media {
    position: absolute;
    inset: 0;
}
.delivery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.delivery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(15,12,10,.95) 0%,rgba(15,12,10,.84) 48%,rgba(15,12,10,.58) 100%);
}
.section-kicker.light {
    color: #e88a61;
}
.delivery-points {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.delivery-points>div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    border-radius: 16px;
    color: #fff;
}
.delivery-points i {
    font-size: 1.3rem;
    color: #e08055;
}
.delivery-points span {
    display: grid;
}
.delivery-points strong {
    font-size: .85rem;
}
.delivery-points small {
    color: rgba(255,255,255,.5);
}
.quote-panel {
    background: rgba(255,250,244,.95);
    backdrop-filter: blur(18px);
    padding: 34px;
    border-radius: 26px;
    box-shadow: var(--shadow);
}
.quote-label {
    font-size: 10px;
    letter-spacing: .22em;
    color: var(--clay);
    font-weight: 700;
}
.quote-panel h3 {
    font-size: 2rem;
    margin: 7px 0 24px;
}
.form-control,.form-select {
    border-radius: 12px;
    border-color: #ded6cf;
    padding: .75rem .9rem;
    background: #fff;
}
.form-control:focus,.form-select:focus {
    border-color: #bc6b4a;
    box-shadow: 0 0 0 .2rem rgba(159,66,39,.12);
}
.form-label {
    font-size: .78rem;
    font-weight: 650;
    color: #5e5753;
}
.form-note {
    font-size: .72rem;
    color: #8a817b;
    line-height: 1.5;
}

/* ==================================================
   10. LOWER IMAGE SLIDER
   ================================================== */
.network-section {
    background: #fff;
}
.network-card {
    position: relative;
    min-height: 620px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #181310;
}
.network-video,.network-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.network-media {
    object-position: center 55%;
}
.network-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(20,15,12,.94),rgba(20,15,12,.55) 58%,rgba(20,15,12,.25));
}
.network-copy {
    position: absolute;
    left: clamp(28px,6vw,90px);
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
}
.network-copy h2 {
    font-size: clamp(2.8rem,5vw,5rem);
    line-height: .98;
    letter-spacing: -.045em;
}
.network-copy h2 span {
    color: #f0b08d;
    font-weight: 300;
}
.network-copy p:last-child {
    color: rgba(255,255,255,.68);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 570px;
}
.video-toggle {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

/* ==================================================
   11. CONTACT / FOOTER
   ================================================== */
.contact-section {
    background: var(--paper);
}
.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}
.contact-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: #5d5651;
}
.contact-meta i {
    color: var(--clay);
}
.contact-card {
    background: #fff;
    padding: 36px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(64,42,30,.1);
    text-align: center;
}
.contact-logo {
    max-width: 220px;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 18px;
}
.contact-card h3 {
    font-size: 1.6rem;
}
.contact-card p {
    color: var(--muted);
    margin-bottom: 22px;
}
.site-footer {
    background: #1e1a18;
    color: rgba(255,255,255,.55);
    font-size: .8rem;
}

/* ==================================================
   12. ANIMATIONS
   ================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease,transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp .8s forwards .15s;
}
.delay-1 {
    animation-delay: .28s;
}
.delay-2 {
    animation-delay: .4s;
}
.delay-3 {
    animation-delay: .52s;
}
@keyframes revealUp {
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes brickFloat {
    0%,100% {
        transform: translateY(0) rotate(-.4deg);
    }
    50% {
        transform: translateY(-9px) rotate(.35deg);
    }
}

/* ==================================================
   13. RESPONSIVE
   ================================================== */
@media(max-width:991.98px) {
    .site-nav .navbar-collapse {
        background: rgba(255,250,244,.98);
        padding: 18px;
        border-radius: 18px;
        margin-top: 10px;
        box-shadow: 0 20px 50px rgba(44,28,20,.12);
    }
    .hero-section {
        min-height: 760px;
    }
    .hero-control {
        display: none;
    }
    .hero-trustbar {
        font-size: .8rem;
    }
    .trust-item {
        padding: 17px 10px;
    }
    .brand-stage {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .brand-stage img {
        max-height: 500px;
    }
    .brand-info {
        margin: 0;
    }
    .brand-thumbs {
        grid-template-columns: repeat(2,1fr);
    }
    .section-pad {
        padding: 82px 0;
    }
    .media-frame {
        min-height: 430px;
    }
    .about-media-frame {
        min-height: 0;
    }
}
@media(max-width:767.98px) {
    .brand-logo {
        width: 42px;
        height: 42px;
    }
    .brand-copy strong {
        font-size: 14px;
    }
    .brand-copy small {
        font-size: 8px;
    }
    .hero-section {
        height: auto;
        min-height: 790px;
    }
    .hero-slide {
        min-height: 790px;
    }
    .hero-content-wrap {
        padding: 115px 18px 140px;
    }
    .display-hero {
        font-size: clamp(3rem,16vw,5rem);
    }
    .hero-copy {
        font-size: 1rem;
    }
    .hero-dots {
        bottom: 123px;
    }
    .trust-item {
        justify-content: flex-start;
    }
    .trust-item i {
        font-size: 1.3rem;
    }
    .trust-item span {
        font-size: 9px;
    }
    .media-frame {
        min-height: 350px;
    }
    .about-media-frame {
        min-height: 0;
    }
    .section-title {
        font-size: clamp(2.4rem,12vw,4rem);
    }
    .brand-carousel {
        padding: 18px;
        border-radius: 24px;
    }
    .brand-stage img {
        max-height: 360px;
    }
    .brand-info h3 {
        font-size: 2.6rem;
    }
    .brand-arrow {
        width: 42px;
        height: 42px;
        margin: 0 8px;
    }
    .brand-thumb {
        grid-template-columns: 54px 1fr;
    }
    .brand-thumb img {
        width: 54px;
        height: 44px;
    }
    .delivery-points {
        display: grid;
        grid-template-columns: 1fr;
    }
    .network-card {
        min-height: 560px;
    }
    .network-copy {
        right: 24px;
    }
    .network-shade {
        background: linear-gradient(90deg,rgba(20,15,12,.92),rgba(20,15,12,.7));
    }
}
@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto!important;
        animation-duration: .001ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .001ms!important;
    }
    .network-video {
        display: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==================================================
   14. VIDEO HERO + RELOCATED IMAGE SLIDER
   ================================================== *//* v5: video-only hero + image slider moved to former video section */
.hero-video-only {
    overflow: hidden;
}
.hero-video-only .hero-video {
    object-position: center 55%;
}
.hero-video-toggle {
    position: absolute;
    right: 28px;
    bottom: 112px;
    z-index: 8;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(20,15,12,.28);
    color: #fff;
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    transition: .2s;
}
.hero-video-toggle:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}
.network-card #networkImageCarousel,.network-card .carousel-inner,.network-card .carousel-item {
    height: 100%;
    min-height: 620px;
}
.network-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}
.network-card .network-shade {
    z-index: 2;
    pointer-events: none;
}
.network-card .network-copy {
    z-index: 3;
    pointer-events: none;
}
.network-control {
    z-index: 4;
    width: 9%;
    opacity: 1;
}
.network-control .control-disc {
    background: rgba(20,15,12,.35);
}
.network-dots {
    z-index: 4;
    bottom: 24px;
}
.network-dots [data-bs-target] {
    width: 30px;
    height: 3px;
    border: 0;
    border-radius: 999px;
}
.network-card .carousel-item {
    transition: transform .75s ease-in-out;
}
.network-card .carousel-item img {
    transform: scale(1.01);
    transition: transform 5s ease;
}
.network-card .carousel-item.active img {
    transform: scale(1.045);
}
@media(max-width:991.98px) {
    .hero-video-toggle {
        bottom: 98px;
    }
    .network-card #networkImageCarousel,.network-card .carousel-inner,.network-card .carousel-item {
        min-height: 560px;
    }
}
@media(max-width:767.98px) {
    .hero-video-toggle {
        right: 18px;
        bottom: 122px;
        width: 46px;
        height: 46px;
    }
    .network-control {
        display: none;
    }
    .network-slide-image {
        object-position: center;
    }
    .network-dots {
        bottom: 16px;
    }
}


/* ==================================================
   15. GEO / FAQ / INTERNAL DISCOVERY
   ================================================== */
.facts-section {
    background: #fff;
}
.fact-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
}
.fact-card {
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 20px;
    padding: 22px;
    min-height: 156px;
    display: grid;
    align-content: start;
    gap: 8px;
}
.fact-card i {
    font-size: 1.4rem;
    color: var(--clay);
}
.fact-card strong {
    font-size: 1rem;
}
.fact-card span {
    color: var(--muted);
    line-height: 1.55;
    font-size: .94rem;
}
.faq-section {
    background: var(--cream);
}
.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
}
.faq-accordion .accordion-button {
    background: transparent;
    color: var(--ink);
    font-weight: 650;
    padding: 1.25rem 0;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--clay);
}
.faq-accordion .accordion-body {
    padding: 0 0 1.3rem;
    color: var(--muted);
    line-height: 1.7;
}
.site-footer a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-top: .45rem;
    opacity: .82;
}
.site-footer a:hover {
    opacity: 1;
    color: #fff;
}
.footer-title {
    display: block;
    color: #fff;
    letter-spacing: .03em;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1030;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1f9d55;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(31,157,85,.32);
    font-size: 1.45rem;
}
.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ==================================================
   16. TOPICAL DETAIL PAGES
   ================================================== */
.detail-hero {
    padding: 155px 0 85px;
    background: linear-gradient(135deg,#241b17 0%,#4b2a20 55%,#8f3d24 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.detail-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 30%,rgba(255,255,255,.12),transparent 30%);
    pointer-events: none;
}
.detail-hero .container-xxl {
    position: relative;
    z-index: 2;
}
.detail-hero h1 {
    font-size: clamp(2.8rem,6vw,5.8rem);
    line-height: .98;
    letter-spacing: -.045em;
    max-width: 950px;
}
.detail-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
    line-height: 1.75;
}
.breadcrumb-lite {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.66);
}
.breadcrumb-lite a {
    color: #fff;
    text-decoration: none;
}
.detail-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 12px 40px rgba(60,38,28,.06);
}
.detail-card h2,.detail-card h3 {
    margin-bottom: .75rem;
}
.detail-card p,.detail-card li {
    color: var(--muted);
    line-height: 1.7;
}
.detail-media {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.jump-nav a {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    background: #fff;
}
.page-cta {
    background: var(--cream);
    border-radius: 28px;
    padding: 34px;
    border: 1px solid var(--line);
}
@media (max-width: 767.98px) {
    .fact-grid { grid-template-columns: 1fr; }
    .detail-hero { padding-top: 125px; }
    .floating-whatsapp { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}
