:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --gold: #D4AF37;
    --light-gold: #F5EEC8;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-black);
    color: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
header {
    background-color: var(--primary-black);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}
.logo h1 {
    margin: 0 0 0 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.logo span {
    color: var(--gold);
    position: relative;
    display: inline-block;
    animation: shimmer 3s infinite;
}
nav,
nav a,
.logo h1,
.logo span {
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0 30px 0 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 6px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(190, 165, 93, 0.6), 
                #BEA55D, 
                rgba(190, 165, 93, 0.6),
                transparent);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

nav a:hover {
    color: #BEA55D;
    text-shadow: 0 0 10px rgba(190, 165, 93, 0.2);
}

nav a:hover::after {
    width: 100%;
}

/* Active page styling */
nav a[aria-current="page"],
nav a.active {
    color: #BEA55D;
    font-weight: 500;
}

nav a[aria-current="page"]::after,
nav a.active::after {
    width: 100%;
    height: 1px;
    background: #BEA55D;
}

/* Hero and Slideshow Styling */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Improved slideshow animations for smoother transitions */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    background-size: cover;
    background-position: center center;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
}

.slide.fade-out {
    opacity: 0;
}

/* Add a subtle overlay to improve text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0,0,0,0.4) 0%, 
                rgba(0,0,0,0.2) 50%, 
                rgba(0,0,0,0.6) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 200px 20px;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: slideFromRight 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    animation: slideFromRight 1.2s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--gold);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease-out;
    background-image: linear-gradient(to right, var(--gold) 0%, #f9e076 50%, var(--gold) 100%);
    background-size: 200% auto;
    transition: all 0.5s ease;
}

.cta-button:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Styling */
main {
    background-color: var(--secondary-black);
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
}

.gold-link {
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
}

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

.about-preview {
    text-align: center;
    background-color: var(--primary-black);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSection 0.8s ease-out forwards;
}

.about-preview p {
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-size: 18px;
}

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

