/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Desert-inspired color palette */
    --background: hsl(40, 25%, 97%);
    --foreground: hsl(30, 15%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(30, 15%, 15%);
    --primary: hsl(38, 70%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(35, 45%, 85%);
    --secondary-foreground: hsl(30, 15%, 20%);
    --muted: hsl(40, 20%, 92%);
    --muted-foreground: hsl(30, 10%, 45%);
    --accent: hsl(186, 70%, 45%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(35, 25%, 88%);
    --radius: 0.75rem;

    /* Gradients and Shadows */
    --gradient-hero: linear-gradient(135deg, hsl(38, 70%, 55%) 0%, hsl(25, 75%, 50%) 100%);
    --shadow-warm: 0 10px 40px -10px hsla(38, 70%, 55%, 0.3);
    --shadow-card: 0 4px 20px -4px hsla(30, 15%, 15%, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header Container - Wider */
#header .container {
    max-width: 1600px;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles - Fully Responsive */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: hsla(40, 25%, 97%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.3s;
}

.logo-text {
    display: inline;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.header-search {
    display: none;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted-foreground);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
}

.header-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Button Styles - Responsive */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    white-space: nowrap;
    text-decoration: none;
}

.btn .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

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

.btn-primary:hover {
    background: hsl(38, 70%, 50%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-warm);
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    background: hsl(186, 70%, 40%);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

.btn-call-header {
    background: var(--card);
    color: var(--primary);
    border: 1px solid var(--primary);

}

.btn-call-header:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-whatsapp-header {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-whatsapp-header:hover {
    background: hsl(186, 70%, 40%);
}

.btn-quote {
    background: var(--card);
    color: var(--primary);
    border: 1px solid var(--primary);
}

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

.btn-link {
    background: transparent;
    color: var(--primary);
    text-decoration: underline;
    padding: 0.25rem 0.5rem;
}

.btn-link:hover {
    color: hsl(38, 70%, 45%);
}

.btn-text-desktop {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

/* Hero Section - Fully Responsive */
#hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 6.5rem 0 5rem;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, hsl(40, 25%, 97%), hsl(40, 20%, 95%), hsl(35, 20%, 93%));
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, hsla(38, 70%, 55%, 0.15), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(25, 75%, 50%, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    align-items: start;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
}

.hero-text {
    text-align: left;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.875rem;
    color: hsl(0, 0%, 15%);
}

.hero-title .text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1rem;
    color: hsl(0, 0%, 40%);
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.125rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

.hero-image-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 2.6/1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-height: 220px;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-main:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.image-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    color: white;
    z-index: 2;
    pointer-events: none;
}

.caption-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.caption-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero-image-small {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-height: 140px;
    width: 100%;
    grid-row: 2;
}

.hero-image-small:first-of-type {
    grid-column: 1;
}

.hero-image-small:last-of-type {
    grid-column: 2;
}

.hero-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-small:hover img {
    transform: scale(1.1);
}

.hero-image-small .image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.image-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    line-height: 1.3;
}

.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.5rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars-inline {
    display: flex;
    gap: 0.125rem;
}

.stars-inline .star {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    color: var(--primary);
}

.rating-text {
    font-weight: 700;
    color: hsl(0, 0%, 20%);
    font-size: 0.875rem;
}

.divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.travelers-count {
    font-size: 0.875rem;
    color: hsl(0, 0%, 40%);
    font-weight: 500;
}

.count-bold {
    font-weight: 700;
    color: hsl(0, 0%, 20%);
}

/* Booking Card - Responsive */
.booking-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    height: fit-content;
}

.booking-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.booking-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: hsl(0, 0%, 15%);
    line-height: 1.3;
}


.booking-tabs {
    display: flex;
    gap: 0.5rem;
    background: hsl(0, 0%, 95%);
    padding: 0.375rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: none;
    background: transparent;
    color: hsl(0, 0%, 50%);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: hsl(0, 0%, 20%);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(0, 0%, 20%);
    margin-bottom: 0;
    line-height: 1.4;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid hsl(0, 0%, 85%);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 20%);
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
    line-height: 1.5;
}

.form-group input::placeholder {
    color: hsl(0, 0%, 60%);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(38, 70%, 55%, 0.1);
    background: white;
    outline: none;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: hsl(0, 0%, 50%);
    pointer-events: none;
    z-index: 1;
}

.input-with-icon input {
    padding-left: 2.75rem;
    padding-right: 0.875rem;
}

.form-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 0;
    margin-top: 0.75rem;
}

