/* === 1. Fonts, Variables & Reset === */
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-red: #e42326;
  --dark-blue: #1f2837;
  --medium-blue: #5c81b7;
  --light-grey: #d1d3d4;
  --white: #ffffff;
  --transition-duration: 0.3s;
  --text-muted: #666;
  --surface-light: #f9f9f9;
}

body {
  font-family: "Rubik", sans-serif;
  color: var(--dark-blue);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.page-offset {
  padding-top: 110px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-duration) ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* === 2. Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: var(--dark-blue);
  text-transform: uppercase;
}

h1 {
  font-size: 60px;
  line-height: 1.1;
  color: var(--dark-blue);
}

h2 {
  font-size: 36px;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 16px;
  color: var(--dark-blue);
}

/* === 3. Navigation / Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--dark-blue);
  z-index: 1000;
  padding: 0 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  /* White text */
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--white);
  /* White links */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
  /* Hover color */
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  cursor: pointer;
  color: var(--white);
  /* White login text */
}

/* === 4. Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-content .btn {
  border: 2px solid var(--white);
  color: var(--white);
}

.hero-content .btn:hover {
  background: var(--white);
  color: var(--dark-blue);
}

/* === 5. Buttons === */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
  text-transform: uppercase;
  font-weight: 700;
}

.btn:hover {
  background: var(--white);
  color: var(--dark-blue);
}

.btn-dark {
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
}

.btn-dark:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.btn-red {
  border: 2px solid var(--primary-red);
  background: var(--primary-red);
  color: var(--white);
}

.btn-red:hover {
  background: transparent;
  color: var(--primary-red);
}

