
/* Block 1 */
.hero-banner {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.75) 0%, rgba(108, 117, 125, 0.65) 100%);
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-background,
.hero-overlay {
    position: absolute;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-cta-button {
    background: linear-gradient(45deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    background: linear-gradient(45deg, #218838 0%, #1abc9c 100%);
}

.hero-cta-button:active {
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-banner {
        height: 75vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-banner {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.travel-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.travel-features::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e7ff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.travel-features .container {
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 69, 19, 0.02) 100%);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-card:hover::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 69, 19, 0.04) 100%);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon-wrapper::before {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
    width: 100px;
    height: 100px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    z-index: 1;
    position: relative;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.feature-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover .stat-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .travel-features {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (max-width: 576px) {
    .features-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
    }
}

/* Block 3 */
.destination-discovery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.discovery-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.discovery-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.destination-spotlight {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: 500px;
    transition: all 0.4s ease;
}

.destination-spotlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-spotlight:hover .spotlight-image {
    transform: scale(1.05);
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.spotlight-content {
    color: white;
    width: 100%;
}

.spotlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.spotlight-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.spotlight-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.spotlight-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.destination-mini {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    height: 230px;
    transition: all 0.3s ease;
}

.destination-mini:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mini-image {
    width: 45%;
    height: 100%;
    object-fit: cover;
}

.mini-content {
    padding: 25px;
    flex: 1;
}

.mini-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.mini-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.mini-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-image {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.card-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-details {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #495057;
}

.detail-item i {
    color: #007bff;
    width: 14px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
}

.card-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

@media (max-width: 768px) {
    .discovery-title {
        font-size: 2.2rem;
    }
    
    .spotlight-overlay {
        padding: 25px;
    }
    
    .spotlight-title {
        font-size: 1.8rem;
    }
    
    .destination-mini {
        flex-direction: column;
        height: auto;
    }
    
    .mini-image {
        width: 100%;
        height: 180px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .card-button {
        text-align: center;
    }
}

/* Block 4 */
.booking-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
}

.booking-form-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    height: 80px;
    width: 100%;
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

.booking-form-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.form-header {
    position: relative;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.form-header-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.form-header:hover .form-header-image {
    transform: scale(1.05);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    padding: 3rem 2.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.form-icon {
    position: absolute;
    left: 1.2rem;
    top: 3.3rem;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.form-group:focus-within .form-icon {
    color: #667eea;
}

.form-benefits {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    color: #10b981;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.benefit-text {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    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;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

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

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

.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf4;
}

.footer-text {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .booking-form-section {
        padding: 3rem 0;
    }
    
    .form-header,
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-header-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .form-header,
    .booking-form {
        padding: 1.5rem 1rem;
    }
    
    .form-control {
        padding: 0.9rem 0.9rem 0.9rem 3rem;
    }
    
    .form-icon {
        left: 1rem;
    }
}
