: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; /* Adjust height as needed */
    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; /* Thinner line for elegance */
    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; /* More subtle gold shade */
    text-shadow: 0 0 10px rgba(190, 165, 93, 0.2); /* Softer glow */
}

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

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

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

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

/* Services Page Specific Styling */

/* Services Hero Section */
.services-hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('../assets/images/services-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-out;
}

.services-hero .hero-tagline {
    font-size: 1.4rem;
    color: var(--gold);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: var(--secondary-black);
}

.service-item {
    display: flex;
    margin-bottom: 100px;
    background-color: var(--primary-black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

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

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.1rem;
}

.service-cta {
    align-self: flex-start;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #BEA55D 100%);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-cta:hover::after {
    left: 100%;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.fleet-showcase {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.fleet-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1 1 400px;
    min-height: 300px;
    transition: transform 0.8s ease;
}

.fleet-showcase:hover img {
    transform: scale(1.03);
}

.fleet-details {
    flex: 1 1 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fleet-details h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.fleet-features li {
    display: flex;
    align-items: center;
}

.fleet-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.fleet-cta {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--gold) 0%, #BEA55D 100%);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fleet-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.3);
}

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

.area-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.area-map {
    flex: 1 1 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.area-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.area-list {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.area-column {
    flex: 1 1 100px;
    min-width: 120px;
}

.area-column h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

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

.area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-column li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('../assets/images/cta-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

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

.services-cta p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

.cta-button {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gold) 0%, #BEA55D 100%);
    color: var(--primary-black);
}

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

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

.cta-button.primary:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Footer Styling - Copied from home.css */
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;
}

.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;
}

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

@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

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

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

/* Responsive Styling */
@media (max-width: 992px) {
    .service-item {
        flex-direction: column;
    }
    
    .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image {
        min-height: 250px;
    }
    
    .fleet-showcase {
        flex-direction: column;
    }
    
    .fleet-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* Center aligned header for mobile */
    header {
        flex-direction: column;
        padding: 15px 0;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove right margin from logo */
    .logo {
        margin: 0;
        margin-bottom: 10px;
    }
    
    .logo h1 {
        margin: 0; /* Remove left margin */
    }
    
    /* Center the mobile toggle button */
    .mobile-menu-toggle {
        display: block;
        margin: 10px 0 0;
        position: relative;
    }
    
    /* Center text in menu items */
    nav li {
        margin: 0;
        text-align: center;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-black);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
    
    nav ul.open {
        max-height: 300px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    
    nav li {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .service-features li {
        padding: 6px 0;
    }
    
    .fleet-details h3 {
        font-size: 1.8rem;
    }
    
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .services-hero .hero-tagline {
        font-size: 1.1rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
}