:root {
    --bg: #050505;
    --bg-soft: #101114;
    --surface: rgba(18, 20, 24, 0.92);
    --surface-strong: rgba(30, 31, 38, 0.95);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f1ea;
    --muted: #b8b4ab;
    --silver: #d0d2d8;
    --silver-dark: #848895;
    --red: #d41510;
    --gold: #d6a63b;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(212, 21, 16, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(214, 166, 59, 0.12), transparent 26%),
        linear-gradient(180deg, #040404 0%, #0a0b0f 46%, #070707 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 92px;
}

.section-space {
    padding: 7rem 0;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.navbar {
    padding: 1rem 0;
    background: transparent;
    transition: background-color 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--text);
    text-decoration: none;
}

.navbar-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.navbar-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-brand strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.05rem;
}

.navbar-brand small {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.14);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    letter-spacing: 0.04rem;
}

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

.btn-brand {
    border: 0;
    color: #120b04;
    background: linear-gradient(135deg, var(--gold), #f0c86e);
    box-shadow: 0 14px 28px rgba(214, 166, 59, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #120b04;
    background: linear-gradient(135deg, #efc15c, #ffd88b);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.8;
}

.hero-glow-red {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 21, 16, 0.34), transparent 70%);
    left: -4rem;
    top: 15%;
}

.hero-glow-gold {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(214, 166, 59, 0.22), transparent 70%);
    right: -8rem;
    bottom: 0;
}

.hero-title,
.section-heading h2,
.feature-copy h3,
.contact-copy h2,
.whatsapp-head h3,
.client-card h3,
.info-card h3 {
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.03rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.95;
    margin-bottom: 1.4rem;
}

.hero-copy {
    max-width: 42rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-actions {
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-tags span,
.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--silver);
    font-size: 0.92rem;
}

.chip-accent {
    border-color: rgba(214, 166, 59, 0.28);
    color: var(--gold);
}

.brand-panel,
.feature-slab,
.catalog-card,
.client-card,
.whatsapp-card,
.info-card {
    background: linear-gradient(180deg, rgba(24, 25, 30, 0.95), rgba(12, 13, 17, 0.95));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.brand-panel {
    position: relative;
    padding: 1.5rem;
}

.brand-panel::after {
    content: "";
    position: absolute;
    inset: auto 1.5rem 1.5rem auto;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 21, 16, 0.22), rgba(214, 166, 59, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: min(100%, 360px);
    display: block;
    margin: 2rem auto 1.5rem;
    position: relative;
    z-index: 1;
}

.brand-details {
    position: relative;
    z-index: 1;
}

.brand-details p {
    margin-top: 0.55rem;
    color: var(--muted);
    line-height: 1.7;
}

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

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

.mini-grid span,
.contact-mini span,
.quote-example span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--silver-dark);
}

.mini-grid strong,
.contact-mini strong {
    font-size: 1rem;
    color: var(--text);
}

.section-heading {
    max-width: 50rem;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.8;
}

.info-card {
    height: 100%;
    padding: 1.75rem;
}

.icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(214, 166, 59, 0.2), rgba(212, 21, 16, 0.16));
    color: var(--gold);
    font-size: 1.4rem;
}

.info-card h3 {
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
}

.info-card p,
.client-card p,
.feature-copy p,
.contact-copy p,
.whatsapp-text,
.quote-example p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.feature-slab {
    height: 100%;
    padding: 2rem;
}

.feature-copy h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-points {
    display: grid;
    gap: 1.1rem;
    margin-top: 2rem;
}

.feature-points div {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-points span {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
    color: var(--red);
}

.catalog-card {
    height: 100%;
    padding: 2rem;
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.catalog-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text);
}

.catalog-list li:last-child {
    border-bottom: 0;
}

.catalog-list span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--gold));
    box-shadow: 0 0 0 6px rgba(212, 21, 16, 0.12);
}

.clients-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0));
}

.carousel {
    padding-bottom: 4rem;
}

.carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background-color: rgba(255, 255, 255, 0.35);
}

.carousel-indicators .active {
    background-color: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    top: calc(50% - 26px);
    height: 52px;
    border-radius: 50%;
    opacity: 1;
    background: rgba(11, 12, 15, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.client-card {
    height: 100%;
    padding: 2rem;
}

.client-badge {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(214, 166, 59, 0.2), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
}

.client-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.contact-section {
    padding-top: 3rem;
}

.contact-copy {
    height: 100%;
    padding: 1rem 0;
}

.contact-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
    line-height: 1;
}

.contact-checklist {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-checklist div {
    display: flex;
    align-items: start;
    gap: 0.85rem;
}

.contact-checklist i {
    color: var(--gold);
    font-size: 1.1rem;
}

.whatsapp-card {
    height: 100%;
    padding: 2rem;
}

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

.whatsapp-head i {
    font-size: 2rem;
    color: #25d366;
}

.whatsapp-head h3 {
    font-size: 2rem;
    margin: 0;
}

.quote-example {
    margin: 1.5rem 0;
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-actions {
    display: grid;
    gap: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 0;
    color: #04140a;
    background: linear-gradient(135deg, #25d366, #79f2a1);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #04140a;
    background: linear-gradient(135deg, #20c95f, #95f7b6);
}

.contact-mini {
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-card {
    display: grid;
    gap: 1rem;
}

.map-embed {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.map-embed iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
    filter: grayscale(1) contrast(1.05);
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--silver-dark);
    text-align: center;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(8, 8, 10, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-section {
        min-height: auto;
        padding-top: 7rem;
    }

    .brand-panel::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .brand-panel,
    .feature-slab,
    .catalog-card,
    .client-card,
    .whatsapp-card,
    .info-card {
        border-radius: 22px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
