@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM --- */
:root {
    --bg-black: #090909;
    --bg-dark: #121212;
    --bg-card: rgba(18, 18, 18, 0.65);
    --color-silver: #C9C9C9;
    --color-gray: #2F3237;
    --color-light-gray: #6F7278;
    --color-white: #FFFFFF;
    --color-accent: #FFCC00; /* Premium Yellow */
    --color-accent-rgb: 255, 204, 0;
    --color-whatsapp: #25D366;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(9, 9, 9, 0.75);
    --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scroll */
}

body {
    background-color: var(--bg-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 75px; /* Space for the sticky bottom bar on mobile */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

/* Lenis Custom Integration */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overflow: clip;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* --- LOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-logo {
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUp 0.8s forwards 0.2s;
}
/* Premium Audi-like Rings Animation */
.audi-rings-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    margin-bottom: 20px;
}
.ring-loader {
    width: 25px;
    height: 25px;
    border: 2px solid var(--color-silver);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringGlow 1.5s infinite ease-in-out;
}
.ring-loader:nth-child(2) { animation-delay: 0.2s; }
.ring-loader:nth-child(3) { animation-delay: 0.4s; }
.ring-loader:nth-child(4) { animation-delay: 0.6s; }

.loader-line {
    width: 150px;
    height: 2px;
    background-color: var(--color-gray);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}
.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-accent);
    animation: fillProgress 2.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-subtitle {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--bg-black);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-primary:hover {
    color: var(--bg-black);
}
.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--bg-black);
    border-color: var(--color-accent);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}
.btn-whatsapp:hover {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* --- GLASS CONTAINER / CARDS --- */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
}
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}
.glass-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(9, 9, 9, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-svg {
    height: 35px;
    width: auto;
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--color-white);
}
.logo-text span {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-silver);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-white);
}
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-phone {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}
.nav-phone:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--bg-black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(9, 9, 9, 0.95);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px;
        z-index: 1000;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--glass-border);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-link {
        font-size: 20px;
        display: block;
        padding: 12px 0;
    }
    .nav-actions {
        display: none; /* Embedded in mobile menu instead */
    }
    .nav-menu .mobile-actions {
        margin-top: 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}
.slide.active .slide-bg {
    transform: scale(1);
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9,9,9,0.4) 0%, rgba(9,9,9,0.85) 100%),
                linear-gradient(to right, rgba(9,9,9,0.8) 0%, rgba(9,9,9,0.1) 100%);
    z-index: 3;
}
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: 60px;
}
.hero-tagline {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-tagline::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
}
.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 750px;
    line-height: 1.1;
    color: var(--color-white);
}
.hero-title span {
    color: var(--color-accent);
}
.hero-desc {
    font-size: 18px;
    color: var(--color-silver);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: fit-content;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
}
.stat-num span {
    color: var(--color-accent);
}
.stat-label {
    font-size: 12px;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-desc {
        font-size: 15px;
    }
    .hero-stats {
        gap: 30px;
    }
    .stat-num {
        font-size: 28px;
    }
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 12px;
}
.slider-dot {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.slider-dot.active {
    background-color: var(--color-accent);
    width: 50px;
}

/* --- WHY CHOOSE US --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.why-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.why-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-white);
    transition: var(--transition-smooth);
}
.why-card:hover .why-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.why-card:hover .why-icon svg {
    fill: var(--bg-black);
}
.why-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.why-text {
    font-size: 14px;
    color: var(--color-silver);
    font-weight: 300;
}

/* --- FLEET / VEHICLE SHOWCASE --- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
@media (max-width: 480px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}
.fleet-card {
    height: 480px;
}
.fleet-img-wrap {
    height: 60%;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-card:hover .fleet-img {
    transform: scale(1.08);
}
.fleet-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-accent);
    color: var(--bg-black);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 2;
}
.fleet-info {
    padding: 30px;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fleet-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.fleet-meta {
    display: flex;
    gap: 20px;
    color: var(--color-silver);
    font-size: 13px;
    margin-bottom: 15px;
}
.fleet-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.fleet-meta-item svg {
    width: 14px;
    height: 14px;
    fill: var(--color-accent);
}
.fleet-btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fleet-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}
.fleet-price span {
    font-size: 13px;
    color: var(--color-light-gray);
    font-weight: 400;
}
.fleet-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fleet-link::after {
    content: '→';
    transition: transform 0.3s ease;
}
.fleet-card:hover .fleet-link {
    color: var(--color-accent);
}
.fleet-card:hover .fleet-link::after {
    transform: translateX(4px);
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-card {
    padding: 40px 30px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.service-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-silver);
    transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.service-card:hover .service-icon svg {
    fill: var(--bg-black);
}
.service-details h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-details p {
    font-size: 14px;
    color: var(--color-silver);
    font-weight: 300;
}

/* --- POPULAR DESTINATIONS --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.dest-card {
    position: relative;
    height: 220px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
}
.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.dest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9,9,9,0.1) 0%, rgba(9,9,9,0.85) 100%);
    z-index: 1;
}
.dest-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}
.dest-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.dest-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 700;
}
.dest-card:hover .dest-img {
    transform: scale(1.08);
}
.dest-card:hover::after {
    background: linear-gradient(to bottom, rgba(9,9,9,0.2) 0%, rgba(9,9,9,0.95) 100%);
}

/* --- REVIEWS --- */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.review-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
}
.review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}
.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
}
.review-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--color-silver);
}
.review-author {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
}
.review-author-title {
    font-size: 12px;
    color: var(--color-light-gray);
    margin-top: 2px;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.carousel-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.carousel-btn:hover svg {
    fill: var(--bg-black);
}
.carousel-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--color-white);
}

