/* Skyline Modular Style Custom CSS */

:root {
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-dark: #212529;
  --bs-light: #f8f9fa;
  --font-primary: 'Inter', sans-serif;
}

body {
  font-family: var(--font-primary);
  color: #4b5563; /* Neutral gray */
  background-color: #f9fafb; /* Very light gray */
}

.bg-light-gray {
  background-color: #f9fafb !important;
}

h1, h2, h3, h4, h5, h6, .fw-bold {
  color: #111827;
  letter-spacing: -0.02em;
}

.tracking-wide {
  letter-spacing: 0.1em;
}

.fs-7 {
  font-size: 0.875rem;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Header */
.custom-shadow-sm {
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.navmenu ul li a {
  color: #374151 !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  transition: 0.3s;
}

.navmenu ul li a:hover, .navmenu ul li a.active {
  color: var(--bs-primary) !important;
}

/* Hero Section */
.hero {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.hero-heading {
  line-height: 1.1;
}

/* Features Bar */
.features-bar {
  margin-top: -30px;
}
.feature-item {
  position: relative;
}
@media (min-width: 992px) {
  .divide-lg .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #e5e7eb;
  }
}

/* Services */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
.service-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  position: absolute;
  top: 155px; /* Half overlapping the image */
  left: 30px;
  border: 4px solid #fff;
}

/* Process Timeline */
.process-line {
  position: absolute;
  top: 35px; /* Middle of the icon */
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, transparent 50%, rgba(13, 110, 253, 0.3) 50%);
  background-size: 15px 100%;
  z-index: 1;
}
.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
}
.process-number {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blue Banner */
.blue-banner {
  margin-top: 100px;
}
@media (min-width: 1200px) {
  .p-xl-6 {
    padding: 5rem 6rem !important;
  }
}

/* Featured Projects */
.project-card {
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
}

/* FAQ Accordion */
.custom-accordion .accordion-button {
  box-shadow: none !important;
  padding-left: 0;
  padding-right: 0;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: transparent;
}
.custom-accordion .accordion-button::after {
  background-size: 1rem;
}

/* Buttons */
.hover-lift {
  transition: transform 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-2px);
}

/* Footer Links */
.hover-white:hover {
  color: #fff !important;
}

/* Pricing Cards */
.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 2rem;
  background: #fff;
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pricing-card.best-seller {
  border: 2px solid var(--bs-primary);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
  position: relative;
  z-index: 2;
}
.pricing-card.best-seller:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.pricing-list li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-list li i {
  color: var(--bs-primary);
  margin-top: 3px;
}
.pricing-list li i.bx-x {
  color: #adb5bd;
}
.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}
.feature-box i {
  font-size: 3rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
.zigzag-section {
  padding: 4rem 0;
}
.hero-box {
  background: var(--bs-light);
  border-radius: 12px;
  overflow: hidden;
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 99998;
  background-color: #25D366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.floating-wa:hover {
  background-color: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

/* Force exactly 3 columns (3 on top, 3 on bottom) on medium screens and larger */
@media (min-width: 768px) {
  .travel-tours .categories-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* On small screens, keep it responsive (e.g. 2 columns or 1 column) */
@media (max-width: 767px) {
  .travel-tours .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .travel-tours .categories-grid {
    grid-template-columns: 1fr !important;
  }
}
