:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
    --dark-grey: #121212;
    --light-grey: #F5F5F7;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.gold-text {
    color: var(--gold);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .nav-logo {
    height: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    width: 35%;
}

.nav-links:last-of-type {
    justify-content: flex-end;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: black !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700 !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Luxury Hero Section */
.hero-luxury {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content-luxury {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 100px;
    width: 100%;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInLeft 0.8s ease-out 0.8s both;
}

.hero-subheadline {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    margin-bottom: 40px;
    animation: fadeInLeft 0.8s ease-out 1s both;
}

.hero-cta-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInLeft 0.8s ease-out 1.2s both;
}

.hero-btn-primary {
    background: #D4AF37;
    color: black;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.hero-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid white;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn-secondary:hover {
    background: white;
    color: black;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive adjustments for hero */
@media (max-width: 1200px) {
    .hero-content-luxury {
        padding: 120px 60px;
    }

    .hero-headline {
        font-size: 60px;
    }

    .hero-subheadline {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-luxury {
        background-attachment: scroll;
    }

    .hero-content-luxury {
        padding: 100px 30px;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-cta-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 14px;
    }
}

/* ============================================
   ADVANCED BOOKING FORM
   ============================================ */

.booking-form-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 100;
    padding: 0 40px;
}

.booking-form-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr 1fr 1fr;
    gap: 15px;
    align-items: flex-start;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: #666;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.form-input {
    width: 100%;
    height: 55px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 0 18px 0 48px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
    appearance: none;
    cursor: pointer;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-input:hover {
    border-color: #C0C0C0;
}

/* Custom select arrow */
select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
}

.duration-text {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.form-submit {
    margin-top: 22px;
}

.search-btn {
    width: 100%;
    height: 55px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.search-btn:hover {
    background: #B8941E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Ripple effect */
.search-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.search-btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-loader {
    display: inline-block;
}

/* Price Estimate */
.price-estimate {
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.price-estimate i {
    color: var(--gold);
    font-size: 18px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advanced Filters Toggle */
.advanced-filters-toggle {
    margin-top: 20px;
    text-align: center;
}

.toggle-btn {
    background: transparent;
    border: 1px solid #E0E0E0;
    color: #666;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.toggle-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Advanced Filters Panel */
.advanced-filters-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    margin-top: 0;
}

.advanced-filters-panel.active {
    max-height: 500px;
    padding-top: 20px;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: #F9F9F9;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
}

.filter-field {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.filter-input {
    height: 45px;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.filter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN - BOOKING FORM
   ============================================ */

@media (max-width: 900px) {
    .booking-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-submit {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        margin-top: -60px;
        padding: 0 20px;
    }

    .booking-form-container {
        padding: 30px 20px;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-submit {
        grid-column: 1;
    }

    .form-input,
    .search-btn {
        height: 52px;
        min-height: 48px;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        margin-top: -40px;
    }

    .booking-form-container {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .form-label {
        font-size: 11px;
    }

    .search-btn {
        font-size: 15px;
    }
}

/* Brand Ticker */

.brand-bar {
    background: #0a0a0a;
    padding: 25px 0;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

.brand-scroll {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    font-weight: 700;
    font-size: 1.2rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Catalogue Section */
.catalogue-section {
    padding: 100px 0;
    background: #000;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cat-card {
    aspect-ratio: 16 / 10;
    height: auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #222;
}

.cat-card:hover {
    transform: translateY(-10px);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.1);
}

.cat-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.view-all-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--gold);
    color: black;
}

/* Car Grids */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(380px, 100%), 1fr));
    gap: 35px;
}

.car-card {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    color: var(--white);
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.car-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #050505;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 12px;
}

.car-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 3vw, 2.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    text-transform: none;
    letter-spacing: 2px;
    z-index: 5;
    white-space: nowrap;
    user-select: none;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.car-info-royal {
    padding: 25px;
}

.car-name-royal {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: inherit;
}

.car-specs-royal {
    list-style: none;
    margin-bottom: 25px;
}

.car-specs-royal li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 0.9rem;
    color: #aaa;
}

.car-card-dark .car-specs-royal li {
    border-bottom-color: #222;
    color: #aaa;
}

.car-specs-royal li span {
    font-weight: 700;
    color: inherit;
}

.pricing-royal {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.car-card-dark .pricing-royal {
    border-top-color: #222;
}

.pricing-label-royal {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.pricing-selector {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    outline: none;
    background: #222;
    color: white;
}

.car-card-dark .pricing-selector {
    background: #222;
    color: white;
    border-color: #333;
}

.card-btns-royal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-royal {
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-about {
    background: #222;
    color: white;
}

.car-card-dark .btn-about {
    background: #222;
    color: white;
}

.btn-reserve {
    background: var(--gold);
    color: black;
}

/* Category Nav */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #333;
    color: #999;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    background: #0a0a0a;
}

.category-tab:hover {
    border-color: var(--gold);
    color: var(--white);
}

.category-tab.active {
    background: var(--gold);
    color: black;
    border-color: var(--gold);
}

/* Modal Styling */
.car-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-modal.active {
    opacity: 1;
}

.modal-content {
    background: #0a0a0a;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    border-radius: 30px;
    position: relative;
    padding-bottom: 60px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.modal-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 60px;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-img-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.main-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    background: transparent;
}

.img-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.img-nav-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.img-nav-prev {
    left: 20px;
}

.img-nav-next {
    right: 20px;
}

.img-nav-btn i {
    font-size: 1.2rem;
}


.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb {
    width: 120px;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}


.thumb.active,
.thumb:hover {
    opacity: 1;
    border: 2px solid var(--gold);
}

.modal-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-title {
    font-size: 3rem;
    line-height: 1;
}

.pricing-select-box {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #222;
}

.price-display-gold {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 10px 0;
}

.vat-notice {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.modal-mini-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.trust-item i {
    font-size: 1rem;
}


.whatsapp-booking-btn {
    background: #25D366;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.detail-section-title {
    padding: 0 60px;
    margin: 40px 0 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 60px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.spec-label {
    color: #888;
}

.spec-value {
    color: white;
    font-weight: 700;
}

.requirements-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 60px;
}

.req-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
}

.req-card h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.req-card ul {
    list-style: none;
}

.req-card li {
    margin-bottom: 10px;
    color: #888;
    position: relative;
    padding-left: 20px;
}

.req-card li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* FAQ inside Modal */
.modal-faq-container {
    padding: 0 60px;
}

.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding-bottom: 20px;
    color: #888;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .fa-plus {
    transform: rotate(45deg);
}

/* Booking Form inside Modal */
.modal-booking-form {
    padding: 0 60px;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    color: white;
    outline: none;
}

.form-group input[type="date"] {
    color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}


.modal-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Modal Contact Section */
.modal-contact-section {
    padding: 40px 60px;
    text-align: center;
    background: #0a0a0a;
    margin: 0 60px 40px;
    border-radius: 20px;
    border: 1px solid #222;
}

.contact-question {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.whatsapp-contact-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn i {
    font-size: 1.3rem;
}


/* Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.showcase-card {
    aspect-ratio: 1 / 1;
    height: auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.showcase-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-price {
    color: var(--gold);
    font-weight: 700;
}

/* Masonry */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.masonry-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Why Rent */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1a1a1a;
    transition: var(--transition);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: #050505;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #222;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    background: #111;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #222;
}

.contact-info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-info-text p {
    color: #888;
    font-size: 1rem;
}

.contact-form {
    background: #0a0a0a;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #1a1a1a;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    border: none;
    border-radius: 12px;
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: #050505;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #222;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
}

/* Category Hero Section */
.category-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #222;
    text-align: center;
    position: relative;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.category-hero .container {
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.category-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.back-link:hover {
    background: var(--gold);
    color: black;
}

.back-link i {
    font-size: 0.9rem;
}


/* Responsiveness */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: black;
        padding: 40px;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .modal-header,
    .modal-details-grid,
    .requirements-box {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 30px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Responsiveness (Phones) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Modal Mobile Fixes */
    .modal-content {
        margin: 0;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 100vh;
        border-radius: 0;
        padding-bottom: 80px;
        overflow-x: hidden !important;
        position: relative;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.5rem;
    }

    .modal-header {
        padding: 20px;
        gap: 20px;
    }

    .modal-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        /* Prevent overflow */
    }

    .modal-details-grid,
    .requirements-box,
    .modal-contact-section,
    .detail-section-title,
    .modal-faq-container,
    .modal-booking-form {
        padding: 0 20px;
    }

    .modal-contact-section {
        margin: 0 20px 40px;
    }

    .main-img-container {
        border-radius: 12px;
    }

    .pricing-select-box {
        padding: 20px;
    }

    /* Adjust Translate Widget Position on Mobile */
    .translate-widget-container {
        bottom: 100px;
        /* Moved higher to avoid WhatsApp button overlap */
        /* Move up slightly to avoid conflict */
        left: 20px;
        transform: scale(0.85);
        /* Make smaller */
        transform-origin: bottom left;
    }

    /* Modal Component Adjustments */
    .pricing-select-box {
        padding: 20px;
    }

    .price-display-gold {
        font-size: 1.5rem;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .spec-value {
        font-size: 1.1rem;
    }

    .modal-header {
        padding: 15px !important;
        gap: 20px;
        width: 100% !important;
    }

    .modal-gallery {
        width: 100% !important;
    }

    .gallery-thumbs {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .modal-info-side {
        width: 100% !important;
        padding: 0 !important;
    }

    .pricing-select-box {
        padding: 15px !important;
        width: 100% !important;
    }

    .pricing-selector {
        width: 100% !important;
        font-size: 0.9rem !important;
    }

    .price-display-gold {
        font-size: 1.4rem !important;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .spec-value {
        font-size: 1rem !important;
    }

    .requirements-box {
        gap: 15px;
        padding: 0 15px !important;
    }

    .modal-details-grid {
        gap: 0;
        padding: 0 15px !important;
    }

    .detail-section-title {
        margin: 25px 0 10px;
        font-size: 1.1rem !important;
        padding: 0 15px !important;
    }

    .modal-faq-container,
    .modal-booking-form {
        padding: 0 15px !important;
    }
}

/* Translate Widget */
.translate-widget-container {
    position: fixed;
    bottom: 110px;
    /* Moved higher to avoid WhatsApp button overlap */
    left: 30px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    /* Button at bottom, flags above */
    align-items: flex-start;
    gap: 15px;
    font-family: 'Inter', sans-serif;
}

.translate-main-btn {
    background: #F39C12;
    /* Orange color */
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.translate-main-btn:hover {
    transform: translateY(-2px);
    background: #e67e22;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.flags-list {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #ccc;
    flex-wrap: wrap;
    max-width: 350px;
}

.flags-list::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f0f0f0;
}

.flags-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.flag-item {
    width: 32px;
    height: 24px;
    cursor: pointer;
    border-radius: 3px;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.flag-item:hover {
    transform: scale(1.2);
    z-index: 10;
}

/* Hide Google's Default Widget */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    height: 0 !important;
    overflow: hidden !important;
}

body {
    top: 0 !important;
}

/* Update WhatsApp Button Position */
.whatsapp-float {
    bottom: 110px !important;
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 8999;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    background: black;
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #0a0a0a;
    border-radius: 20px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Hide widgets when modal is open */
body.modal-open .translate-widget-container,
body.modal-open .chatbot-toggle,
body.modal-open .whatsapp-float {
    display: none !important;
}

.chatbot-header {
    background: #111;
    padding: 20px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.chatbot-close {
    color: #666;
    cursor: pointer;
    transition: 0.3s;
}

.chatbot-close:hover {
    color: white;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.bot {
    background: #222;
    color: white;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    border: 1px solid #333;
}

.message.user {
    background: var(--gold);
    color: black;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
    font-weight: 600;
}

.chatbot-input-area {
    padding: 20px;
    background: #111;
    border-top: 1px solid #222;
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    background: #050505;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 25px;
    color: white;
    outline: none;
    font-family: inherit;
}

.chatbot-input:focus {
    border-color: var(--gold);
}

.chatbot-send {
    background: var(--gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.chatbot-send:hover {
    transform: scale(1.1);
}

/* RLHF Feedback */
.message-feedback {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    opacity: 0.6;
}

.feedback-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: 0.3s;
    padding: 2px 5px;
}

.feedback-btn:hover {
    color: var(--gold);
    transform: scale(1.2);
}

.feedback-btn.active {
    color: var(--gold);
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    gap: 5px;
    padding: 10px 15px;
    background: #222;
    border-radius: 12px;
    width: fit-content;
    border-bottom-left-radius: 2px;
    margin-bottom: 15px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ============================================
   TRUST-BUILDING FEATURES SECTION
   ============================================ */

.trust-section {
    background-color: #1A1A1A;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Dot pattern overlay with opacity */
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 0;
}

.trust-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 70px;
}

.trust-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.trust-subhead {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

/* Features Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.trust-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.trust-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-card:hover .trust-icon-box {
    transform: rotate(360deg) scale(1.1);
}

.trust-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.trust-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    backdrop-filter: blur(5px);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-headline {
        font-size: 36px;
    }

    .trust-section {
        padding: 60px 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* ============================================
   PREMIUM FLEET SHOWCASE
   ============================================ */

.premium-fleet-section {
    background: linear-gradient(to bottom, #FFFFFF, #F8F8F8);
    padding: 120px 5%;
    margin-top: 100px;
    position: relative;
}

.fleet-header {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.fleet-subtext {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #666;
}

/* Filter Tabs */
.fleet-tabs-container {
    position: sticky;
    top: 100px;
    z-index: 90;
    background: rgba(248, 248, 248, 0.95);
    padding: 20px 0;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
}

.fleet-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.fleet-tab {
    padding: 12px 30px;
    border-radius: 50px;
    background: white;
    border: 2px solid #E0E0E0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fleet-tab:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.fleet-tab.active {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Card Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Car Card */
.premium-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease forwards;
}

.premium-card.card-dark {
    background: #111;
    border: 1px solid #222;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.premium-card:hover .card-img {
    transform: scale(1.1);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Section */
.card-img-container {
    height: 280px;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Badges & Icons */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D4AF37;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.card-fav-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    color: #ccc;
}

.card-fav-icon:hover {
    transform: scale(1.1);
    color: #D4AF37;
}

.card-fav-icon.active {
    color: #D4AF37;
    fill: #D4AF37;
}

.premium-card.card-dark .card-fav-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #666;
}

.premium-card.card-dark .card-fav-icon:hover,
.premium-card.card-dark .card-fav-icon.active {
    color: #D4AF37;
}

/* Quick View Overlay */
.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 3;
}

.premium-card:hover .quick-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Content Section */
.card-content {
    padding: 30px;
}

.card-category {
    color: #D4AF37;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
    line-height: 1.2;
}

.premium-card.card-dark .card-title {
    color: white;
}

.card-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 20px;
}

.premium-card.card-dark .card-specs {
    border-bottom-color: #222;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.premium-card.card-dark .spec-item {
    color: #aaa;
}

.spec-item i {
    color: #999;
}

/* Features */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-tag {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-tag i {
    color: #D4AF37;
    font-size: 10px;
}

/* Pricing Section */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    font-family: 'Outfit', sans-serif;
}

.premium-card.card-dark .price-main {
    color: white;
}

.price-per {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.price-sub {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.rent-btn {
    background: #D4AF37;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rent-btn:hover {
    background: #B8941E;
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fleet-headline {
        font-size: 36px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .fleet-tabs-container {
        padding: 15px;
        top: 80px;
    }

    .fleet-tabs {
        justify-content: flex-start;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: white;
    padding: 100px 5%;
    color: #1A1A1A;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.overall-rating {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
}

.summary-stars {
    display: flex;
    gap: 5px;
}

.summary-stars i {
    font-size: 24px;
    color: #D4AF37;
}

.review-count {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #666;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto 60px;
}

.testimonial-card {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(212, 175, 55, 0.15);
    font-size: 80px;
    z-index: 1;
    line-height: 1;
}

.card-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-stars i {
    font-size: 18px;
}

.card-stars i.filled {
    color: #D4AF37;
}

.card-stars i.empty {
    color: #E0E0E0;
}

.review-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #E0E0E0;
    padding-top: 20px;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.rental-info {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #D4AF37;
    font-weight: 600;
}

.platform-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 20px;
    z-index: 3;
    opacity: 0.8;
}

.platform-google {
    color: #4285F4;
}

.platform-tripadvisor {
    color: #34E0A1;
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-badge-item {
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-badge-item:hover {
    opacity: 1;
}

.trust-badge-logo {
    height: 30px;
    margin-bottom: 8px;
    /* Removed filter since these are common logos */
    transition: transform 0.3s ease;
}

.trust-badge-item:hover .trust-badge-logo {
    transform: scale(1.1);
}

.trust-badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonials-headline {
        font-size: 36px;
    }

    .rating-summary {
        flex-direction: column;
        gap: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges-row {
        gap: 20px;
    }
}

/* ============================================
   PRE-FOOTER CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 2px, transparent 2px);
    background-size: 40px 40px;
    z-index: 1;
    animation: bgMove 60s linear infinite;
}

.cta-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.1;
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: rotate 20s linear infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    bottom: -50px;
    right: -50px;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 20%;
    right: 10%;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse-slow 4s infinite;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.cta-subheadline {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn-primary {
    background: white;
    color: #D4AF37;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #B8941E;
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-secondary:hover {
    background: white;
    color: #D4AF37;
}

.cta-urgency {
    display: inline-block;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.cta-trust {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.cta-trust-icon {
    font-size: 24px;
    color: white;
    margin-bottom: 5px;
}

/* Animations */
@keyframes bgMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-headline {
        font-size: 40px;
    }

    .cta-subheadline {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }

    .cta-trust {
        gap: 20px;
        margin-top: 40px;
    }

    .cta-trust-item {
        width: 45%;
    }
}

/* ============================================
   MODERN COMPREHENSIVE FOOTER
   ============================================ */
.main-footer {
    background-color: #0A0A0A;
    color: white;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Column 1: Company Info */
.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.footer-logo-text span {
    color: #D4AF37;
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-box:hover {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
    transform: scale(1.1);
}

/* Columns 2, 3, 4: Links */
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-link:hover::before {
    content: '→';
    margin-right: 5px;
    font-size: 14px;
    opacity: 1;
}

/* Column 5: Contact */
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: #D4AF37;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

a.footer-contact-text:hover {
    color: #D4AF37;
}

.footer-newsletter {
    margin-top: 30px;
}

.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 10px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #D4AF37;
}

.newsletter-btn {
    background: #D4AF37;
    color: black;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #B8941E;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 10px;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.legal-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #D4AF37;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 5px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    height: 25px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-logo-col {
        grid-column: span 2;
    }

    .footer-contact-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-logo-col,
    .footer-contact-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
    }
}

/* ========================================
   MOBILE NAVIGATION STYLES
======================================== */

/* Hamburger Icon */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 2000;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active/Open State for Hamburger */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background: white;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background: white;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    z-index: 1500;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

/* Mobile Menu Content */
.mobile-menu-content {
    max-width: 90%;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

/* Logo in Mobile Menu */
.mobile-menu-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 50px;
}

.mobile-menu-logo span {
    color: #D4AF37;
    font-size: 24px;
    display: block;
    letter-spacing: 2px;
}

/* Mobile Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-link {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-link:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-link:hover {
    color: #D4AF37;
    padding-left: 10px;
}

/* Mobile CTA Button */
.mobile-cta-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.mobile-cta-btn:hover {
    background: #B8941E;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Mobile Contact Info */
.mobile-contact-info {
    margin-top: 50px;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-contact-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
    transition: all 0.4s ease;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.mobile-contact-item i {
    color: #D4AF37;
    font-size: 18px;
}

.mobile-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: #D4AF37;
}

/* Mobile Social Icons */
.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.mobile-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-5px);
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Mobile Breakpoint Responsive */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .nav-container {
        justify-content: center;
    }

    .logo {
        position: relative !important;
        left: 0 !important;
        transform: none !important;
    }

    header {
        background: rgba(0, 0, 0, 0.95);
    }

    /* Adjust hamburger color when on dark header */
    header .hamburger .hamburger-line {
        background: white;
    }

    /* Keep hamburger white when menu is active */
    .hamburger.active .hamburger-line {
        background: white;
    }
}

/* Backdrop blur effect for overlay */
@supports (backdrop-filter: blur(10px)) {
    .mobile-menu-overlay {
        backdrop-filter: blur(10px);
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    }
}

/* Hide old menu toggle */
.menu-toggle {
    display: none !important;
}

/* Testimonial Slider Styles */
.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    /* Ensure container respects parent width */
    max-width: 100%;
}

.testimonials-viewport {
    overflow: hidden;
    flex: 1;
    /* Key fix: Allow viewport to take remaining space instead of 100% of parent */
    /* Add padding to prevent shadow clipping */
    padding: 10px 0;
    min-width: 0;
    /* Prevents flex child from overflowing */
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonials-viewport .testimonial-card {
    /* Use flex-basis for correct sizing logic */
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    /* Show 3 cards by default taking loop gap into account */
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
    /* Ensure padding doesn't add to width */
}

.slider-btn {
    background: var(--gold);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #B8941E;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 992px) {
    .testimonials-viewport .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
        max-width: calc(50% - 15px);
        /* Ensure strict width */
    }
}

@media (max-width: 768px) {
    .testimonials-viewport .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        /* Show 1 card */
        padding: 30px 20px;
        /* Adjust padding to fit text better */
    }

    .testimonials-slider {
        gap: 0;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        opacity: 0.9;
        background: rgba(212, 175, 55, 0.9);
    }

    .prev-btn {
        left: 5px;
        /* Move slightly inside to avoid edge clip */
    }

    .next-btn {
        right: 5px;
    }

    .slider-btn:hover {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}

/* Sticky WhatsApp Button */
/* Sticky WhatsApp Button */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Moved to left */
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    z-index: 2;
    fill: white;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.whatsapp-sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky-btn:hover .whatsapp-icon {
    transform: rotate(360deg);
}

/* Pulse Animation */
.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.7;
    z-index: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip (Moved to Right Side) */
.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    /* Position to the right of the button */
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    /* Initial transform for slide in */
    background: white;
    color: #1A1A1A;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    /* Arrow on left side */
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 8px 6px 0;
    /* Left pointing (actually right border colored logic flipped) - wait. 
    To point LEFT: Border-right should be colored. 
    Border-width: Top Right Bottom Left. 
    6px 8px 6px 0. 
    Color: Transparent White Transparent Transparent. */
    border-color: transparent white transparent transparent;
}

.whatsapp-sticky-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Ripple Effect */
.whatsapp-sticky-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.whatsapp-sticky-btn:active::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    transition: 0s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-sticky-btn {
        bottom: 20px;
        left: 20px;
        /* Left on mobile too */
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* ============================================
   BRANDED LOADING SCREEN
   ============================================ */

    .loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        overflow: hidden;
    }

    /* Shimmer background effect */
    .loading-screen::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,
                transparent 30%,
                rgba(212, 175, 55, 0.1) 50%,
                transparent 70%);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }

        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }

    .loading-screen.fade-out {
        opacity: 0;
        visibility: hidden;
    }

    .loading-content {
        text-align: center;
        z-index: 2;
        position: relative;
    }

    .loading-logo {
        margin-bottom: 30px;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.05);
            opacity: 0.9;
        }
    }

    .logo-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 48px;
        font-weight: 700;
        color: #1A1A1A;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .logo-gold {
        color: #D4AF37;
        font-size: 36px;
    }

    .logo-icon {
        font-size: 40px;
        color: #D4AF37;
        margin-top: 10px;
        animation: spin 3s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .loading-text {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    .progress-bar-container {
        width: 300px;
        height: 4px;
        background: rgba(212, 175, 55, 0.2);
        border-radius: 10px;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
        background-size: 200% 100%;
        border-radius: 10px;
        width: 0%;
        animation: progressAnimation 1.5s ease-out forwards, gradientShift 2s ease-in-out infinite;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    @keyframes progressAnimation {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .logo-text {
            font-size: 36px;
        }

        .logo-gold {
            font-size: 28px;
        }

        .logo-icon {
            font-size: 32px;
        }

        .loading-text {
            font-size: 16px;
            padding: 0 20px;
        }

        .progress-bar-container {
            width: 250px;
        }
    }
}

/* ============================================
   BRANDED LOADING SCREEN
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    /* Solid white background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

/* Shimmer background effect */
.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(212, 175, 55, 0.1) 50%,
            transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.loading-logo {
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-gold {
    color: #D4AF37;
    font-size: 36px;
}

.logo-icon {
    font-size: 40px;
    color: #D4AF37;
    margin-top: 10px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.progress-bar-container {
    width: 300px;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    animation: progressAnimation 1.5s ease-out forwards, gradientShift 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-text {
        font-size: 36px;
    }

    .logo-gold {
        font-size: 28px;
    }

    .logo-icon {
        font-size: 32px;
    }

    .loading-text {
        font-size: 16px;
        padding: 0 20px;
    }

    .progress-bar-container {
        width: 250px;
    }
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8941E);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}