:root {
    --black: #232526;
    --black2: #1a1b1c;
    --gold: #C9A227;
    --gold-light: #e8c547;
    --gold-dark: #a07d1a;
    --olive-light: var(--gold-light);
    --white: #ffffff;
    --gray: #888;
    --gray2: #555;
    --section-bg: #1e1f20;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

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

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: rgba(35, 37, 38, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 60px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.18), 0 2px 12px rgba(0, 0, 0, 0.5);
    background: rgba(35, 37, 38, 0.88);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold);
}

.nav-logo svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.nav-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ===================== HERO ===================== */
#hero {
    min-height: 95vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.12) 0%, rgba(26, 27, 28, 0) 45%), #0f100e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(201, 162, 39, 0.1) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.92) 90%);
}

.hero-plate {
    position: relative;
    width: min(80vw, 1180px);
    max-width: 1180px;
    min-height: min(70vh, 760px);
    border: 3px solid rgba(128, 128, 0, 0.4);
    border-radius: 8px;
    background: linear-gradient(135deg, #2a2a1a 0%, #1e1e0e 30%, #2a2a18 50%, #181808 70%, #222212 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 2;
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.hero-plate::before {
    content: '';
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(128, 128, 0, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.engrave-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

.engrave-brand {
    font-family: 'Barlow Condensed', 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: clamp(2.15rem, 5.5vw, 4.5rem);
    color: var(--olive-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 -1px 1px rgba(255, 255, 255, 0.05);
}

.engrave-rule {
    width: min(86%, 860px);
    height: 10px;
    margin: 14px auto;
    background:
        linear-gradient(90deg, transparent 0%, rgba(128, 128, 0, 0.35) 16%, rgba(128, 128, 0, 0.75) 50%, rgba(128, 128, 0, 0.35) 84%, transparent 100%);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.45);
}

.engrave-est {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(232, 197, 71, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

.engrave-tagline {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.35rem, 2.5vw, 2.3rem);
    color: rgba(232, 197, 71, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 -1px 1px rgba(255, 255, 255, 0.04);
    line-height: 1.3;
    z-index: 1;
}

.hero-plate-body {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(24px, 3vw, 44px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.plate-photo-main {
    width: 220px;
    height: 280px;
    border: 4px solid rgba(128, 128, 0, 0.35);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    overflow: hidden;
    justify-self: center;
}

.plate-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.84) saturate(0.96);
}

.plate-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.engrave-subline {
    font-size: clamp(0.9rem, 1.2vw, 1.03rem);
    letter-spacing: 1.1px;
    color: rgba(232, 197, 71, 0.83);
    text-transform: uppercase;
}

.plate-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-cta,
.hero-cta2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.82rem;
    border: 1px solid rgba(128, 128, 0, 0.45);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), inset 0 -1px 2px rgba(0, 0, 0, 0.55), 0 6px 15px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.26) 0%, rgba(128, 128, 0, 0.46) 100%);
    color: rgba(232, 197, 71, 0.95);
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06), inset 0 -1px 2px rgba(0, 0, 0, 0.65), 0 8px 18px rgba(0, 0, 0, 0.45);
}

.hero-cta2 {
    margin-left: 0;
    background: linear-gradient(180deg, rgba(51, 52, 39, 0.9) 0%, rgba(35, 36, 27, 0.95) 100%);
    color: rgba(232, 197, 71, 0.9);
}

.hero-cta2:hover {
    background: linear-gradient(180deg, rgba(56, 57, 43, 0.95) 0%, rgba(30, 31, 22, 1) 100%);
}

.plate-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 6px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(128, 128, 0, 0.24);
    border-radius: 6px;
    padding: 8px 11px;
    font-size: 0.78rem;
    color: rgba(232, 197, 71, 0.88);
    background: rgba(19, 20, 14, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.badge-icon {
    color: rgba(232, 197, 71, 0.95);
    font-size: 0.9rem;
}

.plate-photo-secondary {
    position: absolute;
    right: clamp(18px, 2.3vw, 32px);
    bottom: clamp(16px, 2.1vw, 30px);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid rgba(128, 128, 0, 0.35);
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 8px 18px rgba(0, 0, 0, 0.45);
}

.plate-photo-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.86) saturate(0.98);
}

.hero-left,
.hero-right,
.prism-wrap,
.hero-badges,
.light-rays {
    display: none;
}

.hero-badges {
    z-index: 1;
}

