/* Global Styles */
:root {
    --primary-color: #ff6f00; /* More vibrant orange */
    --primary-glow: rgba(255, 111, 0, 0.5);
    --secondary-color: #1e1e1e;
    --bg-color: #0a0a0a; /* Deep black */
    --card-bg: #141414;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #333;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--primary-glow);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px 15px;
    margin: 0 20px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.search-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(0, 0, 0, 0.5);
}

#search-input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    width: 150px;
    font-size: 0.9rem;
}

#search-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

#search-btn:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
    background-color: #ff8000;
}

.btn-secondary {
    padding: 18px 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Services Section */
.services-section {
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 350px; /* Fixed height for consistency */
    display: flex;
    align-items: flex-end; /* Align content to bottom */
}

.service-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4));
    width: 100%;
    padding: 30px 20px;
    transform: translateY(0);
    transition: all 0.4s;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, var(--primary-color), rgba(0,0,0,0.8));
    padding-bottom: 40px;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Photo Gallery Section */
.photo-gallery-section {
    background-color: var(--card-bg);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    grid-auto-flow: dense;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    border: 1px solid #333;
}

/* Make some items wider for masonry effect */
.photo-item:nth-child(1),
.photo-item:nth-child(5) {
    grid-column: span 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 111, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.photo-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .photo-item:nth-child(1),
    .photo-item:nth-child(5) {
        grid-column: span 1; /* Reset on mobile */
    }
}


.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Fleet Section */
.fleet-section {
    background-color: var(--bg-color);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.fleet-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.fleet-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.rent-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 0 10px var(--primary-glow);
    font-size: 0.8rem;
}

.fleet-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fleet-info h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.6rem;
}

.specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spec-item i {
    color: var(--primary-color);
}

.fleet-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.btn-rent {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-rent:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Blog / SEO Section */
.blog-section {
    background-color: var(--secondary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Removed flex-grow to allow content to push down naturally */
}

.blog-extended-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-top 0.3s;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.blog-extended-content p {
    margin-bottom: 15px;
    display: block; /* Override line-clamp for inner paragraphs */
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.blog-content.expanded .blog-extended-content {
    max-height: 500px; /* Large enough value */
    opacity: 1;
    margin-top: 20px;
}

.blog-content.expanded p:first-of-type {
    -webkit-line-clamp: unset; /* Show full intro text too when expanded */
    line-clamp: unset;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto; /* Push to bottom if content is short */
    cursor: pointer;
    width: fit-content;
}

.read-more:hover {
    gap: 10px;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #222;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.about-summary {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-muted);
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 1rem !important;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    filter: grayscale(100%) invert(92%) contrast(83%);
    border: 1px solid #333;
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--primary-color);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .search-container {
        display: none; /* Hide search on mobile for simplicity or move it */
    }
}