.service-item {
    background-color: var(--primary-black);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    will-change: transform, opacity;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-item .icon {
    font-size: 40px;
    color: var(--gold);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.service-item:hover .icon {
    transform: scale(1.2);
}

.service-item h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.testimonials {
    background-color: var(--primary-black);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSection 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
}

/* Footer Styling */
footer {
    background-color: var(--primary-black);
    padding: 60px 0 20px;
    color: var(--white);
    background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.social-icons {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    margin-left: 125px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 18px;
    will-change: transform, opacity;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--gold);
    color: var(--primary-black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Enhanced Testimonials Section */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gold);
}

.author-title {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--white);
}

/* Fleet Preview Section */
.fleet-preview {
    padding: 80px 0;
    background-color: var(--secondary-black);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Single vehicle fleet styling */
.fleet-grid.single-vehicle {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.fleet-item {
    background-color: var(--primary-black);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.fleet-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.fleet-item.featured {
    transform: scale(1.05);
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 20px;
}

.fleet-item.featured .fleet-image {
    height: 300px;
}

.fleet-item.featured .fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px 25px;
}

.fleet-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.fleet-item:hover .fleet-image img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.fleet-cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.fleet-cta:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

.fleet-item h3 {
    padding: 15px 15px 5px;
    margin: 0;
    color: var(--gold);
    font-size: 20px;
}

.fleet-specs {
    list-style: none;
    padding: 0 15px 15px;
    margin: 0;
}

.fleet-specs li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--white);
}

.fleet-specs i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.fleet-description {
    padding: 0 25px 15px;
    text-align: center;
}

.fleet-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

/* Adjust CTA button position for single vehicle display */
.fleet-preview .cta-button.secondary {
    display: inline-block;
    margin-top: 30px;
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fleet-preview .cta-button.secondary:hover {
    background-color: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Service Area Map Section */
.service-area {
    background-color: var(--primary-black);
    padding: 80px 0;
}

.map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.map {
    flex: 1 1 400px;
    min-height: 300px;
    background-color: var(--secondary-black);
    border-radius: 6px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                      url('../assets/images/dc-map.jpg');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--gold);
}

.map-placeholder span {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.dc-subtext {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-regions {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.region {
    margin-bottom: 25px;
}

.region h3 {
    color: var(--gold);
    margin: 0 0 10px;
    font-size: 18px;
}

.region h3 i {
    color: var(--gold);
    font-size: 18px;
}

.region i {
    margin-right: 8px;
}

.region p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Enhanced Testimonials Section */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gold);
}

.author-title {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--gold);
}

/* Trust Indicators Section */
.trust-indicators {
    background-color: var(--secondary-black);
    padding: 70px 0;
    text-align: center;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.trust-logo span {
    font-size: 14px;
    font-weight: 600;
}

.certifications {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.certification {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--primary-black);
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.certification i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--primary-black);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    will-change: transform, opacity;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.faq-toggle {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: rgba(212, 175, 55, 0.1);
}

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

/* Secondary CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-black), var(--secondary-black), var(--primary-black));
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.9;
}

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

.cta-button.primary {
    background-color: var(--gold);
    color: var(--primary-black);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.secondary:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header styles - match services.css exactly */
    header {
        flex-direction: column;
        padding: 15px 0 !important; /* Override any other padding */
        align-items: center;
        justify-content: center;
        width: 100% !important; /* Force full width */
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Logo styles - match services.css exactly */
    .logo {
        margin: 0 !important;
        margin-bottom: 10px !important;
        width: auto !important; /* Prevent stretching */
        justify-content: center !important;
    }
    
    .logo h1 {
        margin: 0 !important; /* Remove all margins */
    }
    
    /* Toggle button - match services.css exactly */
    .mobile-menu-toggle {
        display: block !important;
        margin: 10px 0 0 !important;
        position: relative !important;
        color: var(--white) !important; /* Force white color */
    }
    
    /* Navigation container - match services.css exactly */
    nav ul {
        position: absolute !important; /* Override any fixed positioning */
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: var(--primary-black) !important;
        flex-direction: column !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important; /* Match services.css timing */
        margin: 0 auto !important;
        width: 100% !important;
        text-align: center !important;
        z-index: 50 !important; /* Ensure consistent stacking */
    }
    
    /* Open state - match services.css exactly */
    nav ul.open {
        max-height: 300px !important; /* Exactly 300px like services.css */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Menu items - match services.css exactly */
    nav li {
        margin: 0 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Menu links - match services.css exactly */
    nav a {
        display: block !important; /* Block not flex */
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
    }
    
    /* Fix hero section height and padding for mobile */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        overflow: visible !important;
    }
    
    .hero-content {
        padding: 120px 20px 80px !important;
        height: auto !important;
    }
    
    /* Ensure button is fully visible */
    .cta-button {
        margin-bottom: 40px !important;
        position: relative !important;
        z-index: 5 !important;
    }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
    .hero-content {
        padding: 100px 20px 60px !important;
    }
    
    .hero-content h2 {
        font-size: 36px !important;
    }
}

/* Remove or comment out this section completely */
/* @supports (padding: max(0px)) {
    @media (max-width: 768px) {
        header {
            padding-left: max(15px, env(safe-area-inset-left)) !important;
            padding-right: max(15px, env(safe-area-inset-right)) !important;
        }
    }
} */

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animations for grid items */
.fleet-grid .fleet-item:nth-child(2),
.service-grid .service-item:nth-child(2),
.trust-logos .trust-logo:nth-child(2) {
    transition-delay: 0.2s;
}

.fleet-grid .fleet-item:nth-child(3),
.service-grid .service-item:nth-child(3),
.trust-logos .trust-logo:nth-child(3) {
    transition-delay: 0.4s;
}

.trust-logos .trust-logo:nth-child(4) {
    transition-delay: 0.6s;
}

/* Add entrance animations to content sections */
.about-preview, .services-preview, .testimonials {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSection 0.8s ease-out forwards;
}

.services-preview {
    animation-delay: 0.2s;
}

.testimonials {
    animation-delay: 0.4s;
}

/* Google Maps iframe styling */
.google-map-embed {
    width: 100%;
    height: 400px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
}

/* Option 1: Why Choose Us styling */
.value-proposition {
    background-color: var(--secondary-black);
    padding: 70px 0;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.value-item {
    padding: 30px 20px;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.value-item i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.value-item h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

/* Option 2: Our Standards styling */
.standards-section {
    background-color: var(--secondary-black);
    padding: 70px 0;
}

.standards-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.standards-text {
    flex: 1 1 350px;
}

.standards-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.standards-badges {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-black);
    border-left: 4px solid var(--gold);
    border-radius: 0 4px 4px 0;
}

.badge i {
    font-size: 24px;
    color: var(--gold);
    margin-right: 20px;
}

.badge h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.badge p {
    font-size: 14px;
    opacity: 0.8;
}