/* ===================================
   T&W Auto Detailing - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #c9a962;
    --primary-dark: #b8963f;
    --primary-light: #e0c888;
    --secondary: #1a1a2e;
    --dark: #0f0f1a;
    --dark-gray: #16213e;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --text: #333333;
    --text-light: #6c757d;
    --text-muted: #9ca3af;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(15, 15, 26, 0.5) 100%);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 5px 30px rgba(201, 169, 98, 0.3);
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
}

.bg-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.bg-light {
    background-color: var(--light);
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

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

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-header.light .section-subtitle {
    color: var(--text-muted);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-block {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 80px;
    width: auto;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.btn-nav {
    background: var(--gradient-primary);
    padding: 12px 25px !important;
    border-radius: var(--radius-sm);
    color: var(--dark) !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?w=1920') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.title-accent {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920') center/cover no-repeat;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ===================================
   Why Choose Us Section
   =================================== */

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--dark);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Services Preview Section
   =================================== */

.services-preview {
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.service-price {
    background: var(--gradient-primary);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920') center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   About Page Styles
   =================================== */

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.about-content .section-tag {
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text .section-tag {
    margin-bottom: 10px;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.philosophy-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-text blockquote {
    margin-top: 30px;
    padding: 25px 30px;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.philosophy-text blockquote p {
    font-style: italic;
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 0;
}

.philosophy-images {
    position: relative;
}

.philosophy-images .img-1 {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.philosophy-images .img-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-md);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Services Page Styles
   =================================== */

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
}

.service-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Vehicle Types */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.vehicle-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.vehicle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-icon {
    background: var(--gradient-primary);
    color: var(--dark);
}

.vehicle-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.vehicle-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   Prices Page Styles
   =================================== */

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

.price-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.price-card:hover .price-image img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
}

.price-content {
    padding: 25px;
}

.price-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price span {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.price-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Additional Services Table */
.services-price-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.price-table-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.price-table-item:last-child {
    border-bottom: none;
}

.price-table-item:hover {
    background: var(--light);
}

.price-table-service {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-table-service i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
}

.price-table-service h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-table-service p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-table-price {
    font-size: 1rem;
    color: var(--text-light);
}

.price-table-price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Pricing Note */
.note-card {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary);
}

.note-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.note-content h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.note-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.note-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--dark);
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: var(--text-muted);
}

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

.social-section h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.social-links.large a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Mobile Service Card */
.mobile-service-card {
    margin-top: 30px;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-md);
    text-align: center;
}

.mobile-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.5rem;
}

.mobile-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.mobile-service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(to bottom, var(--light) 0%, transparent 100%);
    padding: 60px;
    text-align: center;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-content p {
    color: var(--text-light);
}

.map-placeholder iframe {
    display: block;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--gradient-dark);
    padding: 80px 0 30px;
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

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

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.footer-col .contact-info li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-col .contact-info li a {
    color: var(--text-muted);
}

.footer-col .contact-info li a:hover {
    color: var(--primary);
    padding-left: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero-title { font-size: 3rem; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title { font-size: 2.5rem; }
    
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--gradient-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 25px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .btn-nav {
        margin-top: 20px;
    }
    
    /* Layout adjustments */
    .features-grid,
    .services-grid,
    .pricing-grid,
    .values-grid { 
        grid-template-columns: 1fr; 
    }
    
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-grid,
    .service-detail,
    .philosophy-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .philosophy-images .img-2 {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -80px;
        margin-left: 20px;
    }
    
    .form-row { grid-template-columns: 1fr; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .footer-logo { justify-content: center; }
    
    .social-links { justify-content: center; }
    
    .price-table-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
    }
    
    .note-content ul li {
        padding-left: 0;
        text-align: left;
    }
    
    .note-content ul li::before {
        position: relative;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; max-width: 300px; }
    
    .vehicle-grid { grid-template-columns: 1fr; }
    
    .contact-form { padding: 25px; }
    
    .contact-info-card { padding: 25px; }
}

/* ===== Package Cards ===== */
.packages-section {
    background: var(--dark);
}

.package-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.package-title h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-price {
    text-align: right;
}

.package-price .price-from {
    display: block;
    color: var(--gray);
    font-size: 0.875rem;
}

.package-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.package-body {
    margin-bottom: 1.5rem;
}

.package-description h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.package-description p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
}

.detail-item i {
    color: var(--primary);
    font-size: 1rem;
}

.package-card .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .package-header {
        flex-direction: column;
    }
    
    .package-price {
        text-align: left;
    }
    
    .package-price .price-amount {
        font-size: 2rem;
    }
}

/* ===== Improved Package Cards Mobile & Readability ===== */
.packages-section {
    padding: 3rem 1rem;
}

