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

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(25, 25, 25, 0.7) 100%);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
  color: white;
  text-align: left;
}

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

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

.hero-cta {
  display: inline-block;
  background: linear-gradient(45deg, #0d6efd, #6f42c1);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-text {
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.experience-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.experience-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.experience-card:hover .card-image {
    transform: scale(1.05);
}

.experience-content {
    padding: 30px;
}

.experience-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.experience-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.experience-details {
    margin-bottom: 24px;
}

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

.detail-item i {
    width: 16px;
    margin-right: 12px;
    color: #0d6efd;
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-from {
    font-size: 0.875rem;
    color: #6c757d;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.experience-btn {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.experience-btn:hover {
    background: linear-gradient(90deg, #0b5ed7, #5a0db3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .featured-experiences {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .experience-content {
        padding: 24px;
    }
    
    .featured-stats {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .experience-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .experience-btn {
        text-align: center;
    }
}

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

.premium-venues .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-venues .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.premium-venues .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.venues-showcase {
    margin-bottom: 60px;
}

.venue-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.venue-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.venue-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-main:hover .venue-main-image {
    transform: scale(1.05);
}

.venue-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.venue-main-content {
    padding: 20px;
}

.venue-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.venue-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.venue-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-item i {
    color: #0d6efd;
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: #495057;
    font-weight: 500;
}

.venue-explore-btn {
    display: inline-block;
    background: linear-gradient(45deg, #0d6efd, #0056b3);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.venue-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,110,253,0.3);
    color: white;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.venue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.venue-card-image {
    overflow: hidden;
    height: 220px;
}

.venue-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.venue-card-content {
    padding: 25px;
}

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

.venue-card-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.venue-capacity {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.venue-type {
    background: #f3e5f5;
    color: #7b1fa2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.venue-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.amenity-item {
    text-align: center;
    padding: 20px;
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-icon i {
    font-size: 2rem;
    color: white;
}

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

.amenity-text {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .venue-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
    }
    
    .premium-venues .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .premium-venues {
        padding: 60px 0;
    }
    
    .venue-main {
        padding: 20px;
    }
    
    .venue-main-image {
        height: 300px;
    }
    
    .venue-title {
        font-size: 1.8rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-amenities {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }
}

/* Block 4 */
.booking-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-visual {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-20px);
}

.booking-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.booking-benefits {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #495057;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.booking-form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(20px);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
    margin-bottom: 5px;
}

.form-input {
    padding: 18px 55px 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #495057;
}

.form-input:focus {
    outline: none;
    border-color: #0d6efd;
    background: white;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}

.form-icon {
    position: absolute;
    right: 20px;
    top: 50px;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.booking-submit-btn {
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: white;
    border: none;
    padding: 20px 40px;
    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: 15px;
    margin-top: 20px;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13,110,253,0.3);
}

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

.booking-assurance {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.assurance-text {
    color: #6c757d;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.assurance-text i {
    color: #28a745;
}

@media (max-width: 992px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-visual, .booking-form-container {
        transform: none;
    }
    
    .booking-title {
        font-size: 2.5rem;
    }
    
    .booking-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .booking-form-section {
        padding: 60px 0;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-form-container {
        padding: 30px;
    }
    
    .booking-benefits {
        padding: 30px;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 16px 50px 16px 18px;
    }
}

@media (max-width: 576px) {
    .booking-content {
        gap: 30px;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .booking-benefits {
        padding: 25px;
        gap: 20px;
    }
    
    .form-group {
        gap: 25px;
    }
    
    .benefit-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
