/**
 * Home Page Styles
 */

/* Lazy Loading States */
.lazy-load,
.lazy-bg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.loading,
.loading-bg {
    opacity: 0.5;
    background-color: #f0f0f0;
}

.loaded,
.loaded-bg {
    opacity: 1;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Blur-up effect for images */
.blur-up {
    filter: blur(10px);
    transition: filter 0.3s ease-in-out;
}

.blur-up.loaded {
    filter: blur(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient, linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(249, 115, 22, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-gradient, linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%));
    width: 0%;
    transition: width 0.1s ease;
}

/* Animate on scroll */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hero animation initial state */
.home-hero-title,
.home-hero-description,
.home-hero-ctas {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Trek Search Section */
.trek-search-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.trek-search-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trek-search-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trek-search-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trek-search-subtitle {
    color: #617589;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.trek-search-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trek-search-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: end;
}

@media (min-width: 640px) {
    .trek-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trek-search-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
}

.trek-search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.trek-search-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trek-search-label i {
    color: var(--primary);
    font-size: 0.875rem;
}

.trek-search-input,
.trek-search-select {
    width: 100%;
    height: 3.125rem;
    padding: 0 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.trek-search-input:focus,
.trek-search-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.trek-search-input::placeholder {
    color: #9ca3af;
}

.trek-search-button-field {
    display: flex;
    align-items: flex-end;
}

.trek-search-button {
    width: 100%;
    height: 3.125rem;
    padding: 0 1.5rem;
    background: var(--primary-gradient, linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.trek-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.trek-search-button:active {
    transform: translateY(0);
}

/* Quick Filters */
.trek-quick-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.quick-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #617589;
}

.quick-filter-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-filter-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.quick-filter-btn i {
    font-size: 0.75rem;
}

@media (max-width: 640px) {
    .trek-search-form {
        padding: 1.5rem;
    }
    
    .trek-quick-filters {
        justify-content: center;
    }
}

/* Trek Search Autocomplete */
.trek-search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.trek-search-autocomplete.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.autocomplete-group-label {
    padding: 0.6rem 1rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.autocomplete-group-label i {
    color: var(--primary, #e87b2f);
    font-size: 0.75rem;
}

.autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #fff7ed;
}

.autocomplete-item.no-results {
    color: #9ca3af;
    cursor: default;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    font-size: 0.9rem;
}

.autocomplete-item.no-results:hover {
    background: white;
}

.autocomplete-item.autocomplete-loader {
    color: #9ca3af;
    cursor: default;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
}

.autocomplete-item.autocomplete-loader:hover {
    background: white;
}

.autocomplete-item strong {
    color: var(--primary, #e87b2f);
    font-weight: 700;
}

.autocomplete-thumb {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
}

.autocomplete-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 1.1rem;
}

.autocomplete-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.autocomplete-title {
    font-size: 0.9rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.autocomplete-meta i {
    font-size: 0.7rem;
}

.autocomplete-type-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.autocomplete-type-trek {
    background: #dcfce7;
    color: #166534;
}

.autocomplete-type-tour {
    background: #dbeafe;
    color: #1e40af;
}

.autocomplete-type-mountaineering {
    background: #fef3c7;
    color: #92400e;
}

.autocomplete-view-all {
    padding: 0.75rem 1rem;
    text-align: center;
    border-top: 2px solid #f3f4f6;
    background: #f9fafb;
    border-radius: 0 0 0.75rem 0.75rem;
}

.autocomplete-view-all a {
    color: var(--primary, #e87b2f);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.autocomplete-view-all a:hover {
    color: #c26523;
}

/* Scrollbar styling */
.trek-search-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.trek-search-autocomplete::-webkit-scrollbar-track {
    background: transparent;
}

.trek-search-autocomplete::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.trek-search-autocomplete::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Trek Search Message */
.trek-search-message {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    font-weight: 600;
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero Section */
.home-hero {
    position: relative;
    padding: 2rem 0;
}

.home-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.home-hero-content-wrapper {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .home-hero-content-wrapper {
        padding: 4.5rem;
    }
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.home-hero-text-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .home-hero-title {
        font-size: 3.75rem;
    }
}

.home-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.625;
    max-width: 500px;
}

.home-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary-gradient {
    height: 3.5rem;
    padding: 0 2rem;
    background: var(--primary-gradient, linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%));
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-gradient:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: white !important;
}

.btn-secondary-outline {
    height: 3.5rem;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Section Common */
.home-section {
    padding: 4.5rem 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-header {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #617589;
    font-size: 1rem;
}

/* destination cards */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .destination-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.destination-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 1.5rem;
    cursor: pointer;
}

.destination-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s;
}

.destination-card:hover .destination-card-bg {
    transform: scale(1.1);
}

.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.destination-card-content {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.destination-card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.destination-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.25;
}

.destination-card-link {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Featured Treks */
.featured-treks-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.view-all-link {
    display: none;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s;
}

@media (min-width: 640px) {
    .view-all-link {
        display: flex;
    }
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.trek-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .trek-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .trek-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.trek-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #dbe0e6;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.trek-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.trek-card-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.trek-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.trek-card:hover .trek-card-img {
    transform: scale(1.1);
}

.trek-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    color: white;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trek-badge-hard {
    background: #dc2626;
}

.trek-badge-moderate {
    background: var(--primary-gradient, linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%));
}

.trek-badge-easy {
    background: #16a34a;
}

.trek-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trek-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trek-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #617589;
    font-size: 0.875rem;
}

.trek-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trek-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.trek-price-label {
    color: #617589;
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
}

.trek-price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.trek-arrow-btn {
    padding: 0.75rem;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 0.75rem;
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.trek-card:hover .trek-arrow-btn {
    background: var(--primary-gradient, linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA580C 100%));
    color: white;
}

/* Upcoming Departures */
.departures-section {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.departures-header {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.accent-line {
    width: 5rem;
    height: 0.25rem;
    background: var(--primary-gradient);
    border-radius: 9999px;
    margin: 0.5rem 0;
}

.departures-table-wrap {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid #dbe0e6;
    background: white;
    margin: 0 1rem;
}

.departures-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.departures-table th {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #617589;
    background: rgba(249, 249, 249, 0.5);
    border-bottom: 1px solid #dbe0e6;
}

.departures-table td {
    padding: 1.5rem;
    border-top: 1px solid #dbe0e6;
}

.departure-name {
    font-weight: 700;
}

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

.progress-bar-bg {
    flex: 1;
    height: 0.5rem;
    min-width: 6rem;
    background: #f0f0f0;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
}

.spots-text {
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-join {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-join:hover {
    background: var(--primary-dark);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 1.5rem;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 6rem 0;
    }
}

/* Custom styling for home page carousel */
.home-reviews-carousel {
    max-width: 1280px;
    margin: 0 auto;
}

/* Why Choose Us */
.why-section {
    background: white;
    border-top: 1px solid #f0f2f4;
    padding: 6rem 1.5rem;
}

.why-header {
    max-width: 800px;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

.why-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.why-desc {
    font-size: 1.125rem;
    color: #617589;
    line-height: 1.625;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.why-card {
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #dbe0e6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-icon-wrap {
    width: 4rem;
    height: 4rem;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.why-card:hover .why-icon-wrap {
    background: var(--primary-gradient);
}

.why-card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.why-card-text {
    color: #617589;
    line-height: 1.625;
}

/* FAQs */
.faq-section {
    padding: 6rem 1.5rem;
    border-top: 1px solid #f0f2f4;
}

.faq-header-wrap {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #dbe0e6;
    padding: 0 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-radio {
    display: none;
}

.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    user-select: none;
}

.faq-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    transition: color 0.3s;
}

.faq-icon {
    transition: transform 0.3s, color 0.3s;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.faq-radio:checked~.faq-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
    opacity: 1;
}

.faq-radio:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-radio:checked~.faq-label .faq-item-title {
    color: var(--primary);
}

.faq-text {
    color: #617589;
    line-height: 1.625;
}

/* Stats/CTA Section */
.parallax-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.parallax-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3rem;
    }
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.75rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    max-width: 40rem;
}

.btn-large-cta {
    height: 4rem;
    padding: 0 2.5rem;
    background: transparent;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 1rem;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-large-cta:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}