/* === 6. Layout === */
section {
  padding: 80px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* === 7. Services Section === */
.services-section {
  background-color: var(--white);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.service-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

/* === 8. About & Team === */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-intro-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* About/Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  /* Shift image down to prevent head cutoff */
  margin-bottom: 25px;
  display: block;
}

/* Name: Lighter font weight but big */
.team-member h3 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Title: Mid size but bold */
.team-member p.role {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

/* Description: Light and normal font */
.team-member p.bio {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-blue);
  line-height: 1.6;
}

/* About Page Specifics */
.about-hero {
  height: 60vh;
  background-image: url("assets/hero-about.jpg");
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-intro .hero-content h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === 9. Contact Form === */
.contact-form-section {
  background-color: var(--dark-blue);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid var(--white);
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid var(--primary-red);
}

/* === 10. Footer === */
footer {
  background-color: var(--dark-blue);
  padding: 60px 40px;
  color: var(--white);
  border-top: none;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col p {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-duration) ease;
}

.footer-col a:hover {
  color: var(--medium-blue);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--white);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* === 11. Utilities === */
.text-center {
  text-align: center;
}

.bg-light {
  background-color: var(--light-grey);
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Page Title (about, contact, service detail pages) */
.page-title {
  padding-top: 150px;
  text-align: center;
  margin-bottom: 60px;
}

/* Page Hero Banner */
.page-hero {
  background-color: var(--white);
  padding: 70px 40px 65px;
  text-align: center;
}

.page-hero h1 {
  color: var(--dark-blue);
  font-size: 64px;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  max-width: 640px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background-color: var(--surface-light);
  text-align: center;
  padding: 80px 40px;
}

.cta-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  font-weight: 400;
}

/* Hero background for home pages */
.hero-home-bg {
  background-image: url("assets/hero-home.jpg");
}
.hero-home-sy-bg {
  background-image: url("assets//damascus.png");
}

/* Home intro blurb section */
.home-intro {
  padding: 80px 20px;
}

.home-intro-heading {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  color: var(--dark-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-intro-text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  color: var(--dark-blue);
}

/* About page office image */
.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === 12. Services Page === */

/* Services Intro */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.services-intro p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--dark-blue);
}

.services-intro img {
  width: 100vw;
  height: 400px;
  object-fit: cover;
  display: block;
  margin-top: 60px;
  margin-bottom: 20px;

  /* Force full width breakout */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;

  /* Reset previous centering hack */
  position: relative;
  left: auto;
  transform: none;
}

/* Services Grid Breakdown */
.services-breakdown-section {
  padding-bottom: 20px;
  /* Reduced padding */
}

.section-header h2 {
  text-align: center;
  font-size: 42px;
  /* Bigger */
  font-weight: 300;
  /* Lighter */
  margin-bottom: 40px;
  color: var(--dark-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-breakdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 in a row */
  gap: 30px;
  /* Reduced gap to fit 4 */
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .services-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-breakdown {
    grid-template-columns: 1fr;
  }
}

.service-item {
  text-align: center;
  /* Or left based on preference, centered usually looks good for icons */
  padding: 20px;
}

/* .service-icon-placeholder {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
} */

.service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.service-item h3 {
  font-size: 16px;
  /* Smaller title */
  margin-bottom: 15px;
  color: var(--dark-blue);
  font-weight: 600;
  text-transform: uppercase;
}

.service-item p {
  font-size: 15px;
  color: var(--dark-blue);
  line-height: 1.5;
}

/* === 13. Clients === */
.clients-section {
  text-align: center;
  padding: 120px 0;
  /* Increased padding */
  background-color: #fff;
  /* Changed back to white or keep simple */
  margin-top: 0;
}

.clients-section h2 {
  font-size: 42px;
  /* Bigger to match other sections */
  font-weight: 300;
  /* Lighter */
  margin-bottom: 60px;
  color: var(--dark-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  /* Adjusted gap */
}

.clients-grid img {
  height: 60px;
  /* Fixed height for consistency */
  width: auto;
  object-fit: contain;
  max-width: 150px;
  /* Prevent overly wide logos */
  filter: grayscale(100%);
  /* Make them consistent in color */
  opacity: 0.8;
  transition: all var(--transition-duration) ease;
}

.clients-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo-placeholder {
  font-size: 24px;
  color: #888;
  font-weight: bold;
  opacity: 0.7;
  /* Placeholder style mimicking logos */
}

/* === 14. Testimonials === */
.testimonials-section {
  background:
    linear-gradient(rgba(240, 248, 255, 0.95), rgba(240, 248, 255, 0.95)),
    url("assets/hero-about.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 42px;
  /* Bigger */
  font-weight: 300;
  /* Lighter weight */
  margin-bottom: 60px;
  color: var(--dark-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
  /* Space for arrows */
}

.testimonial-slide {
  display: none;
  /* Hidden by default */
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.6;
  color: var(--dark-blue);
  margin-bottom: 30px;
  font-style: italic;
  /* Often used for quotes */
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 30px;
  color: var(--dark-blue);
  user-select: none;
  padding: 10px;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dot.active {
  background-color: var(--dark-blue);
}

/* === 15. Contact Locations === */
.contact-locations-section {
  padding: 80px 0;
  background-color: #fff;
}

.locations-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* === 16. Why Choose Us === */
.why-choose-us-section {
  padding: 100px 0;
  background-color: var(--white);
  text-align: left;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  /* Match container generally */
  margin: 0 auto;
}

.why-choose-us-content h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--dark-blue);
  letter-spacing: 0.1em;
}

.why-choose-us-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark-blue);
  margin-bottom: 0;
}

.why-choose-us-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  /* Keep sharp or round based on preference, sharp matches site vibe mostly */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 500px;
}

@media (max-width: 900px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.location-card {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 40px;
  background-color: var(--surface-light);
  /* Light grey background for contrast */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.location-card h2 {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.location-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.location-card a {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
}

.location-card a:hover {
  text-decoration: underline;
}

/* === 17. Responsive / Mobile === */

/* Hamburger Menu default state (hidden on desktop) */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px;
  transition: all var(--transition-duration) ease;
}

/* Mobile Media Query */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
  }

  /* Mobile Typography Overrides */
  h1,
  .hero-content h1 {
    font-size: 34px !important;
  }

  h2,
  .why-choose-us-content h2,
  .section-header h2,
  .about-intro .hero-content h2,
  .clients-section h2,
  .testimonials-section h2,
  .location-card h2 {
    font-size: 30px !important;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* Generic Hero Layout Fix (Home & What We Do) */
  .hero {
    height: auto !important;
    min-height: 480px;
    margin-bottom: 0 !important;
    margin-top: 50px;
    align-items: center;
  }

  .hero-content {
    padding: 20px 15px;
    width: auto;
    position: relative;
    z-index: 2;
  }

  /* Specific Fixes for "What We Do" Section (.about-intro) */
  .about-intro {
    background-color: transparent;
    padding: 0;
  }

  .about-intro .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .about-intro .hero {
    border-radius: 0;
    width: 100%;
    margin: 0;
  }

  /* About Page Mobile Stacking */
  .about-intro-grid {
    display: flex;
    flex-direction: column-reverse;
    /* Image first, then text */
    gap: 40px;
  }

  /* Reduce space before first image */
  .page-title {
    padding-top: 150px;
    margin-bottom: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    /* Single column */
    gap: 40px;
    text-align: center;
    /* Center team section */
  }

  .team-member img {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 100px;
    /* Below navbar */
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 999;
    padding-top: 50px;
  }

  .nav-links a {
    opacity: 0;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .hamburger {
    display: block;
  }

  /* Active State for Navigation */
  .nav-active {
    transform: translateX(0%);
  }

  /* Animate Links */
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .nav-active a {
    animation: navLinkFade 0.5s ease forwards 0.3s;
  }

  /* Toggle Animation */
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
    opacity: 0;
  }

  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Footer Adjustments */
  .footer-content {
    text-align: center;
  }

  .footer-col {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-socials {
    justify-content: center;
    width: 100%;
  }

  .about-main {
    padding: 40px 40px;
  }
}
/* === 18. Location Switcher === */
.location-switcher-body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.location-switcher {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.switcher-panels {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.location-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: flex 0.5s ease;
  cursor: pointer;
}

.location-panel:hover {
  flex: 1.15;
}

#panel-turkey {
  background: url('assets/istanbul.jpg') center / cover no-repeat;
}

#panel-syria {
  background: url('assets/damascus.png') center / cover no-repeat;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.4s ease;
}

.location-panel:hover .panel-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.panel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(31, 40, 55, 0.88);
  color: var(--white);
  padding: 20px 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.switcher-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 40px;
  background: var(--dark-blue);
  flex-shrink: 0;
}

.switcher-bar-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.switcher-bar-logo {
  width: 120px;
  display: block;
  flex-shrink: 0;
}

/* === 19. Nav Dropdown === */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle {
  color: var(--primary-red);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: var(--dark-blue);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
  display: none;
  z-index: 1200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-red);
}

