﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ff9800;
    --primary-dark: #e68a00;
    --secondary: #d4af37;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 120px;
}

html,
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100vw;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

nav.scrolled {
    height: 90px;
    background: rgba(0, 0, 0, 0.95);
    padding: 0 5%;
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.lang-switch .active {
    color: var(--primary);
}

/* Premium Brand Logo (CSS/Icon based) */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-badge {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-badge i {
    color: black;
    font-size: 2.4rem;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
    transition: 0.4s;
    background: #fff;
}

nav.scrolled .logo-container {
    width: 70px;
    height: 70px;
    border-width: 2px;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.5);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

nav.scrolled .nav-logo span {
    font-size: 2rem;
    text-shadow: none;
}

.nav-logo span small {
    display: block;
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
    transition: 0.4s;
}

nav.scrolled .nav-logo span small {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .nav-logo span small {
        display: none !important;
    }

    .nav-logo span {
        font-size: 1.8rem !important;
    }

    .logo-container {
        width: 60px !important;
        height: 60px !important;
    }

    nav {
        height: 80px !important;
        padding: 0 20px;
    }

    nav.scrolled {
        height: 70px !important;
    }
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links li a {
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    display: block;
}

nav.scrolled .nav-links li a {
    padding: 8px 15px;
    font-size: 1.05rem;
}

.nav-links li a:hover {
    background: var(--glass);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1);
}

.nav-links li a.active-link {
    background: var(--primary);
    color: black;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-inline: 5%;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.hero-badges span {
    background: var(--glass);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
    color: var(--primary);
}


/* Reservation Form */
.booking-container {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Main Form Search Integration */
.form-group.search-box {
    position: relative;
    z-index: 100;
}

.form-group.search-box:focus-within {
    z-index: 2200;
    /* Active search box always stays on top */
}

.search-box label {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    /* Solid black background */
    border: 1px solid var(--primary);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    /* Force it above everything */
    display: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
}

.search-results div {
    padding: 16px 20px;
    /* Larger touch target for mobile, min 50px height */
    cursor: pointer;
    font-size: 1rem;
    /* Slightly larger text for readability */
    color: #eee;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    display: flex;
    align-items: center;
    min-height: 54px;
}

.search-results div:hover {
    background: var(--primary);
    color: black !important;
}

.search-results div:hover i {
    color: black !important;
}

/* Mobile specific autocomplete adjustments */
@media (max-width: 768px) {
    .search-results {
        max-height: 200px;
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        border-radius: 0 0 12px 12px;
        border-top: 1px solid var(--primary);
    }

    /* Results list for mobile */
    .search-results {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100% !important;
        background: #111 !important;
        border: 1px solid var(--primary) !important;
        z-index: 10000 !important;
        /* Extremely high z-index for mobile overlap fix */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 1);
    }

    /* Prevent mobile zoom */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 8px;
    color: white;
    outline: none;
}

.btn-book {
    grid-column: span 1;
    background: var(--primary);
    color: black;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-end;
}

.btn-book:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* About Us */
.about {
    background: #111;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
}

.fab-option {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    transition: 0.3s;
}

.fab-option:hover {
    transform: scale(1.1);
}

.fab-option.whatsapp {
    background: #25d366;
    color: white;
}

.fab-option.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.fab-option.tiktok {
    background: #000000;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-bar {
    width: 150px;
    height: 3px;
    background: var(--glass-border);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}

/* Fleet & Testimonials */
.fleet-card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 20px;
}

.fleet-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: black;
}

/* Custom Google Reviews UI */
.testimonials-custom {
    padding: 80px 5%;
    background: #f8f9fa;
    color: #333;
}

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonials-left {
    flex: 0 0 300px;
}

.testimonials-left h2 {
    font-size: 3rem;
    color: #4aa089;
    /* A muted greenish color or just dark gray? Let's use dark gray */
    color: #333;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.testimonials-right {
    flex: 1;
    overflow: hidden;
}

.custom-testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar for cleaner look */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.custom-testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.custom-testimonial-slider::-webkit-scrollbar-track {
    background: transparent;
}

.custom-testimonial-slider::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.custom-review-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ebebeb;
    border-left: 2px solid #e0e0e0;
    text-align: center;
    position: relative;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.review-name-small {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2px;
}

.review-contrib {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 10px;
}

.review-quote-icon {
    font-size: 2rem;
    color: #F4B400;
    /* Yellow */
    line-height: 1;
    margin-bottom: 5px;
}

.review-name-bold {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.review-btn {
    background: #4285F4;
    /* Google Blue */
    color: white;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.review-btn:hover {
    background: #3367d6;
    color: white;
}

.review-text {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .testimonials-split {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-left {
        flex: auto;
        margin-bottom: 20px;
    }

    .testimonials-left h2 {
        font-size: 2.2rem;
    }

    .custom-review-card {
        flex: 0 0 260px;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Gallery */
.gallery {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #111;
    display: flex;
    flex-direction: column;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-desc {
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 152, 0, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: scale(0.5);
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 152, 0, 0.2);
    animation: zoomIn 0.3s ease-out;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    nav {
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        padding: 20px;
    }

    .nav-extra {
        gap: 10px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 140px !important;
        /* Increased to clear fixed header + room */
        min-height: auto;
        padding-bottom: 60px;
        background-attachment: scroll !important;
        /* Fix for mobile background disappearance */
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        min-height: 60px;
        /* Adjusted for mobile */
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .booking-container {
        padding: 20px;
        margin-top: 20px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .btn-book {
        width: 100%;
        padding: 18px;
        /* Larger touch target */
        font-size: 1rem;
    }

    section {
        padding: 60px 5%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text .section-title {
        text-align: center !important;
    }

    .about-text .underline {
        margin: 0 auto !important;
    }

    .form-group input,
    .form-group select {
        padding: 15px;
        /* Larger touch target */
        font-size: 1rem;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
        left: auto;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {


    .section-title h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* News Banner */
.news-banner {
    background: var(--primary);
    color: black;
    padding: 12px 5%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

.news-content i {
    margin-right: 10px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Mobile specific image and grid fixes */
@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

    .fleet-card {
        padding: 15px;
    }

    .booking-container {
        padding: 15px;
    }

    .hero-badges {
        flex-wrap: wrap;
    }

    .hero-badges span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Detailed Services Page Styles */
.services-detail {
    padding: 0;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 10%;
    transition: 0.5s;
}

.service-block.reverse {
    flex-direction: row-reverse;
    background: #111;
}

.service-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.service-block:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.service-info p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.service-info ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Updated Mobile Navigation Menu (Button Style) */
@media (max-width: 768px) {
    .nav-links {
        padding: 40px 20px !important;
        gap: 10px !important;
    }

    .nav-links li {
        width: 100%;
        margin: 5px 0 !important;
    }

    .nav-links li a {
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        border-radius: 12px;
        margin-bottom: 2px;
    }

    .nav-links li a.active-link {
        background: var(--primary) !important;
        color: black !important;
        border-color: var(--primary) !important;
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        padding: 60px 8%;
        text-align: center;
    }

    .service-image {
        height: 300px;
        width: 100%;
    }
}

/* Gallery Page Specific Styles */
.gallery-page {
    padding: 100px 10%;
    background: var(--bg-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gallery-page {
        padding: 80px 5% 40px;
    }

    .filter-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        flex: 1 1 40%;
    }

    .gallery-filters {
        gap: 10px;
    }
}

/* Global Section Padding Fix for Mobile */
@media (max-width: 480px) {
    section {
        padding: 60px 5% !important;
    }

    .hero {
        padding-top: 130px !important;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .logo-badge {
        width: 45px;
        height: 45px;
    }

    .logo-badge i {
        font-size: 1.2rem;
    }
}

/* Map Modal & Price Display */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.map-modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 800px;
    height: 85vh;
    border-radius: 20px;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
}

.close-map {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

#map {
    flex: 1;
    border-radius: 15px;
    margin: 20px 0;
    background: #1a1a1a;
    z-index: 10;
}

.btn-map-trigger {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-map-trigger:hover {
    background: var(--primary);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.btn-map-trigger i {
    font-size: 1.1rem;
}

.map-controls {
    text-align: center;
}

.btn-confirm-map {
    background: var(--primary);
    color: black;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.2);
}

.price-display-card {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), transparent);
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.price-header {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo .logo-container {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    flex-shrink: 0;
    margin-right: 12px;
}

.nav-logo .logo-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.4);
}

.nav-logo .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-logo .brand-text span {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

.nav-logo .brand-text span span {
    color: var(--primary);
}

.nav-logo .brand-text small {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

/* Merged styles into the next block */

@media (max-width: 768px) {
    .nav-logo .brand-text span {
        font-size: 1.2rem;
    }

    .nav-logo .logo-container {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .nav-logo .brand-text small {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.price-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .map-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 60px 20px 20px;
    }
}


/* --- Modern Live Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    height: 550px;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    z-index: 10000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.chat-widget.active {
    display: flex;
    animation: chatOpen 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes chatOpen {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: var(--primary);
    padding: 18px 24px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: radial-gradient(circle at top, #111, #000);
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.chat-msg.ai {
    align-self: flex-start;
    background: #222;
    color: #eee;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    align-self: flex-end;
    background: var(--primary);
    color: #000;
    border-bottom-right-radius: 4px;
}

.chat-footer {
    padding: 15px;
    background: #111;
    border-top: 1px solid #222;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    outline: none;
}

.chat-send {
    background: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
}

.chat-bot-icon {
    background: #000 !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

@media (max-width: 480px) {
    .chat-widget {
        width: 320px !important;
        height: 450px !important;
        bottom: 80px !important;
        left: auto !important;
        right: 20px !important;
        top: auto !important;
        border-radius: 20px !important;
        z-index: 20000 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    /* Services Grid Premium Factor */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }

    .service-card {
        background: linear-gradient(135deg, #161616, #0a0a0a);
        padding: 40px 30px;
        border-radius: 25px;
        border: 1px solid rgba(255, 152, 0, 0.1);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
        text-align: center;
        perspective: 1000px;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
        opacity: 0;
        transition: 0.6s;
    }

    .service-card:hover {
        transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
        border-color: var(--primary);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 152, 0, 0.1);
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card i {
        font-size: 3.5rem;
        color: var(--primary);
        margin-bottom: 25px;
        display: block;
        transition: 0.5s;
    }

    .service-card:hover i {
        transform: scale(1.15) translateZ(30px);
    }

    .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }

    .service-card p {
        color: var(--text-muted);
        line-height: 1.7;
        font-size: 0.95rem;
    }
}