body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
    color: #1f2937;
}
.section-padding {
    padding: 3rem 1rem;
}
.stats-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 4rem 1rem;
    }
}

.cta-primary {
    background-color: #3B82F6; 
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
    transition: background-color 0.3s ease-in-out;
}
.cta-primary:hover {
    background-color: #2563EB; 
}
.destination-card {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease-in-out;
}

.hero-background {
    background-image: url('https://trendingflightsearch.com/img/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1; 
    overflow: hidden;
    padding-top: 10rem; 
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55); 
    z-index: 2;
}

.shadow-separator-top {
    box-shadow: inset 0 6px 6px -6px rgba(0, 0, 0, 0.1); 
}
#logo-section {
    box-shadow: inset 0 6px 6px -6px rgba(0, 0, 0, 0.15);
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 51; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.25rem;
}
.accordion-content.active {
    max-height: 500px; 
    padding-top: 1.25rem; 
    padding-bottom: 1.25rem; 
}
.accordion-header {
    background-color: #3B82F6; 
    color: white; 
}
.accordion-header svg {
    color: white !important; 
    transition: transform 0.3s ease-in-out;
}
.accordion-header[aria-expanded="true"] svg {
    transform: rotate(45deg);
}
.accordion-header .question-text {
    font-size: 1.125rem; 
    font-weight: 800; 
    color: white; 
}
.accordion-header .text-gray-900 { 
    color: white !important;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.logo-track, .review-track {
    display: flex;
    width: fit-content;
    /* overflow-x: auto; Removed */
    /* -webkit-overflow-scrolling: touch; Removed */
    animation: scroll 60s linear infinite;
}

.logo-track:hover, .review-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* This scrolls exactly one full copy of the content */
    }
}

.logo-container, .review-container {
    display: flex;
    flex-shrink: 0; 
}

.trip-planning-background {
    background-image: url('https://trendingflightsearch.com/img/hero2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    color: white;
    padding: 4rem 1rem;
}
.trip-planning-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.footer-content {
    padding: 0 1rem; 
}
@media (min-width: 768px) {
    .footer-content {
        padding: 0; 
    }
}

form input, form select, p.whitespace-pre-wrap {
    color: #000000;
}