.itinerary-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/zanzibar-beach-honeymoon.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: zoomEffect 20s ease infinite;
}

@keyframes zoomEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin-bottom: 80px;
  padding: 2rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-container {
  position: relative;
}

.hero-title {
  font-family: 'Finger Paint', cursive;
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, #c9ab63, transparent);
  margin: 1.5rem auto;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 0.3rem;
}

.detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0f0f0;
}

.cta-button {
  font-family: 'Poppins', sans-serif;
  background: transparent;
  color: white;
  border: 2px solid #c9ab63;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #c9ab63;
  color: #0a192f;
}

.cta-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.cta-button:hover:after {
  left: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.arrow {
  width: 2px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  position: relative;
}

.arrow:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-details {
    gap: 2rem;
  }
  
  .detail-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-details {
    gap: 1.5rem;
  }
  
  .detail-number {
    font-size: 1.5rem;
  }
  
  .detail-label {
    font-size: 0.8rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}

/* Reset and Base Styles */
.premium-tabs * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.premium-tabs {
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
}

/* Tabs Header */
.tabs-header {
    display: flex;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab {
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab:hover {
    color: #e67e22;
}

.tab.active {
    color: #e67e22;
}

.tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 110px;
    background-color: #e67e22;
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
}

/* Tabs Content */
.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* General Tab Styles */
.general-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.general-left {
    flex: 1;
}

.general-right {
    flex: 1;
}

.overview-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #7a4a2b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.general-heading {
    font-family: 'Finger Paint', cursive;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.general-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.general-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.general-image:hover {
    transform: scale(1.03);
}

/* Itinerary Tab Styles */
.day-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.day-item:last-child {
    border-bottom: none;
}

.day-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.day-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.accommodations h4 {
    font-size: 18px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Updated Hotel Card Styles */
.hotel-card {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    color: white;
}

.hotel-type {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.hotel-type.budget {
    background: #ff7675;
}

.hotel-type.midrange {
    background: #74b9ff;
}

.hotel-type.luxury {
    background: #55efc4;
    color: #2d3436;
}

.hotel-overlay h5 {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 600;
}

/* Inclusion & Exclusions Tab Styles */
.inclusion-exclusion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.list-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e67e22;
}

.inclusion-list, .exclusion-list {
    list-style: none;
}

.inclusion-list li, .exclusion-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.inclusion-list li:last-child, .exclusion-list li:last-child {
    border-bottom: none;
}

.icon {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.check {
    color: #27ae60;
}

.cross {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .general-content {
        flex-direction: column;
    }
    
    .inclusion-exclusion-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab {
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
    }
    
    .tab-indicator {
        display: none;
    }
    
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .general-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .premium-tabs {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .general-heading {
        font-size: 24px;
    }
    
    .day-title {
        font-size: 20px;
    }
    
    .list-title {
        font-size: 20px;
    }
    
    .hotel-card {
        height: 180px;
    }
}

.apple-pricing {
    font-family: 'poppins', sans-serif;
    padding: 3rem 1.5rem;
    background: #fbfbfd;
    color: #1d1d1f;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #86868b;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.season-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.season-pill {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #d2d2d7;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.season-pill.active {
    background: #e67e22;
    color: #fff;
    border-color: #7a4a2b;
}

.season-pill:hover:not(.active) {
    background: #f5f5f7;
}

.season-content {
    display: none;
}

.season-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.season-period {
    text-align: center;
    color: #86868b;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.pricing-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.luxury {
    border-top: 4px solid #7a4a2b;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: #7a4a2b;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f7;
}

.price-row:last-child {
    border-bottom: none;
}

.group-size {
    font-size: 1rem;
    color: #515154;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .apple-pricing {
        padding: 2rem 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .season-pill {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.premium-cta {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/DSC_1275.JPG');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-text {
    max-width: 600px;
    color: white;
}

.cta-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #e9c46a;
    font-weight: 600;
}

.cta-title {
    font-family: "Finger Paint", cursive;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #2a9d8f;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    font-family: 'poppins', sans-serif;
    background: #e67e22;
    color: #000;
    border: 2px solid #e67e22;
}

.btn-primary:hover {
    background: transparent;
    color: #e67e22;
    transform: translateY(-3px);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-cta {
        height: auto;
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
}