@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cinzel:wght@600;700;800&display=swap');

:root {
    --primary-black: #0b0c10;
    --secondary-black: #1f2833;
    --accent-red: #d91414;
    --accent-red-hover: #ff1e1e;
    --luxury-gold: #d4af37;
    --luxury-gold-hover: #f3cf55;
    --luxury-silver: #c5c6c7;
    --bg-light: #f8f9fa;
    --bg-dark-gradient: linear-gradient(135deg, #0b0c10 0%, #1f2833 100%);
    --card-bg: #14181d;
    --text-main: #e0e2e5;
    --text-muted: #8a9ba8;
    --header-height: 85px;
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --primary-black: #ffffff;
    --secondary-black: #f1f3f6;
    --card-bg: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;
    --bg-dark-gradient: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-main);
    overflow-x: hidden;
    transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wheel {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--luxury-gold);
    border-bottom-color: var(--accent-red);
    border-radius: 50%;
    animation: spinWheel 1s linear infinite;
}
@keyframes spinWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Coupon & Announcement Banner */
.coupon-banner {
    background: linear-gradient(90deg, #d91414, #900d0d);
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1040;
}
.coupon-banner .badge-gold {
    background: var(--luxury-gold);
    color: #000;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

/* Sticky Header & Mega Menu */
.top-bar {
    background-color: rgba(11, 12, 16, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 13px;
    padding: 8px 0;
}
.navbar-luxury {
    background: rgba(11, 12, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}
.navbar-luxury.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.brand-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, var(--luxury-gold), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.5px;
}
.brand-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--luxury-silver);
    display: block;
    margin-top: -5px;
    text-transform: uppercase;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px !important;
    transition: var(--transition-fast);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--luxury-gold) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 32px);
}

/* Mega Menu */
.mega-menu-dropdown:hover .mega-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #0f1318;
    border-top: 2px solid var(--accent-red);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    padding: 30px 0;
    z-index: 1050;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    max-height: 80vh;
    overflow-y: auto;
}
.mega-title {
    color: var(--luxury-gold);
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.mega-link {
    color: var(--text-main);
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}
.mega-link i {
    color: var(--accent-red);
    width: 20px;
    margin-right: 8px;
    transition: var(--transition-fast);
}
.mega-link:hover {
    background: rgba(217, 20, 20, 0.1);
    color: var(--luxury-gold);
    transform: translateX(5px);
}
.mega-link:hover i {
    color: var(--luxury-gold);
}

/* Live Search Bar inside Header */
.live-search-wrapper {
    position: relative;
    min-width: 260px;
}
.live-search-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #fff;
    padding: 8px 20px 8px 40px;
    font-size: 14px;
    width: 100%;
    transition: var(--transition-fast);
}
.live-search-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--luxury-gold);
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.live-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--luxury-gold);
}
.live-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #14181d;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    max-height: 350px;
    overflow-y: auto;
    z-index: 1060;
    display: none;
}
.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-fast);
}
.search-result-item:hover {
    background: rgba(217, 20, 20, 0.15);
    color: var(--luxury-gold);
}

