/* Premium LuxeTravel Template CSS - Fully Responsive */

/* Root Variables */
:root {
    --primary-dark: #0a1438;
    --secondary-dark: #2a2f3e;
    --accent-gold: #fa7e5d;
    --accent-gold-light: #e69257;
    --accent-gold-dark: #b8941f;
    --text-light: #ffffff;
    --text-dark: #045ba4;
    --text-gray: #6c757d;
    --text-muted: #8e9aaf;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-overlay: rgba(26, 29, 41, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --border-dark: rgba(26, 29, 41, 0.1);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 12px 40px rgba(212, 123, 55, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    --gradient-overlay: linear-gradient(135deg, rgb(30 33 47 / 50%) 0%, rgb(56 64 89 / 25%) 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--accent-gold);
}

/* Container Responsive */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Buttons - Mobile First */
.btn-premium-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--primary-dark);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
}

.btn-premium-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--text-light);
}

.btn-premium-gold.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 100px;
}

.btn-premium-gold.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 160px;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
}

.btn-premium-outline:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-premium-outline-white.quote {
    margin-top: 8px;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-premium-outline-white.learn {
    margin-top: 16px;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-premium-outline-white:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* Navigation - Mobile First */
.premium-navbar {
    background: var(--primary-dark);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    min-height: 70px;
}

.premium-navbar.scrolled {
    background: var(--primary-dark);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
}

.navbar-brand img {
    height: 50px !important;
    width: auto;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 800;
    font-size: 1.2rem;
}

.brand-text {
    color: var(--text-light);
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.navbar-nav .nav-link.btn-premium-outline {
    margin-left: 0.5rem;
    padding: 8px 16px;
    font-size: 12px;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}



/* Hover effect */
.custom-dropdown-menu .dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
}


/* Hero Section - Mobile First */
.hero-section {
    padding-top: 70px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    min-height: 100vh;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    text-align: center;
    padding: 20px 0;
    padding-top: 47px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

/* Custom Carousel Indicators */
.custom-indicators {
    bottom: 40px;
    margin-bottom: 0;
}

.custom-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 6px;
    transition: var(--transition-smooth);
}

.custom-indicators button.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.feature-card {
    background: var(--bg-white);
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-dark);
    height: 100%;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.feature-card h5 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-dark);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 15px;
}

/* Cars Section */
.cars-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.car-categories {
    margin-bottom: 40px;
}

.car-categories .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.car-categories .nav-pills .nav-link {
    background: transparent;
    border: 2px solid var(--border-dark);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    white-space: nowrap;
}

.car-categories .nav-pills .nav-link.active,
.car-categories .nav-pills .nav-link:hover {
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    color: var(--text-light);
    transform: translateY(-2px);
}

.car-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-dark);
    height: 100%;
    margin-bottom: 20px;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.car-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-gold);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.car-card:hover .car-overlay {
    opacity: 1;
}

.car-content {
    padding: 20px;
}

.car-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.car-features {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-gray);
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Playfair Display', serif;
    justify-content: center;
}

.car-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.car-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Hotels Section */
.hotels-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.hotel-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-dark);
    height: 100%;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center ;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 12px;
}

.rating-stars i {
    color: var(--accent-gold);
    font-size: 10px;
}

.hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.hotel-card:hover .hotel-overlay {
    opacity: 1;
}

.hotel-content {
    padding: 20px;
}

.hotel-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.hotel-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.4;
}

.hotel-amenities {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hotel-amenities span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-gray);
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Playfair Display', serif;
    justify-content: center;
}

.hotel-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.hotel-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

  /* Tours Section */
.tours-section {
    background: var(--primary-dark);
    padding: 80px 0;
    color: var(--text-light);
}

.tours-section .section-title,
.tours-section .section-subtitle {
    color: var(--text-light);
}

.tours-section .section-badge {
    background: var(--bg-glass);
    border-color: var(--border-light);
}

