
/* Block 1 */
.hero-banner {
        background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 4rem 2rem;
    }

    .hero-banner::before {
        content: '';
        background-image: url('budget-background.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.15;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .hero-overlay {
        background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                   radial-gradient(circle at 70% 30%, rgba(147, 51, 234, 0.3) 0%, transparent 50%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
    }

    .hero-content {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 3;
    }

    .hero-text {
        color: white;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        color: #e2e8f0;
        font-weight: 400;
        max-width: 90%;
    }

    .hero-cta-btn {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hero-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    }

    .hero-cta-btn:active {
        transform: translateY(0);
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-img {
        width: 100%;
        max-width: 450px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        border: 3px solid rgba(255, 255, 255, 0.1);
    }

    .hero-img:hover {
        transform: scale(1.02);
    }

    @media (max-width: 968px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 3rem;
            text-align: center;
        }

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

        .hero-description {
            max-width: 100%;
            font-size: 1.1rem;
        }
    }

    @media (max-width: 768px) {
        .hero-banner {
            padding: 3rem 1rem;
            min-height: 70vh;
        }

        .hero-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .hero-cta-btn {
            font-size: 1rem;
            padding: 0.875rem 2rem;
        }

        .hero-content {
            gap: 2rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }

        .hero-cta-btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
        }
    }

/* Block 2 */
.budget-insights-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.insights-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insights-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.insight-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.primary-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.primary-card .card-title,
.primary-card .card-description {
    color: white;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.category-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-bar {
    height: 8px;
    border-radius: 4px;
    position: relative;
}

.category-bar.accommodation {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 35%);
    width: 35%;
}

.category-bar.food {
    background: linear-gradient(90deg, #10b981 0%, #059669 28%);
    width: 28%;
}

.category-bar.transport {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 22%);
    width: 22%;
}

.category-bar.activities {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 15%);
    width: 15%;
}

.insights-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
}

.button-icon {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.cta-button:hover .button-icon {
    transform: translateX(4px);
}

.cta-image {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .primary-card {
        grid-column: span 1;
    }
    
    .insights-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .budget-insights-section {
        padding: 3rem 0;
    }
    
    .insights-container {
        padding: 0 1rem;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-subtitle {
        font-size: 1.125rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-card {
        padding: 1.5rem;
    }
    
    .insights-cta {
        padding: 2rem;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .card-stats {
        gap: 1rem;
    }
}

/* Block 3 */
.travel-destinations-showcase {
            padding: 5rem 0;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }
        
        .travel-destinations-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: radial-gradient(ellipse at center top, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .destinations-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }
        
        .destinations-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .destinations-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .destinations-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }
        
        .destination-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e2e8f0;
        }
        
        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        .featured-destination {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .destination-image-wrapper {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .featured-destination .destination-image-wrapper {
            height: auto;
            min-height: 300px;
        }
        
        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .destination-card:hover .destination-image {
            transform: scale(1.08);
        }
        
        .destination-badge,
        .destination-savings,
        .destination-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
        }
        
        .destination-badge {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .destination-savings {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        
        .destination-tag {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }
        
        .destination-info {
            padding: 1.5rem;
        }
        
        .destination-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .destination-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
        }
        
        .destination-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .rating-stars {
            color: #fbbf24;
            font-size: 0.9rem;
        }
        
        .rating-score {
            font-size: 0.9rem;
            font-weight: 600;
            color: #4b5563;
        }
        
        .budget-breakdown {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #e2e8f0;
        }
        
        .budget-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .budget-item:last-child {
            margin-bottom: 0;
        }
        
        .budget-label {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .budget-amount {
            font-size: 0.9rem;
            font-weight: 700;
            color: #2563eb;
        }
        
        .destination-description {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
        }
        
        .budget-calculator-widget {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            border-radius: 20px;
            padding: 3rem;
            color: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .calculator-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        
        .calculator-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .calculator-inputs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .input-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .input-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .input-field {
            padding: 0.75rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
        }
        
        .input-field option {
            background: #1d4ed8;
            color: white;
        }
        
        .calculate-button {
            background: white;
            color: #2563eb;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .calculate-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: #f8fafc;
        }
        
        .calculator-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .calculator-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        @media (max-width: 1024px) {
            .featured-destination {
                grid-column: span 1;
                display: block;
            }
            
            .budget-calculator-widget {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .calculator-inputs {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .travel-destinations-showcase {
                padding: 3rem 0;
            }
            
            .destinations-container {
                padding: 0 1rem;
            }
            
            .destinations-title {
                font-size: 2rem;
            }
            
            .destinations-subtitle {
                font-size: 1rem;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }
            
            .budget-calculator-widget {
                padding: 2rem;
            }
            
            .calculator-title {
                font-size: 1.5rem;
            }
        }

/* Block 4 */
.order-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: url('travel-pattern-bg.svg') repeat;
    opacity: 0.03;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 12px;
    z-index: 10;
}

.icon-img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.form-benefits {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.benefits-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #1e40af;
}

.check-icon {
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.submit-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.button-content {
    flex: 1;
}

.button-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

.form-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-content {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.main-visual {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stat-bubble {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #f1f5f9;
}

.stat-1 {
    position: absolute;
    top: 15%;
    left: -15%;
    animation: float1 3s ease-in-out infinite;
}

.stat-2 {
    position: absolute;
    top: 50%;
    right: -10%;
    animation: float2 3s ease-in-out infinite 1s;
}

.stat-3 {
    position: absolute;
    bottom: 20%;
    left: -10%;
    animation: float3 3s ease-in-out infinite 2s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-8px) translateX(-5px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.stat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.2;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.trust-icon {
    width: 24px;
    height: 24px;
}

.trust-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 992px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .floating-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 0 1rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-bubble {
        padding: 0.75rem 1rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .form-header {
        margin-bottom: 2rem;
    }
    
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