/* Premium Buttons */
.btn-luxury-red {
    background: linear-gradient(135deg, var(--accent-red) 0%, #900d0d 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(217, 20, 20, 0.4);
    transition: var(--transition-fast);
}
.btn-luxury-red:hover {
    background: linear-gradient(135deg, #ff1e1e 0%, var(--accent-red) 100%);
    color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 20, 20, 0.6);
}

.btn-luxury-gold {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #9e7f1e 100%);
    color: #000;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition-fast);
}
.btn-luxury-gold:hover {
    background: linear-gradient(135deg, #f3cf55 0%, var(--luxury-gold) 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-luxury-outline:hover {
    background: var(--luxury-gold);
    color: #000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Hero Carousel */
.hero-slider-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-color: #050505;
}
.hero-slide-item {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slide-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(90deg, rgba(11,12,16,0.95) 0%, rgba(11,12,16,0.7) 50%, rgba(11,12,16,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.hero-tagline {
    color: var(--luxury-gold);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.hero-tagline::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent-red);
    margin-right: 15px;
}
.hero-title {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.hero-title span {
    color: var(--accent-red);
}
.hero-desc {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Custom Swiper Controls */
.swiper-button-next, .swiper-button-prev {
    color: var(--luxury-gold) !important;
    background: rgba(11, 12, 16, 0.7);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid var(--luxury-gold);
    transition: var(--transition-fast);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent-red);
    color: #fff !important;
    border-color: var(--accent-red);
    transform: scale(1.1);
}
.swiper-pagination-bullet {
    background: var(--luxury-silver) !important;
    opacity: 0.6 !important;
    width: 12px !important;
    height: 12px !important;
    transition: var(--transition-fast);
}
.swiper-pagination-bullet-active {
    background: var(--luxury-gold) !important;
    width: 30px !important;
    border-radius: 6px !important;
    opacity: 1 !important;
}

/* Quick Floating Bar / Stats bar */
.quick-inquiry-bar {
    background: var(--card-bg);
    border-top: 2px solid var(--luxury-gold);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-radius: 12px;
}
.stat-box {
    text-align: center;
    padding: 10px;
}
.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--luxury-gold);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Section Title Luxury */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-subtitle {
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}
.section-main-title {
    font-size: 42px;
    color: var(--text-main);
    margin-bottom: 15px;
}
.section-main-title span {
    color: var(--luxury-gold);
}
.title-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-red);
    margin: 0 auto;
    position: relative;
}
.title-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--luxury-gold);
    font-size: 18px;
    background: var(--primary-black);
    padding: 0 10px;
}

/* Services Grid & Card */
.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 35px rgba(217, 20, 20, 0.2);
}
.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img {
    transform: scale(1.1);
}
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}
.service-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}
.service-card:hover .service-title {
    color: var(--luxury-gold);
}
.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 15px;
}
.btn-learn-more {
    color: var(--luxury-gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}
.btn-learn-more i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.btn-learn-more:hover {
    color: var(--accent-red);
}
.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* Before After Comparison Gallery */
.before-after-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    height: 500px;
}
.ba-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.ba-img-before {
    z-index: 1;
}
.ba-overlay {
    position: absolute;
    top: 0; left: 0; width: 50%; height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 3px solid var(--accent-red);
}
.ba-overlay img {
    width: 900px;
    height: 500px;
    max-width: none;
    object-fit: cover;
}
.ba-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    z-index: 3;
}
.ba-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--luxury-gold);
    cursor: ew-resize;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>');
    background-position: center;
    background-repeat: no-repeat;
}

/* Customer Testimonials & Reviews Section */
.review-card {
    background: #192027;
    border-left: 4px solid var(--accent-red);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    margin: 15px 0;
}
.reviewer-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.reviewer-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--luxury-gold);
}
.reviewer-info h5 {
    font-size: 18px; margin: 0; color: #fff;
}
.reviewer-info span {
    font-size: 12px; color: var(--text-muted);
}
.star-rating {
    color: var(--luxury-gold);
    font-size: 14px;
    margin: 5px 0;
}
.review-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
}

/* Brands We Deal In */
.brand-carousel-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition-fast);
}
.brand-carousel-item:hover {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}
.brand-carousel-item img {
    max-height: 60px;
    max-width: 140px;
    margin: 0 auto;
    filter: grayscale(100%) brightness(200%);
    transition: var(--transition-fast);
}
.brand-carousel-item:hover img {
    filter: none;
}