.package-card {
    background: rgba(20, 20, 30, 0.95) !important;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.package-title h3 {
    color: var(--white) !important;
    font-weight: 700;
    line-height: 1.3;
}

.package-description p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
    line-height: 1.8;
}

.package-badge.popular {
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
}

.detail-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
}

.detail-item strong {
    color: var(--white);
}

/* Mobile improvements */
@media (max-width: 768px) {
    .package-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .package-title h3 {
        font-size: 1.3rem;
    }
    
    .package-price {
        text-align: left !important;
        width: 100%;
    }
    
    .package-price .price-amount {
        font-size: 2rem;
    }
    
    .package-description p {
        font-size: 0.95rem;
    }
    
    .package-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 2rem 0.75rem;
    }
    
    .package-card {
        padding: 1.25rem;
    }
    
    .package-title h3 {
        font-size: 1.2rem;
    }
}

/* ===== High Contrast Text Override ===== */
.section-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700 !important;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.section-tag {
    color: var(--primary) !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.package-description h4 {
    color: var(--primary) !important;
    font-weight: 700;
}

.price-from {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== Fixed Section Title Contrast ===== */
.section-title {
    color: #1a1a2e !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.bg-light .section-title,
.features-section .section-title,
.pricing-section .section-title {
    color: #1a1a2e !important;
}

.bg-light .section-subtitle,
.features-section .section-subtitle {
    color: #333 !important;
    text-shadow: none !important;
}

/* Dark background sections keep white text */
.packages-section .section-title,
.cta-section .section-title,
.page-header h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.packages-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Feature cards text */
.feature-card h3,
.feature-card p {
    color: #1a1a2e !important;
}

.feature-card p {
    color: #555 !important;
}

/* ===== Better Mobile Optimization ===== */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    .logo span {
        font-size: 1rem !important;
    }
    
    /* Hero section */
    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-tag {
        font-size: 0.75rem !important;
    }
    
    /* Feature cards */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Service cards */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Pricing cards */
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .price-card {
        margin-bottom: 1rem;
    }
}

/* ===== Contact Page - No Form Layout ===== */
.contact-center {
    display: flex;
    justify-content: center;
}

.contact-info-wrapper.full-width {
    max-width: 800px;
    width: 100%;
}

.contact-info-card.large {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info-card.large h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-card.large > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details.centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item.large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.contact-item.large .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #c9a227);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item.large .contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-item.large h4 {
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link-large {
    color: var(--primary) !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-link-large:hover {
    text-decoration: underline;
}

.contact-item.large p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.cta-buttons-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.social-section h4 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.social-links.large a {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .contact-info-card.large {
        padding: 2rem 1.5rem;
    }
    
    .contact-details.centered {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons-contact {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* ===== Visual Improvements ===== */

/* Better hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(26, 26, 46, 0.3) 100%);
    z-index: 1;
}

/* Animated gold gradient on buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #e5c453 50%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    border: none;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card hover effects */
.feature-card,
.service-card,
.price-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    transform: scale(1.03);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Better section spacing */
.section {
    padding: 5rem 0;
}

/* Gold accent lines */
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 1.5rem auto 0;
}

/* Feature card icon background */
.feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* Better footer gradient */
.footer {
    background: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 100%);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Better link underlines */
a {
    transition: all 0.3s ease;
}

/* Page header improvements */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact page improvements */
.contact-info-card.large {
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item.large:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Mobile service card */
.mobile-service-card {
    background: linear-gradient(135deg, var(--primary) 0%, #c9a227 100%);
    color: #1a1a2e;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.mobile-service-card .mobile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mobile-service-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.mobile-service-card p {
    color: rgba(26, 26, 46, 0.8);
    margin: 0;
}

/* Map overlay styling */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

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

.map-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.map-section {
    position: relative;
}

/* Improved navbar transparency */
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
}

/* Gallery images hover */
.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Loading animation for images */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Better CTA section */
.cta-section {
    background-attachment: fixed;
    background-size: cover;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .map-overlay {
        position: relative;
        background: #1a1a2e;
        padding: 1.5rem;
    }
}

/* Make Why Choose section dark/black */
.why-us {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

.why-us .section-tag {
    color: var(--primary) !important;
}

.why-us .section-title {
    color: var(--white) !important;
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.why-us .feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.why-us .feature-card h3 {
    color: var(--white) !important;
}

.why-us .feature-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Move hero content up - reduce top padding */
.hero {
    padding-top: 80px !important;
    min-height: 90vh !important;
}

.hero-content {
    padding-top: 60px !important;
    margin-top: -40px !important;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px !important;
        min-height: 85vh !important;
    }
    
    .hero-content {
        padding-top: 40px !important;
        margin-top: -20px !important;
    }
}