/* ===================== ABOUT ===================== */
#about {
    padding: 110px 0 90px;
    background: var(--black2);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-top: 20px;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid rgba(201, 162, 39, 0.18);
    display: block;
    background: linear-gradient(135deg, #2a2b2c, #333);
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 20px 24px;
    border-radius: 14px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.3);
}

.about-img-badge .big {
    font-size: 2.2rem;
    display: block;
    line-height: 1;
}

.about-img-badge .small {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

.about-h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

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

.about-p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feat {
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color 0.25s, background 0.25s;
}

.about-feat:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(201, 162, 39, 0.1);
}

.about-feat-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3px;
}

.about-feat-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================== STATS ===================== */
#stats {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    padding: 70px 0;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(35, 37, 38, 0.2);
}

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

.stat-num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(35, 37, 38, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ===================== SERVICES TIMELINE ===================== */
#services {
    padding: 110px 0 90px;
    background: var(--black);
    overflow: hidden;
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.section-h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.18;
}

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

.section-p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 14px;
    line-height: 1.7;
}

.timeline-rail {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold) 0%, #a07d1a 40%, #8b5cf6 80%, #3b82f6 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 64px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 42%;
    background: rgba(35, 37, 38, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 14px;
    padding: 28px 28px 22px;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
}

.timeline-content:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-connector {
    position: absolute;
    top: 36px;
    width: 8%;
    height: 2px;
    background: rgba(201, 162, 39, 0.4);
}

.timeline-item:nth-child(odd) .timeline-connector {
    right: calc(42% + 8px);
}

.timeline-item:nth-child(even) .timeline-connector {
    left: calc(42% + 8px);
}

.timeline-node {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--black);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
    z-index: 2;
}

.timeline-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.68;
}

.timeline-imgs {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.timeline-imgs img {
    width: 50%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    background: linear-gradient(135deg, #2a2b2c, #333);
    display: block;
}

/* ===================== WHY CHOOSE US ===================== */
#why {
    padding: 110px 0 90px;
    background: var(--black2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.why-card {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px 2px 0 0;
    opacity: 0;
    transition: opacity 0.25s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.1);
}

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

.why-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ===================== SERVICE AREAS ===================== */
#areas {
    padding: 90px 0;
    background: var(--black);
}

.areas-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.area-chip {
    background: rgba(201, 162, 39, 0.07);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 8px;
    padding: 10px 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    cursor: default;
}

.area-chip:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.area-chip.featured {
    background: rgba(201, 162, 39, 0.14);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 700;
}

/* ===================== FAQ ===================== */
#faq {
    padding: 110px 0 90px;
    background: var(--black2);
}

.faq-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
}

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

.faq-item {
    background: rgba(35, 37, 38, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.35);
}

.faq-q {
    padding: 20px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 12px;
}

.faq-q-text {
    flex: 1;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.2s, background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--black);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.25s;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    padding: 0 22px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 20px;
}

/* ===================== ADDITIONAL SERVICES (SPLIT SCREEN) ===================== */
#addl {
    padding: 90px 0;
    background: var(--black);
}

.addl-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 52px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.split-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    cursor: pointer;
    background: var(--section-bg);
    display: flex;
    align-items: flex-end;
    padding: 36px 36px;
    transition: flex 0.4s;
}

.split-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 37, 38, 0.2) 0%, rgba(35, 37, 38, 0.85) 100%);
    z-index: 1;
}

.split-card:hover::before {
    background: linear-gradient(180deg, rgba(35, 37, 38, 0.1) 0%, rgba(35, 37, 38, 0.9) 100%);
}

.split-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.4s;
}

.split-card:hover .split-card-bg {
    transform: scale(1.04);
}

