/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --primary: #D4AF37;
    --gold-light: #E5C158;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --miami-blue: #00D4FF;
    --miami-pink: #FF69B4;
}

body {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    font-weight: 300;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== LANGUAGE MODAL (POP-UP) ========== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary);
    max-width: 500px;
    width: 90%;
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-content p {
    color: var(--white);
    margin-bottom: 30px;
}

.language-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-option {
    background: var(--white);
    border: 2px solid var(--primary);
    padding: 20px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.lang-option:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.lang-option .flag {
    font-size: 40px;
}

.lang-option span:last-child {
    font-weight: bold;
    font-size: 16px;
}

.modal-content label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--black) !important;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.modal-content label span {
    color: var(--black) !important;
}

.modal-content input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== HEADER ========== */
header {
    background: var(--black);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    overflow: visible;
}

.header-logo-row {
    text-align: center;
    padding: 15px 0 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.main-logo {
    height: auto;
    width: 100%;
    max-width: 400px;
    object-fit: contain;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img,
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover:after {
    width: 100%;
}

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

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

#langSelector {
    background: none;
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, #0a2540 100%);
    color: var(--white);
    padding: 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slider {
    position: relative;
    z-index: 1;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.5s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    padding: 100px 0;
}

/* Background images for each slide - EASILY CUSTOMIZABLE! */
.hero-slide:nth-child(1) { 
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://i.imgur.com/kljP7Qj.jpg'); 
}
.hero-slide:nth-child(2) { 
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://i.imgur.com/wRuCVsM.jpg'); 
}
.hero-slide:nth-child(3) { 
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://i.imgur.com/v4VF9sN.jpg'); 
}
.hero-slide:nth-child(4) { 
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://i.imgur.com/6FPJeAZ.jpg'); 
}
.hero-slide:nth-child(5) { 
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://i.imgur.com/jyE9Vzf.jpg'); 
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: var(--black);
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

.dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn:hover {
    background: transparent;
    color: var(--primary);
}

/* ========== BRANDS ========== */
.brands {
    background: #FAFAFA;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.brands h2 {
    font-size: 36px;
    margin-bottom: 70px;
    color: var(--black);
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: #E0E0E0;
    border: 1px solid #E0E0E0;
}

.brand-item {
    background: var(--white);
    padding: 50px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: none;
    min-height: 140px;
    position: relative;
}

.brand-item:hover {
    transform: scale(1.02);
    background: var(--light-gray);
    z-index: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--black);
    font-weight: 800;
    letter-spacing: -1px;
}

/* ========== FLEET ========== */
.fleet {
    background: var(--white);
}

.filters {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black);
}

.filter-btn, .seat-btn, .guide-btn {
    background: var(--white);
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-weight: 500;
    display: inline-block;
}

.filter-btn:hover, .seat-btn:hover, .guide-btn:hover {
    border-color: var(--primary);
}

.filter-btn.active, .seat-btn.active, .guide-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

#priceRange {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 10px;
}

#priceRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

#priceRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

#brandFilter {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    background: var(--white);
}

#brandFilter:focus {
    outline: none;
    border-color: var(--primary);
}

.tax-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: #856404;
    margin-bottom: 30px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.vehicle-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
}

.vehicle-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.image-prev,
.image-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: var(--black);
    font-size: 28px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    padding: 0;
}

.vehicle-card:hover .image-prev,
.vehicle-card:hover .image-next {
    opacity: 1;
}

.image-prev:hover,
.image-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.15);
}

.image-prev {
    left: 10px;
}

.image-next {
    right: 10px;
}

.image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.image-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.vehicle-price {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 15px;
}

.view-details-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.view-details-btn:hover {
    background: var(--primary);
    color: var(--black);
}

/* ========== VEHICLE MODAL ========== */
.vehicle-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}

.vehicle-modal-content,
.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 3px solid var(--primary);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 40px;
    border-radius: 17px 17px 0 0;
}

.modal-header h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 32px;
}

.vehicle-specs-large {
    display: flex;
    gap: 30px;
    font-size: 16px;
}

.modal-body {
    padding: 40px;
    background: var(--white);
    color: var(--black);
}

.modal-info {
    color: var(--black);
}

.modal-info h3 {
    color: var(--black);
}

.modal-detail {
    color: var(--black);
}

.vehicle-image-large {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    margin-bottom: 30px;
}

