:root {
  --brand: #f97316;   /* Orange */
  --brand-2: #f59e0b; /* Amber */
  --dark-text: #1f2937; 
  --light-bg: #f3f4f6; 
  --section-bg: #f7f6f3; 
  --section-bg-alt: #f2f2f0; 
  --footer-bg: #1a1a1a;
  --footer-text: #f9fafb;
}

.sec-01-07 {
  background-color: #172238;
  padding: 60px 0;
  text-align: center;
}

.sec-01-07-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sec-01-07-text {
  font-size: 50px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

.highlight {
  color: var(--brand);
}

.star-icon {
  font-size: 20px;
  color: white;
}

.star-icon.yellow {
  color: var(--brand);
}

.globe-icon {
  font-size: 35px;
  color: #00AEEF;
  margin-left: 8px;
}

.sec-01-07-img {
  width: 100%;
  max-width: 1050px;
  height: 350px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--brand);
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* ================ */
/* Container */

.service-holiday {
 background: url('../img/image-3/dotted-plane.png') no-repeat right center;
  background-size: 300px auto;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Left Content */
.holiday-left {
  max-width: 45%;
  text-align: left;
}

/* Subtitle */
.holiday-subtitle {
  display: inline-flex;
  align-items: center;
  background: #f6e9d7;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.holiday-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff4eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: red;
}
.holiday-subtitle-text {
  font-weight: 600;
  font-size: 16px;
}

/* Title */
.holiday-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}
.holiday-title-black {
  color: #000;
}
.holiday-title-yellow {
  color: var(--brand);
}

/* Description */
.holiday-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 90%;
}

/* Right Grid */
.holiday-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 50%;
  justify-items: left;
}
.holiday-card {
  background: #f6e9d7;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  min-width: 150px;
  min-height: 120px; /* equal height */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Attractive look */
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.holiday-card:hover {
  background: #fff4eb;
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

/* ===================== */
/* ✅ Responsive Layout  */
/* ===================== */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .container.d-flex {
    flex-direction: column;
    text-align: center;
  }

  .holiday-left {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: left; /* still left aligned */
  }

  .holiday-grid {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobiles (≤576px) */
@media (max-width: 576px) {
  .holiday-title {
    font-size: 30px;
  }

  .holiday-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .holiday-grid {
    grid-template-columns: 2fr; /* single column */
    gap: 15px;
  }

  .holiday-card {
    width: 100%;
  }
}