/* Why Choose Us Section */
.wcu-box {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
    margin-bottom: 25px;
}
.wcu-box:hover {
    background: rgba(255,255,255,0.05);
    border-bottom-color: var(--accent-red);
    transform: translateY(-5px);
}
.wcu-icon {
    width: 70px;
    height: 70px;
    background: rgba(217, 20, 20, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 12px;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(217, 20, 20, 0.3);
    transition: var(--transition-fast);
}
.wcu-box:hover .wcu-icon {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(217, 20, 20, 0.6);
}
.wcu-content h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.wcu-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Google Reviews & Locations Banner */
.google-reviews-banner {
    background: linear-gradient(135deg, #182b45 0%, #0d1624 100%);
    border: 1px solid rgba(66, 133, 244, 0.4);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Sticky & Floating CTAs */
.floating-social-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    transition: var(--transition-fast);
    position: relative;
}
.sticky-btn-whatsapp {
    background: #25d366;
}
.sticky-btn-whatsapp:hover {
    background: #1ebe5a;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}
.sticky-btn-call {
    background: #007bff;
}
.sticky-btn-call:hover {
    background: #0062cc;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.6);
}
.sticky-btn-quote {
    background: var(--accent-red);
}
.sticky-btn-quote:hover {
    background: var(--luxury-gold);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(217, 20, 20, 0.6);
}

.tooltip-custom {
    position: absolute;
    right: 75px;
    background: rgba(0,0,0,0.9);
    color: var(--luxury-gold);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-fast);
    border: 1px solid var(--luxury-gold);
}
.sticky-btn:hover .tooltip-custom {
    opacity: 1;
    transform: translateX(0);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: var(--luxury-gold);
    border: 1px solid var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--luxury-gold);
    color: #000;
    transform: translateY(-5px);
}

/* Interactive Modals / Simulated Pages view */
.master-view-container {
    min-height: 80vh;
    padding-top: var(--header-height);
}

/* Service Detail SEO Page */
.seo-service-header {
    background: linear-gradient(135deg, rgba(11,12,16,0.95), rgba(31,40,51,0.95)), url('../../public_html/img/banner1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-bottom: 2px solid var(--luxury-gold);
}
.rich-seo-content h2 {
    color: var(--luxury-gold);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.rich-seo-content h3 {
    color: var(--accent-red);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 22px;
}
.rich-seo-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-main);
}
.rich-seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.rich-seo-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
}
.rich-seo-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-red);
    font-weight: bold;
}

/* City Detail SEO Page */
.location-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.location-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}
.location-badge i {
    color: var(--accent-red);
    transition: var(--transition-fast);
}
.location-badge:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
    transform: translateY(-3px);
}
.location-badge:hover i {
    color: var(--luxury-gold);
}

/* Popup Modals */
.modal-content-luxury {
    background: #12161b;
    border: 2px solid var(--luxury-gold);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}
.modal-header-luxury {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: #0b0c10;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding: 20px 30px;
}
.modal-footer-luxury {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: #0b0c10;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding: 15px 30px;
}

/* Contact Form Styling */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}
.form-label {
    font-weight: 600;
    color: var(--luxury-silver);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control, .form-select {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition-fast);
}
.form-control:focus, .form-select:focus {
    background-color: rgba(255,255,255,0.09);
    border-color: var(--luxury-gold);
    color: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.form-select option {
    background-color: #14181d;
    color: #fff;
}

/* Footer Styling */
.footer-luxury {
    background-color: #07080a;
    border-top: 2px solid var(--accent-red);
    padding: 80px 0 30px 0;
    color: var(--text-muted);
    font-size: 15px;
}
.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--luxury-gold);
}
.footer-links {
    list-style: none; padding: 0; margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.footer-links a i {
    margin-right: 8px;
    color: var(--accent-red);
}
.footer-links a:hover {
    color: var(--luxury-gold);
    transform: translateX(6px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
}

/* Custom Responsive */
@media (max-width: 991px) {
    .navbar-luxury .navbar-collapse {
        background: #0b0c10;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 10px;
    }
    .hero-title { font-size: 38px; }
    .section-main-title { font-size: 32px; }
    .before-after-container { height: 350px; }
    .ba-overlay img { width: 100%; height: 350px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 15px; }
    .btn-luxury-red, .btn-luxury-gold { padding: 10px 20px; font-size: 13px; }
    .stat-num { font-size: 26px; }
    .contact-form-card { padding: 25px; }
}
