/* ==========================================================================
   MURAT OTO SERVİS SİVAS - PREMIUM DARK & GOLD CSS SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-dark: #0A0A0A;
    --color-bg-card: #141414;
    --color-bg-card-hover: #1E1E1E;
    --color-bg-elevated: #181818;
    
    --color-gold-primary: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #A67C00;
    --color-gold-glow: rgba(212, 175, 55, 0.25);
    --color-gold-border: rgba(212, 175, 55, 0.35);

    --color-text-main: #FFFFFF;
    --color-text-muted: #B0B0B0;
    --color-text-subtle: #777777;

    --color-danger: #E63946;
    --color-success: #2A9D8F;

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.2);
    --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.8);

    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-main);
}

p {
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

/* Section Header Styles */
.section-subtitle {
    display: inline-block;
    color: var(--color-gold-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.section-description {
    max-width: 680px;
    margin: 15px auto 0;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.gold-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-dark));
    border-radius: 2px;
}

.gold-divider.center {
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #A67C00 100%);
    color: #0A0A0A;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFF099 0%, #E5C158 50%, #C49500 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: #000;
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
}

.btn-outline-gold:hover {
    background: var(--color-gold-primary);
    color: #0A0A0A;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFF;
}

.btn-outline-light:hover {
    border-color: #FFF;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-xl {
    padding: 20px 42px;
    font-size: 1.15rem;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.96);
    box-shadow: var(--shadow-header);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold-primary);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-primary);
    transition: width var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color-gold-border);
    color: var(--color-gold-primary);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.active {
    display: block;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    background-color: #000;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.65) contrast(1.05);
    transform: scale(1.02);
    animation: zoomBg 20s infinite alternate ease-in-out;
}

@keyframes zoomBg {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.75) 60%, rgba(10, 10, 10, 0.98) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--color-gold-border);
    color: var(--color-gold-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 60%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #D0D0D0;
    margin-bottom: 35px;
    max-width: 680px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.strip-item i {
    color: var(--color-gold-primary);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   6. SERVICES SECTION & CARDS
   -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--color-bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-border);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    background: var(--color-bg-card-hover);
}

.card-image-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.card-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;

}

.service-list {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.88rem;
    color: #D0D0D0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-list li i {
    color: var(--color-gold-primary);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #111111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-gold-border);
    box-shadow: var(--shadow-gold);
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--color-gold-primary);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-gold-primary);
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFF;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-top: 15px;
    margin-bottom: 15px;
}

.about-paragraph {
    font-size: 0.98rem;
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.item-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.item-content p {
    font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-us-section {
    background-color: var(--color-bg-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.why-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-primary);
    box-shadow: var(--shadow-gold);
    background: var(--color-bg-card-hover);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(166, 124, 0, 0.1));
    border: 1px solid var(--color-gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.6rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. CATEGORIES & DETAILED TAB SYSTEM
   -------------------------------------------------------------------------- */
.categories-section {
    background-color: #0E0E0E;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cat-tab {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-tab:hover {
    color: #FFF;
    border-color: var(--color-gold-primary);
}

.cat-tab.active {
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    color: #0A0A0A;
    border-color: var(--color-gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tab-content-container {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gold-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.panel-info h3 {
    font-size: 1.6rem;
    color: var(--color-gold-primary);
    margin-bottom: 12px;
}

.panel-info p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.check-grid li {
    font-size: 0.95rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.check-grid li i {
    color: var(--color-gold-primary);
    font-size: 1.1rem;
}

.panel-cta {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   10. 7/24 EMERGENCY ROADSIDE BANNER
   -------------------------------------------------------------------------- */
.roadside-section {
    position: relative;
    padding: 90px 0;
    background-image: url('images/roadside_bg.jpg');
    background-size: cover;
    background-position: center;
    border-top: 2px solid var(--color-gold-primary);
    border-bottom: 2px solid var(--color-gold-primary);
    overflow: hidden;
}

.roadside-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(15, 10, 5, 0.88) 50%, rgba(10, 10, 10, 0.95) 100%);
}

.roadside-container {
    position: relative;
    z-index: 2;
}

.roadside-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.roadside-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-danger);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.roadside-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 15px;
}

.roadside-text {
    font-size: 1.15rem;
    color: #E0E0E0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.roadside-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* --------------------------------------------------------------------------
   11. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-bg-dark);
}

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

.contact-info-card,
.contact-map-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.contact-card-title {
    font-size: 1.35rem;
    color: var(--color-gold-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--color-gold-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-body strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-main);
    margin-bottom: 3px;
}

.info-body p {
    font-size: 0.95rem;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold-primary);
}

.contact-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.map-embed-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-gold-border);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 70px;
    color: var(--color-text-muted);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-phone-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-gold-border);
    padding: 12px 18px;
    border-radius: 8px;
}

.footer-phone-highlight i {
    font-size: 1.5rem;
    color: var(--color-gold-primary);
}

.footer-phone-highlight small {
    display: block;
    font-size: 0.75rem;
    color: #999;
}

.footer-phone-highlight a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #FFF;
}

.footer-heading {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-gold-primary);
}

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

.footer-links a {
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--color-gold-primary);
}

.footer-links a:hover {
    color: var(--color-gold-primary);
    transform: translateX(4px);
}

.footer-address,
.footer-phone {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.gold-icon {
    color: var(--color-gold-primary);
    margin-right: 8px;
}

.seo-keywords-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
}

.seo-keywords-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 4px;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #666;
}

/* --------------------------------------------------------------------------
   13. STICKY MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0A0A0A;
    border-top: 1px solid var(--color-gold-border);
    z-index: 990;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-call {
    background: linear-gradient(135deg, #E5C158, #A67C00);
    color: #000;
}

.btn-route {
    background: #181818;
    color: var(--color-gold-primary);
}

/* --------------------------------------------------------------------------
   14. MODAL DIALOG STYLES
   -------------------------------------------------------------------------- */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-window {
    background: #141414;
    border: 1px solid var(--color-gold-border);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--shadow-gold);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-badge {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.3rem;
}

.modal-header h3 {
    font-size: 1.35rem;
    color: #FFF;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.85rem;
}

.quick-call-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.quick-call-label {
    font-size: 0.82rem;
    color: #AAA;
    margin-bottom: 8px;
}

.modal-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.modal-divider span {
    position: relative;
    background: #141414;
    padding: 0 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #777;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #DDD;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 15px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .about-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-img {
        height: 380px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }

    .btn-header {
        display: none;
    }

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0C0C0C;
        border-left: 1px solid var(--color-gold-border);
        padding: 90px 30px 30px;
        transition: right var(--transition-normal);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    .hero-section {
        padding-top: 110px;
        padding-bottom: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features-strip {
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .roadside-title {
        font-size: 1.8rem;
    }

    .roadside-text {
        font-size: 0.95rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn-lg, .btn-xl {
        width: 100%;
    }

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

    .tab-content-container {
        padding: 25px 18px;
    }

    .cat-tab {
        width: 100%;
        justify-content: center;
    }
}
