/* ===== PAGE HERO — Video Background ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}
.page-hero .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.65),
    rgba(10, 22, 40, 0.55)
  );
  backdrop-filter: blur(1px);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 123, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: #fff;
}
.page-hero h1 .text-orange {
  color: var(--orange);
}
.page-hero p {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
}
.breadcrumb a {
  color: var(--orange);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  background: var(--bg-primary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image .exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--orange);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}
.about-image .exp-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}
.about-image .exp-badge span {
  font-size: 0.8rem;
  display: block;
}
.about-text h2 {
  margin-bottom: 20px;
  color: var(--text-dark);
}
.about-text p {
  margin-bottom: 16px;
  color: var(--text-body);
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.about-features .feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}
.about-features .feat .check {
  width: 24px;
  height: 24px;
  background: rgba(0, 123, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Mission Vision */
.mission-vision {
  background: var(--bg-secondary);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mv-card {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.mv-card:hover {
  border-color: rgba(0, 123, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.mv-card .mv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.mv-card h3 {
  margin-bottom: 16px;
  color: var(--navy-mid);
}
.mv-card p {
  color: var(--text-body);
}

/* Timeline */
.timeline-section {
  background: var(--bg-primary);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  width: 50%;
  position: relative;
}
.timeline-item:nth-child(even) {
  margin-left: 50%;
  justify-content: flex-start;
}
.timeline-content {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  max-width: 350px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.timeline-content:hover {
  border-color: rgba(0, 123, 255, 0.25);
  box-shadow: var(--shadow-md);
}
.timeline-content .year {
  color: var(--orange);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.timeline-content h3 {
  margin: 8px 0;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-body);
}
.timeline-item::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  position: absolute;
  top: 28px;
  right: -7px;
  z-index: 2;
}
.timeline-item:nth-child(even)::after {
  left: -7px;
  right: auto;
}

/* ===== WHY-GRID & WHY-CARD — Service Page Cards ===== */
.why-choose {
  background: var(--bg-secondary);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(10, 22, 40, 0.04);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy-mid));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-card:hover::before {
  opacity: 1;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
  border-color: rgba(0, 123, 255, 0.15);
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
  color: var(--white);
  transition: all 0.4s ease;
}
.why-card:hover .icon-circle {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.35);
}
.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.why-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}
.service-detail:nth-child(even) {
  background: var(--bg-secondary);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}
.service-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.service-detail-content p {
  margin-bottom: 16px;
  color: var(--text-body);
}
.service-detail-content ul {
  margin-top: 16px;
}
.service-detail-content ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-body);
  font-size: 0.95rem;
}
.service-detail-content ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--orange);
}
.service-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 350px;
  background: var(--bg-secondary);
  border: 1px solid rgba(10, 22, 40, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.service-visual img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  animation: serviceFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 123, 255, 0.15));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
.service-visual:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 15px 40px rgba(0, 123, 255, 0.25));
}
.service-visual::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(10, 22, 40, 0.08), transparent);
  border-radius: 50%;
  animation: serviceShadow 4s ease-in-out infinite;
}
@keyframes serviceFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes serviceShadow {
  0%,
  100% {
    width: 60%;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 0.5;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--bg-primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.08);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--white);
  color: var(--text-dark);
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  border-color: rgba(0, 123, 255, 0.25);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}
.contact-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}
.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-body);
}
.map-container {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  border: 1px solid rgba(10, 22, 40, 0.08);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .contact-grid,
  .service-detail-grid,
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail:nth-child(even) .service-detail-grid {
    direction: ltr;
  }
  .services-grid-v2 {
    max-width: 100%;
  }
  .services-grid-v2 .svc-card {
    flex: 0 1 calc(50% - 20px);
  }
  .why-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .why-item {
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 100px 30px 40px;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    box-shadow: none;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-links.active {
    transform: translateX(0);
    box-shadow: -5px 0 20px rgba(10, 22, 40, 0.08);
  }
  .nav-links > a {
    color: var(--text-dark) !important;
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    font-weight: 600;
    font-size: 1.05rem;
  }
  .nav-links > a::after {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  /* Mobile dropdown */
  .nav-dropdown {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
  }
  .nav-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
  }
  .nav-dropdown > a::after {
    display: none !important;
  }
  .nav-dropdown.open > a {
    color: var(--orange) !important;
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    box-shadow: none;
    border: none;
    background: rgba(10, 22, 40, 0.02);
    border-left: 2px solid rgba(0, 123, 255, 0.1);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: auto;
    width: 100%;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 8px 0;
    margin-bottom: 10px;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .dropdown-menu::before,
  .dropdown-menu::after {
    display: none;
  }
  .dropdown-menu a {
    padding: 12px 20px !important;
    font-size: 0.95rem;
    justify-content: flex-start;
    white-space: normal;
    margin-bottom: 0;
    display: block;
    color: var(--text-body) !important;
    border-bottom: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a.active-service {
    background: rgba(0, 123, 255, 0.05);
    color: var(--orange) !important;
    padding-left: 28px !important;
  }
  .nav-links > a:last-child {
    margin-top: 25px;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white !important;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero {
    align-items: flex-start !important;
    padding-top: 160px !important;
    height: auto !important;
    min-height: 100vh !important;
    padding-bottom: 120px !important;
    overflow: visible !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 50px;
    justify-content: flex-start;
  }
  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    left: 14px;
    right: auto;
  }
  .services-grid-v2 {
    gap: 20px;
  }
  .services-grid-v2 .svc-card {
    flex: 0 1 calc(50% - 10px);
    min-width: 280px;
  }
  .why-grid-v2 {
    grid-template-columns: 1fr;
  }
  .why-item {
    gap: 14px;
    padding: 24px 20px;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .services-grid-v2 .svc-card {
    flex: 0 1 100%;
    min-width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a,
  .hero-buttons button {
    width: 100%;
    text-align: center;
  }
  .hero {
    align-items: flex-start !important;
    padding-top: 160px !important;
    height: auto !important;
    min-height: 100vh !important;
    padding-bottom: 120px !important;
    overflow: visible !important;
  }
  .contact-form {
    padding: 20px;
    margin: 0;
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-info-cards {
    gap: 15px;
  }
  .contact-card {
    padding: 16px;
    gap: 12px;
  }
  .contact-card .card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .contact-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .contact-card p {
    font-size: 0.85rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  .svc-step {
    font-size: 2rem;
  }
  .why-item-num {
    font-size: 1.4rem;
    min-width: 28px;
  }
}