.pricing-info {
    text-align: center;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid hsl(0, 0%, 90%);
}

.pricing-info p {
    font-size: 0.875rem;
    color: hsl(0, 0%, 45%);
    margin: 0;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0.25rem;
}

.price-unit {
    font-size: 0.875rem;
    color: hsl(0, 0%, 45%);
    font-weight: 400;
}

/* Section Styles */
.section-alt {
    padding: 0rem 0;
    background: hsl(40, 15%, 99%);
    position: relative;
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: hsl(38, 70%, 55%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(0, 0%, 15%);
}

.section-subtitle {
    font-size: 1rem;
    color: hsl(0, 0%, 40%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(38, 70%, 55%, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Section */
#services {
    background: hsl(0, 0%, 99%);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: hsl(0, 0%, 100%);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: hsl(0, 0%, 95%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image .image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.service-price {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
}

.service-content {
    padding: 1.5rem;
    background: hsl(0, 0%, 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: hsl(0, 0%, 15%);
    line-height: 1.3;
}

.service-content p {
    font-size: 0.875rem;
    color: hsl(0, 0%, 40%);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    flex: 1;
}

.service-book-btn {
    width: 100%;
    background: hsl(38, 70%, 55%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-book-btn:hover {
    background: hsl(38, 70%, 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    background: transparent;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.35);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(0, 0%, 20%);
}

.feature-text p {
    font-size: 0.9375rem;
    color: hsl(0, 0%, 35%);
    line-height: 1.6;
    margin: 0;
}

/* Popular Routes Section */
.route-category {
    margin-bottom: 3rem;
}

.route-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.category-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.route-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.route-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--card-foreground);
    line-height: 1.4;
}

.route-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.star-small {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    color: var(--primary);
}

.route-rating span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.route-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.route-label svg {
    width: 12px;
    height: 12px;
}

.route-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.route-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-name {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.875rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating .star {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    color: var(--primary);
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--card-foreground);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.review-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    margin: 0 auto;
    max-width: fit-content;
}

.review-badge .stars {
    display: flex;
    gap: 0.25rem;
}

.review-badge .star {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    color: var(--primary);
}

.review-badge p {
    font-size: 0.875rem;
    color: var(--foreground);
    margin: 0;
}

.review-badge strong {
    color: var(--foreground);
}

.testimonials-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Contact/Lead Form Section */
#contact {
    background: var(--gradient-hero);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card,
.callback-form-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.contact-info-card h3,
.callback-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(0, 0%, 15%);
}

.form-description {
    font-size: 0.875rem;
    color: hsl(0, 0%, 45%);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.contact-item-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem;
    background: hsl(35, 45%, 92%);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    /* Prevents flex item from overflowing */
}

.contact-item-box>div:last-child {
    flex: 1;
    min-width: 0;
    /* Allows text to wrap properly */
}

.contact-item-box:hover {
    background: hsl(35, 45%, 88%);
    box-shadow: 0 2px 8px -2px hsla(0, 0%, 0%, 0.06);
    transform: translateY(-1px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: hsla(38, 70%, 55%, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item-box:hover .contact-icon {
    transform: scale(1.05);
    background: hsla(38, 70%, 55%, 0.18);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-icon-whatsapp {
    background: hsla(142, 70%, 45%, 0.12) !important;
}

.contact-icon-whatsapp svg {
    color: #25D366 !important;
}

.contact-item-box:hover .contact-icon-whatsapp {
    background: hsla(142, 70%, 45%, 0.18) !important;
    transform: scale(1.05);
}

.contact-item-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: hsl(0, 0%, 15%);
}

.contact-item-box p {
    font-size: 0.9375rem;
    color: hsl(0, 0%, 25%);
    margin-bottom: 0.25rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-action {
    font-size: 0.875rem;
    color: var(--primary);
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-item-box:hover .contact-action {
    color: hsl(38, 70%, 50%);
    text-decoration-thickness: 2px;
}

.contact-item-box:nth-child(2) .contact-action {
    color: #25D366;
}

.contact-item-box:nth-child(2):hover .contact-action {
    color: #20BA5A;
    text-decoration-thickness: 2px;
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: hsl(200, 80%, 95%);
    border: none;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
}

.availability-badge .icon {
    width: 20px;
    height: 20px;
    color: hsl(200, 80%, 50%);
    flex-shrink: 0;
}

.availability-badge span {
    font-size: 0.875rem;
    color: hsl(0, 0%, 25%);
}

.availability-badge strong {
    font-weight: 600;
    color: hsl(0, 0%, 15%);
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: hsl(0, 0%, 50%);
    margin: 1.5rem 0 1rem;
}

.form-footer-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0;
}

.required {
    color: hsl(0, 70%, 55%);
}

.textarea-wrapper {
    position: relative;
}

.char-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    color: hsl(0, 0%, 50%);
    background: white;
    padding: 0 0.25rem;
}

.btn-directions,
.btn-callback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp-outline {
    background: white;
    border: 1px solid #25D366;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-whatsapp-outline .icon {
    color: #25D366;
}

.btn-whatsapp-outline:hover .icon {
    color: white;
}

.btn-call-outline {
    background: white;
    border: 1px solid hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-call-outline:hover {
    background: hsl(0, 0%, 60%);
    color: white;
}

.btn-call-outline .icon {
    color: hsl(0, 0%, 60%);
}

.btn-call-outline:hover .icon {
    color: white;
}

/* Gallery Section */
#gallery {
    padding: 4rem 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.gallery-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--foreground);
    font-weight: 500;
}

.gallery-badge-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.gallery-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-tab {
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.gallery-content {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

.gallery-item-large {
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    padding: 1.5rem;
    color: white;
}

.gallery-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Trust Badges Section */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 0;
    padding: 2rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: hsl(40, 20%, 96%);
    border: 2px solid hsl(38, 70%, 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    color: hsl(38, 70%, 50%);
    stroke-width: 2;
}

.badge-item p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(0, 0%, 20%);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.trust-badges-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
#footer {
    background: hsl(30, 15%, 20%);
    color: hsl(40, 25%, 95%);
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: hsl(38, 70%, 55%);
    z-index: 2;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(40, 25%, 95%);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(38, 70%, 55%);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(40, 25%, 95%);
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: hsla(40, 25%, 95%, 0.7);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(30, 15%, 30%);
    border: 1px solid hsla(40, 25%, 95%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(40, 25%, 95%);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: hsl(38, 70%, 55%);
    color: white;
    border-color: hsl(38, 70%, 55%);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: hsla(40, 25%, 95%, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a:hover {
    color: hsl(38, 70%, 55%);
    padding-left: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    color: hsla(40, 25%, 95%, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    margin-bottom: 1rem;
}

.contact-item:hover {
    color: hsl(40, 25%, 95%);
}

.contact-item svg {
    flex-shrink: 0;
    color: hsl(38, 70%, 55%);
    background: hsl(30, 15%, 30%);
    padding: 0.5rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke-width: 2;
}

.contact-item>div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-item strong {
    color: hsl(40, 25%, 95%);
    font-weight: 600;
    display: block;
    font-size: 0.875rem;
}

.contact-item span {
    color: hsla(40, 25%, 95%, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(40, 25%, 95%);
    letter-spacing: 0.05em;
}

.logo-domain {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(40, 25%, 95%);
}

.footer-newsletter-section {
    background: hsl(30, 15%, 25%);
    padding: 2rem 0;
}

.newsletter-box {
    background: hsl(30, 15%, 28%);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    min-width: 250px;
}

.newsletter-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(40, 25%, 95%);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.newsletter-content p {
    font-size: 0.875rem;
    color: hsla(40, 25%, 95%, 0.9);
    margin: 0;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    max-width: 500px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid hsla(40, 25%, 95%, 0.2);
    border-radius: 0.5rem;
    background: hsl(30, 15%, 32%);
    color: hsl(40, 25%, 95%);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input:focus {
    border-color: hsl(38, 70%, 55%);
    background: hsl(30, 15%, 35%);
}

.newsletter-input::placeholder {
    color: hsla(40, 25%, 95%, 0.5);
}

.btn-subscribe {
    padding: 0.875rem 2rem;
    white-space: nowrap;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background: hsl(38, 70%, 55%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: hsl(38, 70%, 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 197, 66, 0.3);
}

.btn-subscribe svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-map-section {
    background: hsl(30, 15%, 25%);
    padding: 2rem 0;

}

.footer-map {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.footer-bottom {
    background: hsl(30, 20%, 15%);
    padding: 1.5rem 0;
    border-top: 1px solid hsla(40, 25%, 95%, 0.1);
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    color: hsla(40, 25%, 95%, 0.8);
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-bottom .footer-links a {
    color: hsla(40, 25%, 95%, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.footer-bottom .footer-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: hsla(40, 25%, 95%, 0.3);
}

.footer-bottom .footer-links a:hover {
    color: hsl(40, 25%, 95%);
}

.form-footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}


.footer-bottom .footer-links a {
    font-size: 0.75rem;
    padding: 0;
}

/* Dialog Styles */
.dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dialog-overlay.active {
    display: flex;
}

.dialog-content {
    background: var(--card);
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.dialog-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--card-foreground);
}

.close-dialog {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.3s;
}

.close-dialog:hover {
    background: var(--muted);
}

.close-dialog svg {
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
}

.dialog-body {
    padding: 1.5rem;
}

.dialog-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Toast Container */
#toast-container {
    position: fixed;
    top: 80px;
    right: 1rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {

    /* Header Responsive Styles */
    #header .container {
        padding: 0 1rem;
    }

    .header-content {
        min-height: 85px;
    }

    .logo {
        height: 70px;
        max-width: 240px;
    }

    #hero {
        padding: 5.5rem 0 3.5rem;
    }

    .trust-badges {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .badge-item {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 200px;
        justify-content: center;
    }

    .hero-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .hero-image-main {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-image-small {
        grid-row: auto;
    }

    .hero-image-small:first-of-type {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-image-small:last-of-type {
        grid-column: 1;
        grid-row: 3;
    }

    .booking-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .form-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-lg {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Contact Section - Mobile Responsive */
    #contact {
        padding: 2.5rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.75rem;
    }

    .contact-info-card,
    .callback-form-card {
        padding: 1.5rem;
        border-radius: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info-card h3,
    .callback-form-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .contact-items {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-item-box {
        padding: 0.875rem;
        gap: 1rem;
        flex-wrap: nowrap;
        align-items: center;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-item-box h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }

    .contact-item-box p {
        font-size: 0.875rem;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-action {
        font-size: 0.8125rem;
        margin-top: 0.375rem;
    }

    .availability-badge {
        padding: 0.875rem 1rem;
        margin-top: 1.25rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .availability-badge .icon {
        width: 18px;
        height: 18px;
    }

    .availability-badge span {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .btn-directions {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        margin-top: 1.25rem;
    }

    .callback-form {
        gap: 1rem;
    }

    .form-description {
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
    }

    .form-footer-text {
        font-size: 0.8125rem;
        margin: 1.25rem 0 0.875rem;
    }

    .form-footer-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .form-footer-buttons .btn {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .textarea-wrapper {
        width: 100%;
    }

    .char-counter {
        font-size: 0.6875rem;
        bottom: 0.625rem;
        right: 0.625rem;
    }
}

/* Extra Small Devices (phones in portrait, less than 480px) */
@media (max-width: 479px) {

    /* Header Extra Small Devices */
    #header .container {
        padding: 0 0.75rem;
    }

    .header-content {
        min-height: 75px;
        gap: 0.5rem;
    }

    .logo {
        height: 60px;
        max-width: 200px;
    }

    .header-buttons {
        gap: 0.375rem;
    }

    .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }

    .btn .icon {
        width: 16px;
        height: 16px;
    }

    #contact {
        padding: 2rem 0;
    }

    .contact-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-info-card,
    .callback-form-card {
        padding: 1.25rem;
        border-radius: 0.875rem;
    }

    .contact-info-card h3,
    .callback-form-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .contact-item-box {
        padding: 0.75rem;
        gap: 0.875rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-item-box h4 {
        font-size: 0.875rem;
    }

    .contact-item-box p {
        font-size: 0.8125rem;
    }

    .contact-action {
        font-size: 0.75rem;
    }

    .btn-directions {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .availability-badge {
        padding: 0.75rem 0.875rem;
        font-size: 0.75rem;
    }

    .form-description {
        font-size: 0.75rem;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .container-fluid {
        padding: 0 2rem;
    }

    .header-search {
        display: block;
    }

    .btn-text-mobile {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 3.5rem;
        align-items: start;
    }

    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-text {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        text-align: left;
        max-width: 100%;
        margin: 0;
        line-height: 1.5;
    }

    .hero-images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 1.125rem;
        width: 100%;
    }

    .hero-image-main {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 320px;
        width: 100%;
    }

    .hero-image-small {
        grid-row: 2;
        min-height: 180px;
        width: 100%;
    }

    .hero-image-small:first-of-type {
        grid-column: 1;
    }

    .hero-image-small:last-of-type {
        grid-column: 2;
    }

    .trust-indicators {
        justify-content: flex-start;
    }

    #hero {
        padding: 7rem 0 5rem;
    }

    .booking-card {
        padding: 2rem;
        position: sticky;
        top: 120px;
        max-width: 520px;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .form-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    #services {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-item {
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        max-width: 1200px;
    }

    .contact-info-card,
    .callback-form-card {
        padding: 2rem;
    }

    .contact-item-box {
        padding: 1.125rem;
        gap: 1.125rem;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
    }

    .form-footer-buttons {
        flex-direction: row;
        gap: 0.875rem;
    }

    .form-footer-buttons .btn {
        flex: 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: 1 / 3;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-wrapper {
        flex-wrap: nowrap;
    }

    .newsletter-content {
        flex: 0 0 auto;
    }

    .newsletter-form {
        flex: 1;
        max-width: 600px;
    }

    .footer-map iframe {
        height: 450px;
    }

    .footer-map-section {
        padding: 2rem 0;
    }

    .footer-bottom .container {
        flex-direction: row;
    }

    .footer-bottom p {
        text-align: left;
    }

    .form-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .newsletter-form {
        flex-direction: row;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-main {
        min-height: 360px;
    }

    .hero-image-small {
        min-height: 200px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .service-image {
        height: 240px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
    }

    .feature-item {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .features-grid .feature-item:nth-child(4) {
        grid-column: 1;
        grid-column-end: 2;
    }

    .features-grid .feature-item:nth-child(5) {
        grid-column: 2;
        grid-column-end: 3;
    }

    .routes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-badges {
        gap: 3rem;
    }
}

/* Responsive Design - Large Desktop */
@media (min-width: 1280px) {
    .container {
        max-width: 1400px !important;
    }

    .container-fluid {
        padding: 0 3rem;
        max-width: 1600px;
    }

    .hero-grid {
        grid-template-columns: 1.45fr 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .booking-card {
        max-width: 520px;
        padding: 2rem;
    }

    .hero-image-main {
        min-height: 280px;
    }

    .hero-image-small {
        min-height: 130px;
    }

    .section-header {
        margin-bottom: 4rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.route-card,
.testimonial-card,
.feature-item {
    animation: fadeIn 0.6s ease-out;
}

.section-title-class {
    display: flex;
    align-items: center;
    /* Perfect vertical alignment */
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section-title-class .section-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.section-title-class h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #ff7b00;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e46e00;
    transform: translateY(-1px);
}

.error-text {
    color: red;
    font-size: 13px;
    margin-top: 4px;
}

.date-picker-icon {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.date-picker-icon:hover {
    opacity: 0.7;
}

/* Make date input clickable */
input[readonly].date-input {
    cursor: pointer;
}

/* Flatpickr calendar styling */
.flatpickr-calendar {
    font-family: inherit;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.flatpickr-day.selected {
    background: #c9a24b !important;
    border-color: #c9a24b !important;
    color: white !important;
}

.flatpickr-day.selected:hover {
    background: #d4af4f !important;
    border-color: #d4af4f !important;
}

.flatpickr-day.today {
    border-color: #c9a24b;
}

.flatpickr-day.today:hover {
    background: #f5f5f0;
}

.flatpickr-months {
    padding: 10px;
}

.flatpickr-month {
    color: #2c3e50;
}

.flatpickr-weekdays {
    background: #f8f9fa;
    padding: 8px 0;
}

.flatpickr-weekday {
    color: #57697e;
    font-weight: 600;
}

.flatpickr-days {
    padding: 5px;
}

.flatpickr-day {
    border-radius: 4px;
    margin: 2px;
}

.flatpickr-day:hover {
    background: #f5f5f0;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ccc;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    fill: #57697e;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    fill: #c9a24b;
}

/* Footer Bottom Styles */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-bottom-text {
    margin: 0;
    text-align: center;
}

.footer-bottom-link {
    color: #c9a24b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom-link:hover {
    color: #d4af5a;
    text-decoration: underline;
}