:root {
    --gold: #F39C12;
    --gold-dark: #F39C12;
    --gold-light: #F39C12;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --gray: #888;
    --light: #f5f0e8;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ===== DUAL NAVBAR ===== */
.navbar-top {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 191, 0, 0.2);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.top-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.phone-badge span {
    width: 32px;
    height: 32px;
    background: rgba(255, 191, 0, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-cta {
    background: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.navbar-bottom {
    background: var(--dark2);
    border-bottom: 2px solid var(--gold);
    padding: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar-bottom .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 22px;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

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

.nav-link:hover::after {
    left: 0;
    right: 0;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding-top: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255, 191, 0, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 60px,
            rgba(255, 191, 0, 0.03) 60px,
            rgba(255, 191, 0, 0.03) 61px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 60px,
            rgba(255, 191, 0, 0.03) 60px,
            rgba(255, 191, 0, 0.03) 61px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 191, 0, 0.12);
    border: 1px solid rgba(255, 191, 0, 0.4);
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-bottom: 30px;
}

.hero-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 110px);
    line-height: 0.9;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

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

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Stack */
.hero-image-stack {
    position: relative;
    width: 620px;
    max-width: 100%;
    margin: 0 auto 40px;
    height: 380px;
}

.stack-img {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stack-main {
    width: 380px;
    height: 260px;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border: 2px solid var(--gold);
}

.stack-left {
    width: 200px;
    height: 170px;
    top: 100px;
    left: 0;
    z-index: 2;
    opacity: 0.75;
    transform: rotate(-4deg);
    border: 1px solid rgba(255, 191, 0, 0.3);
}

.stack-right {
    width: 200px;
    height: 170px;
    top: 100px;
    right: 0;
    z-index: 2;
    opacity: 0.75;
    transform: rotate(4deg);
    border: 1px solid rgba(255, 191, 0, 0.3);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.img-placeholder.main-img {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.img-placeholder.side-img {
    background: linear-gradient(135deg, #141414, #222);
}

.garage-svg {
    opacity: 0.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* ===== WHY CHOOSE US ===== */
.section {
    padding: 90px 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
}

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

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 60px;
}

.why-left {
    background: var(--dark2);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.why-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.why-list {
    list-style: none;
    margin-top: 30px;
}

.why-list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--gold);
}

.why-item-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.why-item-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.why-right {
    background: var(--gold);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-right .section-title {
    color: var(--black);
}

.why-right .section-label {
    color: rgba(0, 0, 0, 0.6);
}

.why-right p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-dark {
    background: var(--black);
    color: var(--gold);
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--black);
    align-self: flex-start;
}

.btn-dark:hover {
    background: transparent;
    color: var(--black);
}

/* ===== SERVICES SPLIT ===== */
.services-section {
    background: var(--dark);
}

.services-header {
    text-align: center;
    padding: 80px 30px 60px;
}

.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-split:nth-child(even) {
    direction: rtl;
}

.service-split:nth-child(even)>* {
    direction: ltr;
}

.service-img-col {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-col .img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--dark));
}

.service-split:nth-child(even) .service-img-overlay {
    background: linear-gradient(to left, transparent 60%, var(--dark));
}

.service-content-col {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid rgba(255, 191, 0, 0.2);
}

.service-split:nth-child(even) .service-content-col {
    border-left: none;
    border-right: 3px solid rgba(255, 191, 0, 0.2);
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(255, 191, 0, 0.1);
    line-height: 1;
    margin-bottom: -10px;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

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

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 28px;
}

.btn-outline-gold {
    display: inline-block;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: var(--black);
    padding: 90px 0;
}

.benefits-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-card {
    background: var(--dark2);
    padding: 30px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

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

.benefit-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
    color: var(--gold);
}

.benefit-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ===== SERVICE AREAS ===== */
.areas-section {
    background: var(--dark2);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: 'BEVERLY';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    color: rgba(255, 191, 0, 0.03);
    letter-spacing: 10px;
    pointer-events: none;
}

.areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0;
}

.area-item {
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    cursor: default;
    position: relative;
}

.area-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 191, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s;
}

.area-item:hover::before {
    opacity: 1;
}

.area-item:hover {
    border-color: rgba(255, 191, 0, 0.3);
}

.area-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 191, 0, 0.5);
}

.area-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* ===== ICON CIRCLE SERVICES ===== */
.icon-services-section {
    background: var(--black);
    padding: 90px 0;
}

