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

:root {
    --bg-dark: #fbfaf8;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfc;
    --primary-gold: #c5a028;
    --primary-gold-rgb: 197, 160, 40;
    --gold-gradient: linear-gradient(135deg, #e7c564 0%, #c5a028 50%, #9a7d23 100%);
    --silver: #eae7e0;
    --silver-dark: #7e7a70;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --whatsapp-green-rgb: 37, 211, 102;
    --text-main: #23221f;
    --text-muted: #6a6862;
    --border-color: rgba(197, 160, 40, 0.15);
    --border-color-hover: rgba(197, 160, 40, 0.35);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 250, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(251, 250, 248, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .header-container {
    height: 70px;
}

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

.logo-wrapper img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

header.scrolled .logo-wrapper img {
    height: 44px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(197, 160, 40, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 40, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(197, 160, 40, 0.05);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0%, rgba(251, 250, 248, 1) 100%);
    padding-top: 120px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-cta .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 28px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.12) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

.hero-logo-large {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(197, 160, 40, 0.15);
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

.hero-car-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    animation: float 6s ease-in-out infinite;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px rgba(197, 160, 40, 0.08);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 24px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Quick Booking Form Card */
.booking-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    color: var(--text-main);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    padding: 14px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(197, 160, 40, 0.1);
}

/* Regional Split */
.region-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(197, 160, 40, 0.2);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.district-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.district-card:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(197, 160, 40, 0.08);
}

.district-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
}

.district-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Testimonials / F.A.Q. Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-gold);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* About Us Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.about-feat-item h4 {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.about-feat-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.info-icon {
    font-size: 28px;
    color: var(--primary-gold);
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.info-text p, .info-text a {
    color: var(--text-muted);
    font-size: 15px;
}

.info-text a:hover {
    color: var(--primary-gold);
}

.map-container {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Soft warm light map effect */
    filter: sepia(20%) contrast(90%) brightness(95%);
}

/* Footer (Sophisticated Dark Contrast) */
footer {
    background: #141311;
    border-top: 1px solid var(--primary-gold);
    padding: 80px 0 30px 0;
    margin-bottom: 70px; /* Space for the floating mobile bar */
    color: #d1cfc9;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    margin-bottom: 16px;
}

.footer-desc {
    color: #a5a29a;
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    color: #ffffff;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

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

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

.footer-links a {
    color: #a5a29a;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-info li {
    color: #a5a29a;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact-info i {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #8a8880;
    font-size: 14px;
}

/* Floating Action Bar (Mobile Only - standard in TR taxi sites) */
.floating-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: none;
    grid-template-columns: 1fr 1fr;
    background: #141311;
    border-top: 2px solid var(--primary-gold);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.floating-call {
    background: var(--gold-gradient);
    color: #ffffff;
}

.floating-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

/* District Page Unique CSS */
.district-hero {
    padding: 150px 0 80px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(251, 250, 248, 1) 100%);
    border-bottom: 1px solid var(--border-color);
}

.district-content-section {
    padding: 60px 0;
}

.district-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
}

.district-text-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.district-text-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.district-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.seo-tag {
    background: rgba(197, 160, 40, 0.05);
    border: 1px solid rgba(197, 160, 40, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-gold);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.95); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .district-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(251, 250, 248, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .floating-action-bar {
        display: grid;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