.split-card-bg.bg1 {
    background: linear-gradient(135deg, #2a1a00, #4a2f00);
}

.split-card-bg.bg2 {
    background: linear-gradient(135deg, #0a1a2a, #0a2a1a);
}

.split-card-bg.bg3 {
    background: linear-gradient(135deg, #1a0a2a, #2a0a1a);
}

.split-card-bg.bg4 {
    background: linear-gradient(135deg, #001a1a, #001a0a);
}

.split-content {
    position: relative;
    z-index: 2;
}

.split-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.split-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.split-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.split-btn {
    display: inline-block;
    margin-top: 16px;
    border: 1.5px solid rgba(201, 162, 39, 0.5);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    transition: background 0.2s;
}

.split-card:hover .split-btn {
    background: rgba(201, 162, 39, 0.15);
}

.split-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(201, 162, 39, 0.3);
    transform: translateX(-50%);
    z-index: 5;
}

/* ===================== CONTACT ===================== */
#contact {
    padding: 100px 0 80px;
    background: var(--black2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    margin-top: 50px;
}

.contact-info-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
}

.contact-info-title span {
    color: var(--gold);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-info-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info-val {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.contact-info-val a {
    color: var(--white);
    transition: color 0.2s;
}

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

.contact-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.contact-btn-secondary {
    border: 1.5px solid rgba(201, 162, 39, 0.4);
    color: var(--gold);
    background: transparent;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 162, 39, 0.25);
}

/* Map placeholder */
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(201, 162, 39, 0.18);
    height: 380px;
    position: relative;
    background: #1e1f20;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(35, 37, 38, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    pointer-events: none;
}

/* ===================== FOOTER ===================== */
footer {
    background: #141516;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.footer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 28px 32px;
}

.footer-top {
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.16);
    border-radius: 18px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 0;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-addr {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.footer-addr strong {
    color: var(--gold);
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

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

.footer-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
}

.footer-cta-btn.call {
    background: var(--gold);
    color: var(--black);
}

.footer-cta-btn.email {
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold);
}

.footer-cta-btn.map2 {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.footer-cta-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.footer-bottom {
    padding: 22px 28px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy span {
    color: rgba(201, 162, 39, 0.7);
}

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

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-badge {
        right: 10px;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(35, 37, 38, 0.2);
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 24px);
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    #hero {
        min-height: auto;
        padding: 120px 16px 72px;
    }

    .hero-plate {
        width: min(92vw, 1180px);
        min-height: auto;
        padding: 22px 16px 24px;
        gap: 18px;
    }

    .engrave-rule {
        margin: 11px auto;
        height: 8px;
    }

    .hero-plate-body {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 20px;
    }

    .plate-copy {
        align-items: center;
    }

    .plate-badges {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .plate-cta-row {
        justify-content: center;
    }

    .plate-photo-main {
        width: min(220px, 72vw);
        height: min(280px, 86vw);
    }

    .plate-photo-secondary {
        position: static;
        margin: 2px auto 0;
    }

    .timeline-line {
        left: 24px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 56px;
    }

    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-node {
        left: 24px;
    }

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

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

    .hero-cta,
    .hero-cta2 {
        width: 100%;
        max-width: 280px;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===================== COMPREHENSIVE SERVICE ===================== */
#comp-service {
    padding: 110px 0 90px;
    background: var(--black);
    overflow: hidden;
}

.comp-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
}

.comp-layout {
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 620px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.16);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 162, 39, 0.06);
}

/* Left service panel */
.comp-panel {
    background: #1c1d1e;
    padding: 52px 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.comp-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.comp-panel-right::before {
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.comp-panel-accent {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.comp-panel-left .comp-panel-accent {
    right: -60px;
    bottom: -60px;
}

.comp-panel-right .comp-panel-accent {
    left: -60px;
    bottom: -60px;
    right: auto;
}

.comp-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
    background: rgba(201, 162, 39, 0.07);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    width: fit-content;
}

.comp-panel-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.7rem;
    color: var(--gold);
}

.comp-panel-title {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.comp-panel-title span {
    color: var(--gold);
}

.comp-panel-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 28px;
}

.comp-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.comp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.comp-feature-list li .fa-check-circle {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.comp-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 13px 26px;
    border-radius: 40px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
    width: fit-content;
}

.comp-panel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
}

/* Center image */
.comp-image-col {
    position: relative;
    overflow: hidden;
    background: #111213;
    display: flex;
    flex-direction: column;
}

.comp-image-col::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(35, 37, 38, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.comp-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(160deg, #1a1200 0%, #2a2000 30%, #0a0a0a 100%);
    flex: 1;
}

.comp-image-svg-wrap {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1a1200 0%, #2d2200 40%, #0f0c00 100%);
    position: relative;
}

.comp-image-badge-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 24px 24px 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    text-align: center;
}

.comp-image-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    margin: 4px;
}

.comp-image-stat i {
    font-size: 0.85rem;
}

.comp-divider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.4), transparent);
}

.comp-divider-line.left {
    left: 0;
}

.comp-divider-line.right {
    right: 0;
}

@media (max-width: 960px) {
    .comp-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 16px;
    }

    .comp-image-col {
        min-height: 320px;
    }

    .comp-image-svg-wrap {
        min-height: 320px;
    }
}