/* New card structure - image top, content below */
.tour-card,
.tour-card-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    height: auto;
    margin-bottom: 20px;
    background: white;
    display: flex;
    flex-direction: column;
}

.tour-card:hover,
.tour-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

/* Image section */
.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-card-large .tour-image {
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image img,
.tour-card-large:hover .tour-image img {
    transform: scale(1.05);
}

/* Light transparent overlay that appears on image hover */
.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Light transparent white overlay */
    opacity: 0;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-overlay,
.tour-card-large:hover .tour-overlay {
    opacity: 1;
}

/* Duration badge */
.tour-duration {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-gold);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Content section below image - always visible with white background */
.tour-content {
    padding: 20px;
    background: white; /* Always white background */
    color: #333;
    position: relative;
    overflow: hidden;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Content is positioned below image due to flex-direction: column on parent */
}

/* Orange background animation from top to bottom on content card hover */
.tour-content::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: all 0.4s ease;
    z-index: 1;
}

.tour-card:hover .tour-content::before,
.tour-card-large:hover .tour-content::before {
    top: 0;
}

/* Keep content text on top and visible */
.tour-content > * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    color: #333; /* Default dark text color */
}

/* Change text color to white on hover */
.tour-card:hover .tour-content > *,
.tour-card-large:hover .tour-content > * {
    color: white;
}

.tour-content h3,
.tour-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tour-content p {
    margin-bottom: 12px;
    opacity: 0.9;
    line-height: 1.4;
    font-size: 14px;
    flex-grow: 1;
}

