/* =====================================================
   SHRITECH WINDOWS & DOORS — Modern Redesign 2025
   ===================================================== */

/* ---- Google Fonts are loaded via HTML ---- */

/* =====================================================
   1. CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
    /* Colors */
    --bg-primary: #080c10;
    --bg-secondary: #0d1117;
    --bg-card: #111820;
    --bg-card-hover: #141e29;
    --border: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(201, 168, 76, 0.4);

    --gold: #c9a84c;
    --gold-light: #e8c97c;
    --gold-dark: #9a7d2e;
    --gold-glow: rgba(201, 168, 76, 0.15);

    --white: #ffffff;
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 120px);
    --container: 1280px;
    --gap: clamp(16px, 2.5vw, 32px);

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* Selection */
::selection {
    background: var(--gold);
    color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.display-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.25;
}

.display-sm {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-secondary);
}

/* =====================================================
   4. LAYOUT UTILITIES
   ===================================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section {
    padding: var(--section-pad) 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

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

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

/* =====================================================
   5. BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.btn-ghost:hover {
    background: rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* =====================================================
   6. NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 12, 16, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar__logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    flex-shrink: 0;
}

.navbar__logo-text {
    line-height: 1.2;
}

.navbar__logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

.navbar__logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Nav links */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar__nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.navbar__nav a:hover,
.navbar__nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.navbar__nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    border-radius: var(--radius-sm);
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    background: transparent !important;
}

.nav-dropdown__menu a:hover {
    background: rgba(201, 168, 76, 0.08) !important;
    color: var(--gold) !important;
}

.nav-dropdown__menu a i {
    width: 16px;
    text-align: center;
    color: var(--gold);
    font-size: 0.8rem;
}

/* CTA area */
.navbar__cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.navbar__phone:hover {
    color: var(--gold);
}

.navbar__phone i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

.navbar__hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu nav a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}

.mobile-menu nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.mobile-menu__sub {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__sub a {
    font-size: 1rem !important;
    color: var(--text-muted) !important;
    border-bottom: none !important;
    padding: 10px 0 !important;
}

.mobile-menu__sub a:hover {
    color: var(--gold) !important;
}

.mobile-menu__footer {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =====================================================
   7. HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero__bg img {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(8, 12, 16, 0.92) 0%,
            rgba(8, 12, 16, 0.7) 50%,
            rgba(8, 12, 16, 0.5) 100%);
    z-index: 1;
}

.hero__overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 780px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--gold);
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 44px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: bob 2.5s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Hero stats strip */
.hero__stats {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    gap: 0;
}

.hero__stat {
    padding: 24px 32px;
    background: rgba(8, 12, 16, 0.8);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    text-align: center;
    min-width: 130px;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =====================================================
   8. SECTION HEADER
   ===================================================== */
.section-header {
    margin-bottom: clamp(40px, 5vw, 72px);
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .eyebrow {
    justify-content: center;
}

.section-header.centered .eyebrow::before {
    display: none;
}

.section-header.centered .eyebrow::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.section-header__title {
    color: var(--white);
    margin-bottom: 16px;
}

.section-header__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

.section-header.centered .section-header__text {
    margin: 0 auto;
}

.section-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin-top: 20px;
}

.section-header.centered .section-divider {
    margin: 20px auto 0;
}

/* =====================================================
   9. SERVICES SECTION
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    group: true;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.service-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 12, 16, 0.9) 0%, transparent 60%);
}

.service-card__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--gold);
    color: #000;
    transform: rotate(-5deg) scale(1.1);
}

.service-card__body {
    padding: 28px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card__title {
    color: var(--gold);
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.service-card__link i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.service-card__link:hover {
    color: var(--gold-light);
}

.service-card__link:hover i {
    transform: translateX(4px);
}

.service-card__number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.service-card:hover .service-card__number {
    color: rgba(201, 168, 76, 0.08);
}

/* =====================================================
   10. ABOUT SECTION
   ===================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image__main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.about-image__accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 65%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 4px solid var(--bg-primary);
    box-shadow: var(--shadow-card);
}

.about-image__badge {
    position: absolute;
    top: 24px;
    left: -16px;
    background: var(--gold);
    color: #000;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.about-image__badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-image__badge-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-content {}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature__icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature__title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.about-feature__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   11. STATS SECTION
   ===================================================== */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 32px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(201, 168, 76, 0.03);
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.stat-item__sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =====================================================
   12. GALLERY SECTION
   ===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item--large img {
    min-height: 480px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay i {
    font-size: 1.5rem;
    color: var(--gold);
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay i {
    transform: scale(1);
}

/* =====================================================
   13. TESTIMONIALS
   ===================================================== */
.testimonials-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 clamp(16px, 5vw, 120px);
    display: flex;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.5;
    opacity: 0.3;
    flex-shrink: 0;
    align-self: flex-start;
}

.testimonial-card__content {
    flex: 1;
}

.testimonial-card__text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-family: var(--font-display);
    font-style: italic;
    color: var(--white);
    line-height: 1.65;
    margin-bottom: 28px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.875rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* =====================================================
   14. CTA SECTION
   ===================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1117 0%, #111820 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg,
            var(--gold) 0,
            var(--gold) 1px,
            transparent 0,
            transparent 50%);
    background-size: 30px 30px;
}