/* --- FAQ ACCORDION --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}
.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-smooth);
}
.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-icon-box {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-icon-box::before, .faq-icon-box::after {
    content: '';
    position: absolute;
    background-color: var(--color-white);
    transition: transform 0.3s ease;
}
.faq-icon-box::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}
.faq-icon-box::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}
.faq-item.active .faq-icon-box::after {
    transform: rotate(90deg) scaleY(0);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.01);
}
.faq-inner {
    padding: 0 30px 24px 30px;
    color: var(--color-silver);
    font-size: 15px;
    font-weight: 300;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-map-wrap {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) grayscale(100%);
}
.contact-info-panel {
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-meta-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-meta-block h4 {
    font-size: 14px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.contact-meta-block p, .contact-meta-block a {
    font-size: 20px;
    font-weight: 600;
}
.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}
.social-icon:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}
.social-icon:hover svg {
    fill: var(--bg-black);
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    background: #050505;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-logo-block p {
    color: var(--color-silver);
    font-size: 14px;
    margin-top: 20px;
    font-weight: 300;
}
.footer-col h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: var(--color-silver);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}
.footer-seo-text {
    font-size: 13px;
    color: var(--color-light-gray);
    line-height: 1.8;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-light-gray);
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* --- STICKY BOTTOM BAR --- */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 9, 9, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    display: flex;
    gap: 12px;
    z-index: 998;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
}
.sticky-bar-btn {
    flex: 1;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    transition: var(--transition-smooth);
}
.sticky-bar-call {
    background-color: var(--color-accent);
    color: var(--bg-black);
}
.sticky-bar-call:hover {
    background-color: #e0b300;
}
.sticky-bar-wp {
    background-color: var(--color-whatsapp);
}
.sticky-bar-wp:hover {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Hide floating actions on small screens where sticky bar is active */
@media (max-width: 768px) {
    .float-btn-group {
        display: none;
    }
}

/* --- FLOATING ACTIONS --- */
.float-btn-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}
.float-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}
.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.float-call {
    background-color: var(--color-accent);
}
.float-call svg {
    fill: var(--bg-black);
}
.float-whatsapp {
    background-color: var(--color-whatsapp);
}
.back-to-top {
    background-color: var(--color-gray);
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* --- INNER PAGES SPECIFIC --- */
.inner-hero {
    height: 45vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.inner-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9,9,9,0.3) 0%, rgba(9,9,9,0.9) 100%);
    z-index: 1;
}
.inner-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}
.inner-hero-title {
    font-size: 48px;
    font-weight: 800;
}
.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--color-silver);
    margin-top: 12px;
}
.breadcrumb a:hover {
    color: var(--color-accent);
}

/* Info Panel Grid (About/FAQ layout) */
.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 991px) {
    .info-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.info-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.info-content p {
    color: var(--color-silver);
    margin-bottom: 24px;
    font-weight: 300;
}
.info-img-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

/* --- PREMIUM GALLERY PAGE (Zoom, Hover, Fullscreen) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.gallery-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9,9,9,0) 40%, rgba(9,9,9,0.85) 100%);
    opacity: 0.85;
    transition: var(--transition-smooth);
    z-index: 1;
}
.gallery-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-caption h4 {
    font-size: 20px;
    font-weight: 700;
}
.gallery-caption p {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gallery-item:hover .gallery-item-img {
    transform: scale(1.1);
}
.gallery-item:hover::after {
    opacity: 0.95;
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Lightbox UI */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox.show {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}
.lightbox-close svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}
.lightbox-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.lightbox-close:hover svg {
    fill: var(--bg-black);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    pointer-events: none;
}
.lightbox-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-smooth);
}
.lightbox-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.lightbox-arrow:hover svg {
    fill: var(--bg-black);
}
.lightbox-arrow svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

/* --- BLOG PAGE DESIGN --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 480px;
}
.blog-img-wrap {
    height: 50%;
    overflow: hidden;
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-img {
    transform: scale(1.08);
}
.blog-info {
    padding: 30px;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 700;
}
.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0;
}
.blog-excerpt {
    font-size: 13px;
    color: var(--color-silver);
    font-weight: 300;
    line-height: 1.6;
}
.blog-link-btn {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}
.blog-link-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-link-btn {
    color: var(--color-accent);
}
.blog-card:hover .blog-link-btn::after {
    transform: translateX(4px);
}

/* Legal text formatting */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-white);
}
.legal-content p {
    color: var(--color-silver);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}
.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
    color: var(--color-silver);
}
.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fillProgress {
    to {
        width: 100%;
    }
}
@keyframes ringGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 0 rgba(201, 201, 201, 0);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px var(--color-silver);
        border-color: var(--color-white);
    }
}
