/* Reset and Base Styles */
:root {
    --primary-color: #f1c40f; /* Gold/Yellow */
    --primary-hover: #d4ac0d;
    --bg-dark: #f8f9fa; /* Now light gray */
    --bg-card: #ffffff;
    --text-main: #222222;
    --text-muted: #555555;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(241, 196, 15, 0.2);
}

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

.logo a {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-call {
    background: var(--primary-color);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800 !important;
}

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

/* Hero Slider */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    margin-top: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.swiper-slide-active .hero-content h1 {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.swiper-slide-active .hero-content p {
    transform: translateY(0);
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.swiper-slide-active .hero-buttons {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Pages Hero (Inner Pages) */
.page-hero {
    padding: 150px 0 80px;
    background: #111;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}
.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    border: 2px solid #ddd;
    transition: var(--transition);
}
.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: var(--primary-color);
    font-size: 2rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.6);
}

.btn-secondary {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.bg-dark {
    background: #f1f2f6;
}

.bg-black {
    background: #000000;
    color: #ffffff;
}

.bg-black p {
    color: #cccccc !important;
}

/* Map Section */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241, 196, 15, 0.2);
}

#serviceMap {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Leaflet tweaks */
.leaflet-container {
    background: #e5e5e5 !important;
}

.map-overlay-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    z-index: 2;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-overlay-box h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.pulsing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(241, 196, 15, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(241, 196, 15, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0);
    }
}

.pulse-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(241, 196, 15, 0.4);
    animation: pulse 1.5s infinite;
}

.truck-anim-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Content Section (SEO Text + Images) */
.flex-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.flex-content .text {
    flex: 1;
}

.flex-content .text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.flex-content .text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

.flex-content .image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.seo-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.seo-img:hover {
    transform: scale(1.05);
}

/* Locations */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.location-tag {
    background: var(--bg-card);
    color: var(--text-main);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.location-tag i {
    color: var(--primary-color);
    margin-right: 5px;
}

.location-tag:hover {
    background: var(--primary-color);
    color: #000;
}

.location-tag:hover i {
    color: #000;
}

/* Footer Premium Redesign */
.footer {
    background: #0f1115;
    color: #e0e0e0;
    padding: 70px 0 20px;
    border-top: 5px solid var(--primary-color);
}

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

.footer-col h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: var(--transition);
}

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

.footer-col ul li a:hover i {
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    color: #bbb;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.contact-info li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #1a1d24;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #888;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-btn.whatsapp {
    left: 20px;
    background: #25D366;
}

.floating-btn.whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.floating-btn.phone {
    right: 20px;
    background: var(--primary-color);
    color: #000;
    animation-delay: 1.5s;
}

.floating-btn.phone:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
    
    .header .nav.active {
        display: flex;
    }
    
    .header .nav a {
        margin: 10px 0;
    }

    .header .btn-call {
        display: block;
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .flex-content {
        flex-direction: column;
    }
    
    .floating-btn span {
        display: none; /* Only show icons on very small screens if needed, but keeping text is better for CTA */
    }
    
    .floating-btn.phone, .floating-btn.whatsapp {
        bottom: 10px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