/* === 20. Service Detail Pages === */
.service-detail-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.service-detail-content .service-icon {
  margin: 0 0 20px;
}

.service-detail-summary {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--dark-blue);
}

@media screen and (max-width: 768px) {
  .panel-label {
    font-size: 15px;
    padding: 14px 12px;
  }

  .switcher-panels {
    flex-direction: column;
  }

  .switcher-bar-logo {
    width: 90px;
  }

  .nav-links .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle {
    opacity: 0;
    font-size: 18px;
    margin-bottom: 30px;
  }

  .nav-active .nav-dropdown-toggle {
    opacity: 1;
    animation: navLinkFade 0.5s ease forwards 0.3s;
  }

  .dropdown-menu {
    position: static;
    min-width: unset;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    margin: -15px 0 20px;
  }

  .dropdown-menu a {
    font-size: 14px;
    padding: 8px 10px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-image img {
    height: 300px;
  }

  .page-hero {
    padding: 40px 20px 36px;
  }

  .page-hero h1 {
    font-size: 28px;
  }
}

/* Location Labels */
.location-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--dark-blue);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Stronger Service Card Clickability */
.services-cards-highlight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-cards-highlight .service-item {
  padding: 8px;
  display: flex;
}

.services-cards-highlight .service-item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 34px 26px;
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.services-cards-highlight .service-item a:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 34px rgba(15, 23, 42, 0.3);
}

.service-card-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-red);
}

.services-cards-highlight .service-item h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.services-cards-highlight .service-item p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.services-cards-highlight .service-item .service-icon,
.services-cards-highlight .service-item h3,
.services-cards-highlight .service-item p,
.services-cards-highlight .service-item .service-card-cta {
  position: relative;
  z-index: 2;
}

.services-cards-highlight .service-item .service-icon {
  filter: brightness(0) invert(1);
}

.services-cards-highlight .service-item .service-card-cta {
  color: #fca5a5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.services-cards-highlight .service-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.35s ease;
  z-index: 0;
}