.icon-services-header {
    text-align: center;
    margin-bottom: 70px;
}

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

.icon-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.icon-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.icon-card:hover::after {
    transform: scaleX(1);
}

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 191, 0, 0.12);
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 191, 0, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--gold);
    transition: all 0.3s;
    position: relative;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 191, 0, 0.2);
}

.icon-card:hover .icon-circle {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.4);
}

.icon-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.icon-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--dark);
    padding: 90px 0;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 150px;
}

.faq-list {
    margin-top: 10px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s;
}

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

.faq-toggle {
    width: 28px;
    height: 28px;
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--gold);
    transition: all 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    padding-bottom: 0;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ===== DETAIL SERVICE ===== */
.detail-section {
    background: var(--dark2);
    padding: 90px 0;
}

.detail-header {
    text-align: center;
    margin-bottom: 70px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 191, 0, 0.1);
}

.detail-card {
    background: var(--dark2);
    padding: 42px 34px;
    position: relative;
    transition: all 0.3s;
}

.detail-card:hover {
    background: var(--dark3);
}

.detail-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: rgba(255, 191, 0, 0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.detail-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.detail-card-title span {
    color: var(--gold);
}

.detail-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
    margin-bottom: 24px;
}

.detail-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

.tag-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--black);
    padding: 90px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 191, 0, 0.15);
}

.contact-info {
    padding: 60px;
    background: var(--dark2);
    border-right: 1px solid rgba(255, 191, 0, 0.15);
}

.contact-info .section-title {
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--gold);
}

.contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
}

.contact-map {
    padding: 0;
    background: var(--dark3);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    filter: grayscale(0.15) contrast(1.05) saturate(0.9);
}

.map-overlay-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 320px;
    padding: 24px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 191, 0, 0.28);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.map-overlay-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    color: var(--white);
    margin: 12px 0 8px;
}

.map-overlay-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== PREMIUM SERVICE ===== */
.premium-service-section {
    background: var(--black);
    padding: 0 0 90px;
}

.premium-service-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 191, 0, 0.18);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.premium-service-image {
    position: relative;
    min-height: 480px;
    background: linear-gradient(135deg, #151515, #242424);
}

.premium-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
}

.premium-service-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: var(--gold);
    color: var(--black);
    padding: 10px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-service-content {
    padding: 56px;
}

.premium-service-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
    margin: 18px 0 28px;
}

.premium-service-list {
    display: grid;
    gap: 14px;
}

.premium-point {
    position: relative;
    padding-left: 28px;
    color: var(--white);
    line-height: 1.6;
}

.premium-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 191, 0, 0.12);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    position: relative;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 191, 0, 0.3);
    animation: pulse-pin 2s ease-in-out infinite;
}

.map-pin-inner {
    width: 24px;
    height: 24px;
    background: var(--black);
    border-radius: 50%;
    transform: rotate(45deg);
}

@keyframes pulse-pin {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 191, 0, 0.3);
    }

    50% {
        box-shadow: 0 10px 50px rgba(255, 191, 0, 0.6), 0 0 0 20px rgba(255, 191, 0, 0.05);
    }
}

.map-address {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.map-address span {
    display: block;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 191, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 191, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark2);
    border-top: 3px solid var(--gold);
    padding: 50px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gold);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px 0 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 12px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    width: 240px;
}

.footer-btn:hover {
    background: var(--white);
}

.footer-btn.outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.footer-btn.outline:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 191, 0, 0.2);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '—';
    color: var(--gold);
    font-size: 10px;
}

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

.footer-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
}

.footer-address strong {
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 30px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeUp 0.8s ease both;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-heading {
    animation-delay: 0.2s;
}

.hero-sub {
    animation-delay: 0.3s;
}

.hero-image-stack {
    animation-delay: 0.4s;
}

.hero-stats {
    animation-delay: 0.5s;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .why-grid,
    .service-split,
    .faq-inner,
    .contact-inner,
    .benefits-inner,
    .premium-service-card {
        grid-template-columns: 1fr;
    }

    .service-split:nth-child(even) {
        direction: ltr;
    }

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

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

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

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

    .hero-image-stack {
        width: 100%;
        height: 280px;
    }

    .stack-left,
    .stack-right {
        display: none;
    }

    .stack-main {
        width: 90%;
    }

    .contact-map-wrap,
    .contact-map-wrap iframe,
    .premium-service-image {
        min-height: 360px;
    }

    .map-overlay-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .premium-service-content {
        padding: 40px 28px;
    }
}