.tour-price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tour-price-section .btn-premium-gold {
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.tour-card:hover .tour-price-section .btn-premium-gold,
.tour-card-large:hover .tour-price-section .btn-premium-gold {
    background: white;
    color: #ff6b35;
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .tour-card .tour-image {
        height: 220px;
    }
    
    .tour-card-large .tour-image {
        height: 280px;
    }
    
    .tour-content {
        padding: 25px;
    }
    
    .tour-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .tour-content h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .tour-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

@media (min-width: 992px) {
    .tour-card .tour-image {
        height: 240px;
    }
    
    .tour-card-large .tour-image {
        height: 320px;
    }
    
    .tour-content {
        padding: 30px;
    }
    
    .tour-content h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .tour-content h4 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .tour-duration {
        padding: 8px 16px;
        font-size: 12px;
        top: 20px;
        left: 20px;
    }
}
/* CTA Section */
.cta-section {
    background: var(--gradient-gold);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-dark);
    margin-bottom: 30px;
}

.form-floating > .form-control {
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    padding: 16px 12px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-floating > .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-floating > .form-select {
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    padding: 14px 12px;
    font-size: 14px;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.form-floating > .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-info {
    background: var(--primary-dark);
    padding: 30px 20px;
    border-radius: 20px;
    color: var(--text-light);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details h6 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

/* Footer */
.footer-section {
    background: var(--primary-dark);
    padding: 50px 0 20px;
    color: var(--text-light);
}

.footer-brand {
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 16px;
    justify-content: center;
}

.footer-logo img {
    height: 50px !important;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
    font-size: 14px;
}

.social-links a:hover {
    background: var(--gradient-gold);
    transform: translateY(-2px);
}

.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-links h6 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 30px;
}

.footer-newsletter h6 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-size: 14px;
}

.newsletter-form .input-group {
    max-width: 100%;
}

.newsletter-form .form-control {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 12px 0 0 12px;
    color: var(--text-light);
    padding: 10px 12px;
    font-size: 14px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-premium-gold {
    border-radius: 0 12px 12px 0;
    padding: 10px 16px;
    font-size: 12px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 15px;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 15px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* Responsive Breakpoints */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 80%;
        margin-left: 0;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .car-image,
    .hotel-image,
    .tour-card {
        height: 220px;
    }
    
    .tour-card-large {
        height: 350px;
    }
    
    .car-features,
    .hotel-amenities {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .car-price,
    .hotel-price {
        justify-content: flex-start;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .contact-info {
        padding: 35px 25px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-newsletter {
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .premium-navbar {
        padding: 0.75rem 0;
        min-height: 75px;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
        gap: 10px;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 15px;
    }
    
    .navbar-nav .nav-link.btn-premium-outline {
        margin-left: 0.75rem;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-section {
        padding-top: 75px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 32px;
        max-width: 70%;
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        gap: 20px;
    }
    
    .btn-premium-gold {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-premium-gold.btn-lg {
        padding: 18px 36px;
        font-size: 17px;
    }
    
    .custom-indicators {
        bottom: 50px;
    }
    
    .custom-indicators button {
        width: 8px;
        height: 8px;
        /*margin: 0 8px;*/
    }
    
    .features-section,
    .cars-section,
    .hotels-section,
    .tours-section,
    .contact-section {
        padding: 100px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        max-width: 80%;
    }
    
    .section-badge {
        padding: 8px 18px;
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .feature-card {
        padding: 35px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
        font-size: 1.8rem;
    }
    
    .feature-card h5 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    .car-categories .nav-pills .nav-link {
        padding: 12px 24px;
        font-size: 13px;
        margin: 6px;
    }
    
    .car-image,
    .hotel-image {
        height: 240px;
    }
    
    .car-content,
    .hotel-content {
        padding: 25px;
    }
    
    .car-content h5,
    .hotel-content h5 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    
    .car-features,
    .hotel-amenities {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .car-features span,
    .hotel-amenities span {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .car-price .price,
    .hotel-price .price {
        font-size: 1.8rem;
    }
    
    .car-badge {
        padding: 8px 14px;
        font-size: 11px;
        top: 14px;
        left: 14px;
    }
    
    .hotel-rating {
        padding: 8px 12px;
        top: 14px;
        right: 14px;
    }
    
    .rating-stars i {
        font-size: 11px;
    }
    
    .hotel-location {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .tour-card-large {
        height: 400px;
    }
    
    .tour-card {
        height: 240px;
    }
    
    .tour-duration {
        padding: 8px 14px;
        font-size: 11px;
        top: 14px;
        left: 14px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .tour-content h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .tour-content h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .tour-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .tour-features {
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .tour-features span {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .tour-price {
        font-size: 1.8rem;
    }
    
    .tour-period {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 32px;
        max-width: 80%;
    }
    
    .contact-form {
        padding: 40px 30px;
        margin-bottom: 0;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .contact-item {
        gap: 18px;
        margin-bottom: 28px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h6 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-details p {
        font-size: 15px;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        padding: 18px 14px;
        font-size: 15px;
    }
    
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .footer-logo img {
        height: 60px !important;
    }
    
    .footer-brand p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    .footer-links h6,
    .footer-newsletter h6 {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .footer-links ul li a,
    .footer-newsletter p {
        font-size: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .newsletter-form .form-control {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .newsletter-form .btn-premium-gold {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .footer-copyright p,
    .footer-legal a {
        font-size: 15px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .premium-navbar {
        padding: 1rem 0;
        min-height: 81px;
    }
    
    
    .navbar-brand {
        font-size: 1.8rem;
        gap: 12px;
    }
    
    .navbar-brand img {
        height: 70px !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 16px;
    }
    
    .navbar-nav .nav-link.btn-premium-outline {
        margin-left: 1rem;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-section {
        padding-top: 81px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
        max-width: 60%;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .custom-indicators {
        bottom: 60px;
    }
    
    .features-section,
    .cars-section,
    .hotels-section,
    .tours-section,
    .contact-section {
        padding: 120px 0;
    }
    
    .cta-section {
        padding: 100px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        max-width: 70%;
    }
    
    .feature-card {
        padding: 40px 25px;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        font-size: 2rem;
    }
    
    .car-categories .nav-pills .nav-link {
        padding: 14px 28px;
        font-size: 14px;
        margin: 8px;
    }
    
    .car-image,
    .hotel-image {
        height: 250px;
    }
    
    .car-card:hover,
    .hotel-card:hover {
        transform: translateY(-15px);
    }
    
    .car-content,
    .hotel-content {
        padding: 30px;
    }
    
    .car-content h5,
    .hotel-content h5 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .car-features,
    .hotel-amenities {
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .car-features span,
    .hotel-amenities span {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .car-price .price,
    .hotel-price .price {
        font-size: 2rem;
    }
    
    .car-badge {
        padding: 8px 16px;
        font-size: 12px;
        top: 16px;
        left: 16px;
    }
    
    .hotel-rating {
        padding: 8px 12px;
        top: 16px;
        right: 16px;
    }
    
    .rating-stars i {
        font-size: 12px;
    }
    
    .hotel-location {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .hotel-card {
        width: 100%;
    }
    
    .tour-card-large {
        height: 500px;
    }
    
    .tour-card {
        height: 260px;
    }
    
    .tour-card:hover,
    .tour-card-large:hover {
        transform: translateY(-10px);
    }
    
    .tour-duration {
        padding: 8px 16px;
        font-size: 12px;
        top: 20px;
        left: 20px;
    }
    
    .tour-content h3 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .tour-content h4 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .tour-content p {
        margin-bottom: 20px;
    }
    
    .tour-features {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .tour-features span {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .tour-price {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-subtitle {
        max-width: 70%;
    }
    
    .contact-item {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-legal {
        justify-content: flex-end;
    }
    
    .footer-copyright {
        text-align: left;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 55%;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
        max-width: 100%;
    }
    
    .tour-card-large {
        height: 550px;
    }
}

/* Extra Extra large devices (1400px and up) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 4.5rem;
    }
    
    .cta-title {
        font-size: 4rem;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Improve touch targets for mobile */
@media (max-width: 767px) {
    .navbar-toggler {
        padding: 8px 12px;
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn-premium-gold,
    .btn-premium-outline {
        min-height: 44px;
        min-width: 44px;
    }
    
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
    }
    
    .hero-section {
        min-height: 60vh; /* Smaller height on mobile */
        padding-top: 70px;
    }
    
    .carousel,
    .carousel-inner,
    .carousel-item {
        min-height: 60vh;
    }
    
    /* Center content vertically and horizontally */
    .hero-content {
        text-align: center;
        padding: 30px 15px;
        padding-top: 40px;
    }
    
    /* Adjust text sizes for mobile */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    /* Adjust button spacing */
    .hero-buttons {
        margin-top: 20px;
    }
    
    .btn-premium-gold {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    /* Smaller carousel indicators */
    .custom-indicators {
        bottom: 20px;
    }
    
    .custom-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .custom-indicators button.active {
        transform: scale(1.3);
    }
}
    .custom-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
        min-height: 8px;
        min-width: 8px;
        border-radius: 50%;
    }
    
    .custom-indicators button.active {
        transform: scale(1.3);
    }
}

/* Print styles */
@media print {
    .hero-section,
    .premium-navbar,
    .footer-section,
    .btn-premium-gold,
    .btn-premium-outline {
        display: none !important;
    }
    
    body {
        color: #000 !important;
        background: #fff !important;
        font-size: 12pt;
    }
    
    .section-title {
        font-size: 18pt;
        color: #000 !important;
    }
    
    .car-card,
    .hotel-card,
    .tour-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-dark: rgba(0, 0, 0, 0.5);
        --border-light: rgba(255, 255, 255, 0.8);
        --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.5);
    }
    
    .btn-premium-gold,
    .btn-premium-outline {
        border-width: 3px;
    }
    
    .car-card,
    .hotel-card,
    .tour-card,
    .feature-card,
    .contact-form,
    .contact-info {
        border-width: 2px;
    }
}