/* === CAMP PAGE STYLES === */
/* Mobile-first approach with enhanced CRO features and postcard ratio (3:2) */

/* === BASE STYLES === */
body {
    font-family: 'Lato', sans-serif;
    color: #2B2823;
    background-color: #F4F3F0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch optimization for mobile */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: rgba(216, 168, 27, 0.3);
        touch-action: manipulation;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* === LEAD MAGNET BAR === */
.lead-magnet-bar {
    background: linear-gradient(90deg, #4CAF50, #45A049);
    color: white;
    padding: 0.875rem 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.lead-magnet-text {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.4;
}

.lead-magnet-btn {
    background: white;
    color: #45A049;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px; /* iOS touch target minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lead-magnet-btn:hover,
.lead-magnet-btn:active {
    background: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .lead-magnet-text {
        font-size: 0.8125rem;
    }

    .lead-magnet-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* === HERO SECTION === */
.hero-free {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Image with gradient fallback - image loads on top, gradient shows if image fails */
    background: linear-gradient(135deg, rgba(216, 168, 27, 0.85) 0%, rgba(43, 40, 35, 0.95) 100%),
                url('https://opanije.com/wp-content/uploads/2025/10/88183234_2947458988638743_8709105572093362176_n-e1761267183610.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 1rem 60px;
    color: #fff;
}

/* Disable parallax on mobile for better performance */
@media (min-width: 1024px) {
    .hero-free {
        background-attachment: fixed;
        padding: 100px 0 80px;
    }
}

/* Light overlay for better text readability - much more subtle */
.hero-free::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-free h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

/* Month Selector in Hero */
.month-selector-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin: 1.5rem 0;
}

.month-btn-hero {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
    min-height: 44px; /* iOS touch target */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.month-btn-hero:hover,
.month-btn-hero:active {
    background: rgba(255, 255, 255, 0.2);
}

.month-btn-hero.active {
    background: #d8a81b;
    border-color: #d8a81b;
    box-shadow: 0 2px 8px rgba(216, 168, 27, 0.4);
}

@media (min-width: 768px) {
    .month-selector-hero {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

.hero-dates {
    font-size: 1.25rem;
    color: #ffc727;
    margin: 1rem 0;
    pointer-events: none; /* Prevent blocking month button clicks */
}

.hero-highlight {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-style: italic;
    pointer-events: none; /* Prevent blocking month button clicks */
}

.hero-free p {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-free strong {
    color: #ffc727;
    font-weight: 700;
}

/* === TRUST BADGE === */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #2B2823;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trust-badge::before {
    content: '✓';
    background: #28a745;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* === CTA BUTTONS === */
.cta-group {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.btn-primary-gold {
    background-color: #d8a81b;
    color: #2B2823;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px; /* Touch target */
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 6px 20px rgba(216, 168, 27, 0.35);
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-primary-gold {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        display: inline-block;
    }
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-gold:hover {
    background-color: #b7780d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 168, 27, 0.5);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary-outline:hover {
    background-color: #fff;
    color: #2B2823;
    transform: translateY(-2px);
}

/* === LEAD CAPTURE SECTION === */
.lead-capture-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.lead-capture-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lead-capture-box h2 {
    font-size: 2rem;
    color: #2B2823;
    margin-bottom: 1rem;
}

.lead-capture-box p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.btn-lead-capture {
    background: #d8a81b;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lead-capture:hover {
    background: #b7780d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(216, 168, 27, 0.3);
}

.lead-capture-box small {
    display: block;
    margin-top: 1rem;
    color: #999;
}

/* === SECTIONS === */
.section-light {
    padding: 3rem 1rem;
    background-color: #fff;
}

.section-gray {
    padding: 3rem 1rem;
    background-color: #F7F7F7;
}

.section-dark {
    padding: 3rem 1rem;
    background-color: #2B2823;
    color: #fff;
}

@media (min-width: 768px) {
    .section-light,
    .section-gray,
    .section-dark {
        padding: 5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .section-light,
    .section-gray,
    .section-dark {
        padding: 100px 0;
    }
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d8a81b;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: #d2ab68;
}

/* === FEATURE CARDS === */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 3.5rem;
    }

    .feature-card {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d8a81b, #ffc727);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Only apply hover effects on devices with hover capability */
@media (hover: hover) and (pointer: fine) {
    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
        border-color: #d8a81b;
    }

    .feature-card:hover .icon {
        transform: scale(1.1);
    }
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #d8a81b;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .feature-card .icon {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }
}

.feature-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2B2823;
}

.feature-card p {
    font-size: 1.08rem;
    color: #666;
    line-height: 1.7;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 3rem 1rem;
    background: white;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #F7F7F7;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
}

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

    .testimonials-grid {
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
}

.testimonial-name {
    font-weight: 700;
    color: #2B2823;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #6B7280;
}

/* === TEAM CARDS (SWIPER) === */
#team .swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

#team .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: auto;
}

.team-card {
    text-align: center;
    padding: 0;
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Postcard ratio (3:2) for team card images */
.team-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: top;
    border-bottom: 3px solid #d8a81b;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 3 / 2) {
    .team-card img {
        height: 200px;
    }
}

@media (min-width: 768px) {
    #team .swiper-slide {
        width: 350px;
    }

    @supports not (aspect-ratio: 3 / 2) {
        .team-card img {
            height: 233px;
        }
    }
}

.team-card-content {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.team-card-content h5 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2B2823;
    margin-bottom: 0.5rem;
}

.team-card-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #d8a81b;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* === PACKAGE COMPARISON === */
.package-comparison-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thin;
    scrollbar-color: #d8a81b rgba(255, 255, 255, 0.3);
}

/* Custom scrollbar for webkit browsers */
.package-comparison-wrapper::-webkit-scrollbar {
    height: 8px;
}

.package-comparison-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.package-comparison-wrapper::-webkit-scrollbar-thumb {
    background: #d8a81b;
    border-radius: 10px;
}

.package-comparison-table {
    width: 100%;
    min-width: 600px; /* Ensure horizontal scroll on small screens */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-comparison-table th,
.package-comparison-table td {
    padding: 0.875rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .package-comparison-wrapper {
        margin: 3rem 0;
    }

    .package-comparison-table {
        min-width: 100%;
    }

    .package-comparison-table th,
    .package-comparison-table td {
        padding: 1.25rem;
        font-size: 1rem;
    }
}

.package-comparison-table th {
    background: #d8a81b;
    font-weight: 700;
    color: #2B2823;
}

.package-comparison-table th.featured {
    background: #b7780d;
    color: #fff;
}

.package-comparison-table .price {
    display: block;
    font-size: 1.5rem;
    color: #ffc727;
    margin-top: 0.5rem;
}

.package-comparison-table tbody td {
    background: white;
    color: #000000 !important;
}

.package-comparison-table tbody td:first-child {
    color: #000000 !important;
    background: #F7F7F7;
    font-weight: 600;
}

.package-comparison-table tbody tr:hover td {
    background: #F9F9F9;
}

.package-cta {
    text-align: center;
    margin-top: 3rem;
}

.trust-text {
    color: #4B5563;
    margin-top: 1rem;
}

/* === ITINERARY SECTION === */
.itinerary-selector {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.month-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.month-tab {
    background: #F7F7F7;
    border: 2px solid #E5E7EB;
    padding: 0.875rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-height: 44px; /* Touch target */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (hover: hover) and (pointer: fine) {
    .month-tab:hover {
        border-color: #d8a81b;
    }
}

.month-tab.active {
    background: #d8a81b;
    color: white;
    border-color: #d8a81b;
    box-shadow: 0 2px 8px rgba(216, 168, 27, 0.4);
}

@media (min-width: 768px) {
    .itinerary-selector {
        margin: 0 auto 3rem;
    }

    .month-tabs {
        gap: 0.75rem;
    }

    .month-tab {
        padding: 1rem;
    }
}

.month-name {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.month-dates {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.month-event {
    display: block;
    font-size: 0.6875rem;
    opacity: 0.8;
}

.duration-selector {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.duration-btn {
    background: white;
    border: 2px solid #E5E7EB;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    min-height: 44px; /* Touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
    .duration-btn:hover {
        border-color: #d8a81b;
    }
}

.duration-btn.active {
    background: #d8a81b;
    color: white;
    border-color: #d8a81b;
    box-shadow: 0 2px 8px rgba(216, 168, 27, 0.4);
}

@media (min-width: 768px) {
    .month-name {
        font-size: 1rem;
    }

    .month-dates {
        font-size: 0.875rem;
    }

    .month-event {
        font-size: 0.75rem;
    }

    .duration-btn {
        padding: 0.75rem 2rem;
    }
}

.itinerary-content {
    max-width: 900px;
    margin: 0 auto;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 3rem;
}

.itinerary-header h3 {
    font-size: 1.75rem;
    color: #2B2823;
    margin-bottom: 0.5rem;
}

.itinerary-theme {
    color: #6B7280;
    font-style: italic;
}

.itinerary-timeline {
    position: relative;
    padding: 0 1rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #d8a81b;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    background: #F7F7F7;
    padding: 1.25rem;
    border-radius: 10px;
    margin-left: 2rem;
}

.timeline-content h4 {
    font-size: 1.125rem;
    color: #d8a81b;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}

/* === FINAL CTA SECTION === */
.camp-banner {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #2B2823, #1A1815);
    color: white;
    text-align: center;
}

.camp-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-text {
    font-size: 1.25rem;
    color: #ffc727;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .trust-badges {
        gap: 2rem;
    }
}

.payment-badge,
.security-badge {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .payment-badge,
    .security-badge {
        height: 40px;
        font-size: 1rem;
    }
}

.payment-badge:hover,
.security-badge:hover {
    opacity: 1;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .trust-features {
        gap: 2rem;
        font-size: 1rem;
    }
}

.trust-feature {
    color: rgba(255, 255, 255, 0.9);
}

.cta-wrapper {
    margin: 3rem 0;
}

.btn-final-cta {
    background: #d8a81b;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-final-cta:hover {
    background: #b7780d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 168, 27, 0.4);
}

.contact-options p {
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-method {
    color: #ffc727;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method:hover {
    color: white;
}

/* === FLOATING HELP === */
.floating-help {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 40;
}

.help-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d8a81b;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.help-button:hover {
    background: #b7780d;
    transform: scale(1.1);
}

.help-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s;
    min-width: 220px;
}

.help-menu.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.help-header {
    background: #d8a81b;
    color: white;
    padding: 0.75rem;
    font-weight: 700;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    color: #2B2823;
    transition: background 0.3s;
}

.help-option:hover {
    background: #F7F7F7;
}

/* === LEAD MODAL === */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
}

.modal.visible {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.lead-modal-content {
    padding: 2.5rem;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    font-size: 1.75rem;
    color: #2B2823;
    margin-bottom: 1rem;
}

.modal p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.guide-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.guide-benefits li {
    padding: 0.5rem 0;
    color: #4B5563;
}

#leadCaptureForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#leadCaptureForm input {
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
}

#leadCaptureForm input:focus {
    outline: none;
    border-color: #d8a81b;
}

.btn-submit {
    background: #d8a81b;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.privacy-notice {
    font-size: 0.875rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
}

/* === FLOATING CTA BUTTON === */
.floating-cta {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: #d8a81b;
    color: #2B2823;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none;
    min-height: 44px;
}

.floating-cta.show {
    display: flex;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #c49517;
}

.floating-cta:focus {
    outline: 2px solid #d8a81b;
    outline-offset: 2px;
}

.floating-cta-text {
    color: #2B2823;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
}

.floating-cta-icon {
    font-size: 1.25rem;
    color: #2B2823;
    font-weight: 700;
}

/* Mobile adjustments for floating button */
@media (max-width: 767px) {
    .floating-cta {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }

    .floating-cta-text {
        font-size: 0.875rem;
    }

    .floating-cta-icon {
        font-size: 1rem;
    }
}

/* === UTILITY CLASSES === */
.modal-open {
    overflow: hidden;
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* === RESPONSIVE DESIGN === */
@media (min-width: 768px) {
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Month Tabs */
    .month-tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Timeline Alternating */
    .timeline-item.left .timeline-content {
        margin-left: 0;
        margin-right: calc(50% + 2rem);
    }

    .timeline-item.right .timeline-content {
        margin-left: calc(50% + 2rem);
        margin-right: 0;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Lead Capture Box */
    .lead-capture-box {
        padding: 4rem 3rem;
    }
}

/* Graceful fallback for missing images */
.testimonial-author img,
.team-card img {
    background: linear-gradient(135deg, #d8a81b, #ffc727);
    object-fit: cover;
}

.payment-badge,
.security-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

/* Hide broken images gracefully */
img[alt]:not([src]),
img[src=""],
img:not([src]) {
    display: inline-block;
    position: relative;
}

img[alt]:not([src])::before,
img[src=""]::before,
img:not([src])::before {
    content: attr(alt);
    display: block;
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}