:root {
  --primary: #0c44ac;
  --primary-light: #3b82f6;
  --primary-dark: #0c44ac;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --dark: #1e293b;
  --dark-light: #334155;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#myHeader {
    position: static;
}
body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}
section.innerDetinatin {
    padding-top: 60px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.innerDetinatin h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0;
}
.innerDetinatin h1 span {
    color: #333;
}

/* Intro Section */
.intro-section {
  margin-bottom: 40px;
}

.intro-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-content p {
  font-size: 1.125rem;
  color: var(--dark-light);
  margin-bottom: 20px;
}

.highlight-box {
  background: rgba(37, 99, 235, 0.05);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
}

/* Section Styling */
.section {
  margin-bottom: 50px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.section-header:after {
  content: '';
  flex-grow: 1;
  height: 2px;
  background: var(--border);
  margin-left: 20px;
}

/* Must-Dos Section */
.must-dos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.must-do-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.must-do-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.must-do-number {
  background: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 15px;
}

.must-do-content {
  padding: 25px;
}

.must-do-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.must-do-content p {
  color: var(--gray);
}

/* Tips Section */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.tip-icon {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.tip-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.tip-content p {
  color: var(--gray);
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, #0c44ac, #95b7f7);
  color: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 60px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.page-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray);
  border-top: 1px solid var(--border);
}

.back-button {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
}

.back-button i {
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {     
  
  .must-dos-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-card {
    flex-direction: column;
  }
  
  .tip-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

 .flight-deals {
      width: 100%;
      background: #fff;
      border-radius: 16px;
      padding: 40px;
      box-shadow: var(--shadow);
      margin-bottom: 40px;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .section-header h2 {
      font-size: 24px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }
    
    .section-header h2 span {
      color: var(--primary-dark);
      position: relative;
    }
    
    .section-header h2 span::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primary-dark);
      border-radius: 2px;
    }
    
    .section-subtitle {
      color: #64748b;
      font-size: 16px;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .flight-layout {
      display: flex;
      gap: 30px;
    }
    
    .flight-list {
      flex: 1 1 65%;
      margin-top: 20px;
  }
    
    .flight-sidebar {
      flex: 1 1 30%;
      margin-top: 40px;
    }
    
    .class-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 30px;
      color: #0f172a;
      padding-bottom: 8px;
      border-bottom: 3px solid #d71920;
      display: inline-block;
    }
    
    .flight-card {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 16px;
      border: 1px solid #e2e8f0;
      transition: all 0.2s ease;
    }
    
    .flight-card:hover {
      border-color: #cbd5e1;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .flight-card.highlighted {
      border-color: var(--primary-dark);
      background: #f8fafc;
      position: relative;
    }
    
    .flight-card.highlighted::before {
      content: 'BEST VALUE';
      position: absolute;
      top: -10px;
      left: 20px;
      background: var(--primary-dark);
      color: white;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 12px;
    }
    
    .flight-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    margin-right: 10px;
}
    
    .flight-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    
    .flight-route {
      flex: 1;
      text-align: center;
    }
    
    .route-codes {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 0;
    }
    
    .flight-route .code {
      font-weight: 700;
      font-size: 20px;
      color: #0f172a;
    }
    
    .flight-route .arrow {
      color: #94a3b8;
      font-size: 14px;
    }
    
    .flight-route .cities {
      font-size: 14px;
      color: #64748b;
    }
    
    .flight-price {
      margin-right: 20px;
      text-align: right;
    }

    .flight-price p {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 2px;
    }
    
    .flight-price h4 {
      color: #0f172a;
      font-size: 20px;
      font-weight: 700;
      margin: 0;
    }
    
    .flight-call {
      text-align: right;
    }
    
    .flight-call p {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 5px;
    }
    
    .call-btn {
      background: var(--primary-dark);
      color: #fff;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.2s;
    }
    
    .call-btn:hover {
      background: #005bb5;
      transform: translateY(-1px);
      color: #fff;
    }
    
    .call-btn i {
      margin-right: 8px;
    }
    
    .flight-change, .flight-highlight {
      background: #f8fafc;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
      border: 1px solid #e2e8f0;
    }
    
    .flight-change h4, .flight-highlight h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #0f172a;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .flight-change h4{
      margin-bottom: 0;
    }
    
    .flight-change h4 i {
      color: var(--primary-dark);
    }
    
    .airport-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    .airport-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      font-size: 15px;
      border-bottom: 1px solid #f1f5f9;
    }
    
    .airport-row:last-child {
      border-bottom: none;
    }
    
    .airport-row span {
      color: #475569;
    }
    
    .airport-row strong {
      color: var(--primary-dark);
      font-weight: 600;
    }
    
    .flight-highlight {
      background: var(--primary-dark);
      color: #fff;
      text-align: center;
      border: none;
    }
    
    .flight-highlight h4 {
      color: white;
    }
    
    .flight-highlight h3 {
      font-size: 22px;
      margin: 10px 0 0;
      font-weight: 700;
    }
    
    .flight-highlight p {
      margin-bottom: 8px;
      opacity: 0.9;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .flight-layout {
        flex-direction: column;
      }
      
      .flight-list, .flight-sidebar {
        flex: 1 1 100%;
      }
    }
    
    @media (max-width: 768px) {
      .flight-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
      }
      
      .flight-logo {
        margin-right: 0;
        margin-bottom: 16px;
      }
      
      .flight-route {
        margin-bottom: 16px;
      }
      
      .flight-price {
        margin-right: 0;
        margin-bottom: 16px;
        text-align: center;
      }
      
      .flight-call {
        text-align: center;
      }
      
      .section-header h2 {
        font-size: 28px;
      }
    }