.cta-section__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-section__title span {
    color: var(--gold);
}

.cta-section__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-section__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   15. CONTACT INFO CARDS
   ===================================================== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-card__title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.contact-card__detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-card__detail a:hover {
    color: var(--gold);
}

/* Contact form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 52px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    cursor: pointer;
}

/* =====================================================
   16. PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
    position: relative;
    height: clamp(300px, 40vw, 480px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: clamp(32px, 5vw, 64px);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 12, 16, 0.92) 0%, rgba(8, 12, 16, 0.6) 100%);
}

.page-hero__overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.page-hero__breadcrumb a:hover {
    color: var(--gold);
}

.page-hero__breadcrumb span {
    color: var(--gold);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
}

/* =====================================================
   17. SERVICE DETAIL PAGE
   ===================================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-detail__content {}

.service-detail__lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 28px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.service-detail__body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.service-detail__body p {
    margin-bottom: 16px;
}

.service-detail__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.service-detail__images img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.service-benefits {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 32px;
}

.service-benefits__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.service-benefits__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-benefit i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Service sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-services {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-services__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.sidebar-service-link:hover {
    background: rgba(201, 168, 76, 0.06);
    color: var(--gold);
}

.sidebar-service-link.active {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.sidebar-service-link i {
    font-size: 0.75rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
}

.sidebar-cta__icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.sidebar-cta__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-cta__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* =====================================================
   18. WHY CHOOSE US
   ===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-card__number {
    color: rgba(201, 168, 76, 0.2);
}

.why-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-card__icon {
    background: var(--gold);
    color: #000;
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   19. ABOUT PAGE — MISSION/VISION
   ===================================================== */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
}

.mission-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.mission-card__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.mission-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.mission-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =====================================================
   20. FOOTER
   ===================================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer__social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__links a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer__contact-item i {
    color: var(--gold);
    font-size: 0.875rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__contact-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer__contact-item a {
    transition: var(--transition-fast);
}

.footer__contact-item a:hover {
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__copyright a:hover {
    color: var(--gold);
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer__bottom-links a:hover {
    color: var(--gold);
}

/* =====================================================
   21. FLOATING BUTTONS
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes float-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
    }
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 96px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* =====================================================
   22. PROCESS / STEPS
   ===================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}

.process-step {
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.process-step__number {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-step__number {
    background: var(--gold);
    color: #000;
    transform: scale(1.1);
}

.process-step__title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.process-step__text {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =====================================================
   23. ANIMATIONS (AOS-like custom)
   ===================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

[data-reveal-delay="1"] {
    transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
    transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
    transition-delay: 0.5s;
}

[data-reveal-delay="6"] {
    transition-delay: 0.6s;
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

[data-reveal="scale"] {
    transform: scale(0.9);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
}

/* =====================================================
   24. RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .hero__stats {
        display: none;
    }

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

    .service-sidebar {
        position: static;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .navbar__nav,
    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item--large img {
        min-height: 200px;
    }

    .testimonial-card {
        flex-direction: column;
        padding: 0 16px;
    }

    .testimonial-card__quote {
        display: none;
    }

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

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

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-image__accent {
        display: none;
    }

    .about-image__badge {
        left: 0;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   25. UTILITIES
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gold-line {
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark), transparent);
    border: none;
    margin: 48px 0;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.shine {
    background: linear-gradient(90deg,
            var(--gold-dark) 0%,
            var(--gold-light) 50%,
            var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--gold);
}

/* Ribbon */
.ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}