/* Modal Gallery Styles */
.modal-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: var(--primary);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: var(--black);
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    color: var(--primary);
}

.gallery-thumb:hover {
    border-color: var(--gold-light);
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.vehicle-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.modal-body h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.pricing-table {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:last-child {
    color: var(--primary);
    font-weight: bold;
}

.tax-disclaimer {
    background: #fff3cd;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
    margin-bottom: 20px;
}

.btn-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
}

/* ========== CALCULATOR ========== */
.calculator {
    background: var(--light-gray);
}

.calc-form {
    max-width: 800px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-field label {
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-form select,
.calc-form input {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.calc-form select:focus,
.calc-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.calc-form button {
    background: var(--primary);
    color: var(--black);
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.calc-form button:hover {
    background: var(--black);
    color: var(--primary);
}

#calcResult {
    max-width: 800px;
    margin: 0 auto 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
}

.result-item strong {
    color: var(--primary);
    font-size: 24px;
}

.savings {
    background: #d4edda;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #28a745;
}

.tip {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

.delivery-info {
    max-width: 800px;
    margin: 30px auto 0;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary);
    text-align: center;
}

.delivery-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.delivery-info .highlight {
    color: #28a745;
    font-size: 18px;
}

.tax-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* ========== CAR SEARCH SECTION ========== */
.car-search {
    background: var(--light-gray);
    padding: 40px 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--primary);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.search-box input:focus {
    outline: none;
}

.search-btn {
    background: var(--primary);
    border: none;
    padding: 0 30px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: var(--black);
}

/* ========== WHAT'S INCLUDED SECTION ========== */
.whats-included {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 80px 0;
}

.whats-included h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.whats-included .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 50px;
}

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

.included-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.included-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
}

.included-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--primary);
}

.included-icon i {
    font-size: 60px;
}

.included-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

.included-item p {
    color: #ddd;
    line-height: 1.6;
    font-size: 15px;
}

/* ========== REVIEWS ========== */
.reviews {
    background: var(--white);
}

/* ========== UPCOMING EVENTS SECTION ========== */
.upcoming-events {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 80px 0;
}

.upcoming-events h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 42px;
}

.upcoming-events .section-subtitle {
    text-align: center;
    color: var(--gold-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.upcoming-event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.upcoming-event-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
}

.upcoming-event-icon {
    font-size: 50px;
    margin-bottom: 15px;
    text-align: center;
}

.upcoming-event-category {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 15px;
}

.upcoming-event-name {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.upcoming-event-date {
    color: var(--gold-light);
    margin-bottom: 10px;
    font-size: 15px;
}

.upcoming-event-location {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

.upcoming-event-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.upcoming-event-link {
    display: inline-block;
    background: var(--black);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.upcoming-event-link:hover {
    background: var(--primary);
    color: var(--black);
}

.events-cta-link {
    text-align: center;
}

.btn-events {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
    border: 3px solid var(--primary);
}

.btn-events:hover {
    background: transparent;
    color: var(--primary);
    transform: scale(1.05);
}

/* ========== REVIEWS ========== */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stars {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.review-card p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer strong {
    color: var(--black);
    font-size: 16px;
}

.reviewer span {
    color: #999;
    font-size: 14px;
}

/* ========== GUIDE ========== */
.guide {
    background: var(--light-gray);
}

.guide p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.guide-filters {
    text-align: center;
    margin-bottom: 40px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.guide-card .category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.guide-card h3 {
    margin-bottom: 10px;
}

.guide-card .price {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 10px;
}

.guide-card p {
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.gps-btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
}

.gps-btn:hover {
    background: var(--primary);
    color: var(--black);
}

/* ========== CONTACT ========== */
.contact {
    background: var(--white);
}

#contactForm {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--primary);
}

#contactForm button {
    background: var(--primary);
    color: var(--black);
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

#contactForm button:hover {
    background: var(--black);
    color: var(--primary);
}

.contact-info {
    max-width: 800px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.info-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.info-item:hover strong,
.info-item:hover a {
    color: var(--black);
}

.info-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

.info-item a {
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
}

.info-item a:hover {
    color: var(--black);
}

/* ========== FOOTER ========== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-content h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-content a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .main-logo {
        max-width: 90%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 32px;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    section h2 {
        font-size: 32px;
    }
    
    .calc-form {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
