/* ===== HOMEPAGE SPECIFIC STYLES ===== */

/* Advanced hero section animations */
.hero-section {
        margin: 0 auto;
    align-items: center;
    justify-content: center;
 
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url(../images/trailguide.jpg) no-repeat center center/cover;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 2rem;
       max-width: 1200px;

}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-feature-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
    animation: slideInRight 0.8s ease-out both;
}

.hero-feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-feature-card:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-feature-card:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-feature-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), #4facfe);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-info {
    flex: 1;
}

.feature-info h4 {
    color: var(--primary-text);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.feature-info p {
    color: var(--secondary-text);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-icon-small {
    width: 20px;
    height: 20px;
    margin-top: 0.5rem;
    opacity: 0.6;
}

.feature-icon-small img {
    width: 100%;
    height: 100%;
}

.hero-stats-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), #4facfe);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 161, 198, 0.3);
    margin-top: 1rem;
    animation: slideInRight 0.8s ease-out 0.9s both;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-yellow);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--accent-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.badge-content {
    color: var(--white);
}

.badge-content strong {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.badge-content span {
    font-size: 0.9rem;
    opacity: 0.95;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature cards enhanced styling */
.feature-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 161, 198, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon-svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-icon-svg img {
    width: 100%;
    height: 100%;
    stroke: var(--accent-blue);
}

.feature-card:hover .feature-icon-svg {
    background: var(--accent-blue);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon-svg img {
    filter: brightness(0) invert(1);
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.feature-stats span {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.feature-stats strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.feature-card:nth-child(2) {
    animation: slideInLeft 0.8s ease-out 1s both;
}

.feature-card:nth-child(3) {
    animation: slideInLeft 0.8s ease-out 1.2s both;
}

.feature-card:nth-child(4) {
    animation: slideInLeft 0.8s ease-out 1.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    position: relative;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Route cards advanced effects */
.route-image {
    position: relative;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.route-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.route-card:hover .route-image::before {
    left: 100%;
}

.route-card:nth-child(1) .route-image {
    background: linear-gradient(45deg, var(--accent-blue), #4facfe);
}

.route-card:nth-child(2) .route-image {
    background: linear-gradient(45deg, var(--accent-yellow), #ffecd2);
}

.route-card:nth-child(3) .route-image {
    background: linear-gradient(45deg, var(--primary-text), #667eea);
}

/* Article cards enhanced styling */
.article-card {
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-card:hover {
    border-left-color: var(--accent-blue);
}

.article-card:nth-child(1) {
    border-top-color: var(--accent-blue);
}

.article-card:nth-child(2) {
    border-top-color: var(--accent-yellow);
}

.article-card:nth-child(3) {
    border-top-color: var(--primary-text);
}

.category {
    transition: var(--transition);
}

.article-card:hover .category {
    background: var(--accent-blue);
    color: var(--white);
    transform: scale(1.05);
}

/* Newsletter section enhanced */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: moveGrain 20s linear infinite;
    z-index: -1;
}

@keyframes moveGrain {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.newsletter-form input {
    border: 2px solid transparent;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.15);
}

/* Section transitions */
.features-section,
.popular-routes,
.articles-preview {
    position: relative;
}

.section-header {
    position: relative;
    overflow: hidden;
}

.section-header h2::after {
    animation: expandLine 1s ease-out 1.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Advanced hover effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Loading state for interactive elements */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top: 2px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success states */
.success {
    background: #28a745 !important;
    color: white !important;
}

.error {
    background: #dc3545 !important;
    color: white !important;
}

/* Scroll animations */
@keyframes fadeInOnScroll {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.animated {
    animation: fadeInOnScroll 0.8s ease-out both;
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
  
    
    .feature-card,
    .route-card,
    .article-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .newsletter-section::before {
        display: none;
    }
}

/* Print styles */
@media print {
    .main-header,
    .hero-buttons,
    .newsletter-section,
    .cookie-popup {
        display: none;
    }
    
    .hero-section {
        background: white;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        color: black;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

/* ===== NEW SECTIONS STYLES ===== */

/* Statistics Section */
.statistics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-bg) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.stat-icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    stroke: var(--accent-blue);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    margin: 0.5rem 0 0;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--primary-bg);
}

.gallery-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.gallery-carousel-container {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.gallery-item {
    min-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-content {
    padding: 1.5rem;
    background: var(--white);
}

.gallery-content h3 {
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-content p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.35rem 0.85rem;
    background: var(--light-gray);
    color: var(--accent-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.gallery-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
    left: -25px;
}

.gallery-nav-next {
    right: -25px;
}

.gallery-nav svg {
    stroke: var(--primary-text);
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-indicator.active,
.gallery-indicator:hover {
    background: var(--accent-blue);
    transform: scale(1.3);
}

.gallery-autoplay-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.gallery-autoplay-toggle:hover {
    transform: scale(1.1);
    background: var(--white);
}

.gallery-autoplay-toggle .play-icon,
.gallery-autoplay-toggle .pause-icon {
    color: var(--accent-blue);
}

.gallery-autoplay-toggle .play-icon {
    display: none;
}

.gallery-autoplay-toggle .pause-icon {
    display: block;
}

.gallery-autoplay-toggle:not(.active) .play-icon {
    display: block;
}

.gallery-autoplay-toggle:not(.active) .pause-icon {
    display: none;
}

/* Carousel Section */
.carousel-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--light-gray) 100%);
}

.carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(18, 58, 102, 0.95), transparent);
    color: var(--white);
}

.carousel-caption h3 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.carousel-caption p {
    margin: 0;
    opacity: 0.95;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn svg {
    stroke: var(--primary-text);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active,
.indicator:hover {
    background: var(--accent-blue);
    transform: scale(1.2);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-box {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--accent-blue);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-left-color: var(--accent-yellow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    stroke: var(--accent-blue);
}

.benefit-box h3 {
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.benefit-box > p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-bg) 100%);
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 161, 198, 0.3);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-icon img {
    width: 100%;
    height: 100%;
    stroke: var(--accent-blue);
}

.timeline-content h3 {
    color: var(--primary-text);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.timeline-content p {
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.7;
}

/* Route Cards Enhanced */
.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.route-meta span {
    padding: 0.35rem 0.75rem;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.route-meta .difficulty {
    color: var(--accent-yellow);
    background: rgba(255, 200, 87, 0.2);
}

.route-meta .season {
    color: var(--accent-blue);
    background: rgba(0, 161, 198, 0.1);
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-details img {
    width: 16px;
    height: 16px;
}

/* Article Cards Enhanced */
.article-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.article-icon img {
    width: 100%;
    height: 100%;
    stroke: var(--accent-blue);
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-gray);
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.read-time img {
    width: 16px;
    height: 16px;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 1024px) {
    .gallery-item {
        min-width: calc((100% - 1.5rem) / 2);
    }
    
    .gallery-carousel-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-features {
        order: 2;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-feature-card {
        padding: 1.25rem;
    }
    
    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-stats-badge {
        padding: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-carousel-container {
        border-radius: 12px;
    }
    
    .gallery-item {
        min-width: 100%;
    }
    
    .gallery-carousel-track {
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-content {
        padding: 1.25rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav-prev {
        left: 10px;
    }
    
    .gallery-nav-next {
        right: 10px;
    }
    
    .gallery-autoplay-toggle {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding-left: 0;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: -5px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}