.services-cards-highlight .service-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.9) 100%
  );
  z-index: 1;
}

.services-cards-highlight .service-item a:hover::before {
  transform: scale(1.08);
}

.services-cards-highlight .service-item:nth-child(1) {
  --card-bg: url("assets/service-1.jpeg");
}

.services-cards-highlight .service-item:nth-child(2) {
  --card-bg: url("assets/service-2.jpeg");
}

.services-cards-highlight .service-item:nth-child(3) {
  --card-bg: url("assets/service-3.jpeg");
}

.services-cards-highlight .service-item:nth-child(4) {
  --card-bg: url("assets/service-4.jpeg");
}

.services-cards-highlight .service-item:nth-child(5) {
  --card-bg: url("assets/service-5.jpeg");
}

.services-cards-highlight .service-item:nth-child(6) {
  --card-bg: url("assets/service-6.jpeg");
}

/* === 21. Structured Content (Hotel/Tour/Fleet Cards) === */
.service-data-block {
  margin-top: 48px;
  background: var(--surface-light);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(31, 40, 55, 0.08);
}

.service-data-block h2 {
  text-align: left;
  margin-bottom: 24px;
  color: var(--dark-blue);
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 16px;
}

.service-data-table-wrap {
  overflow-x: auto;
}

.service-data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.service-data-table th,
.service-data-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

.service-data-table th {
  background: #f8fafc;
  font-weight: 700;
}

.hotel-city-grid,
.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hotel-city-card,
.tour-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.hotel-city-card h3,
.tour-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-grey);
}

.hotel-city-card ul {
  list-style: disc;
  padding-left: 18px;
}

.hotel-city-card li {
  margin-bottom: 6px;
}

.cards-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.listing-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.listing-card img,
.listing-card .img-placeholder {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.listing-card .img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #e2e8f0);
  color: #334155;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.listing-card-body {
  padding: 16px;
}

.listing-card-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.listing-card-body p {
  margin-bottom: 0;
  color: #475569;
}

.centered-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.service-detail-section {
  background: var(--white);
}

.service-detail-section.container {
  max-width: 100%;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.service-detail-section > .centered-intro,
.service-detail-section > .service-detail-grid,
.service-detail-section > .service-data-block {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}


/* === 22. Hotel Filter Bar & Listing Grid === */
.hotel-filter-bar {
  background: var(--white);
  padding: 20px;
  border-bottom: 1px solid var(--light-grey);
  position: sticky;
  top: 70px;
  z-index: 10;
}

.hotel-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hotel-filter-pill {
  background: transparent;
  border: 1.5px solid var(--dark-blue);
  color: var(--dark-blue);
  border-radius: 100px;
  padding: 7px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-duration), color var(--transition-duration), border-color var(--transition-duration);
}

.hotel-filter-pill.active,
.hotel-filter-pill:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.hotel-listing-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.hotel-listing-grid .hotel-visual-card {
  grid-column: span 1 !important;
  min-height: 260px;
}

/* === 22. Hotel Visual Grid (full-bleed destination cards) === */
.hotel-visual-section {
  width: 100%;
}

.hotel-visual-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.hotel-visual-card {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  overflow: hidden;
  cursor: default;
  grid-column: span 2;
}

/* 5-card layout: last 2 cards span 3 columns each (fill the row) */
.hotel-visual-card:nth-child(4):nth-last-child(2),
.hotel-visual-card:nth-child(5):last-child {
  grid-column: span 3;
}

.hotel-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
  transition: opacity var(--transition-duration) ease;
}

.hotel-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  z-index: 1;
}

.hotel-visual-overlay h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hotel-visual-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .services-cards-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-city-grid,
  .tour-cards-grid {
    grid-template-columns: 1fr;
  }

  .services-cards-highlight .service-item a {
    min-height: auto;
  }

  .cards-gallery {
    grid-template-columns: 1fr;
  }

  .hotel-visual-grid {
    grid-template-columns: 1fr;
  }

  .hotel-listing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hotel-visual-card,
  .hotel-visual-card:nth-child(4):nth-last-child(2),
  .hotel-visual-card:nth-child(5):last-child {
    grid-column: span 1;
    min-height: 320px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero-sub {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .services-cards-highlight {
    grid-template-columns: 1fr;
  }
}
