@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Raleway:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}




.brand-text h3 {
  font-size: 18px;
  margin: 0;
  color: white;
}

.brand-text small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .hero-title {
    font-size: 7rem;
  }

  .service-item {
    gap: 3rem;
  }
}

@media (max-width: 992px) {


  .hero-title {
    font-size: 5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .service-item.reverse {
    direction: ltr;
  }

  .service-image {
    order: -1;
  }

  .service-item.reverse .service-image {
    order: -1;
  }

  .cta-subtitle {
    font-size: 3rem;
  }

  .value-block {
    flex-direction: column;
  }

  .value-block.reverse {
    flex-direction: column;
  }

  .value-accent {
    flex: none;
    transform: skewX(0deg);
    border-radius: 16px 16px 0 0;
  }

  .value-description {
    border-radius: 0 0 16px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .menu-toggle {
    display: block;
  }

  

  /* Hero Section */
  .hero {
    height: 400px;
    padding: 0 15px;
  }

  .hero-content {
    bottom: 15%;
    left: 5%;
    right: 5%;
  }

  .hero-title {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem !important;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1rem !important;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  /* Services Section */
  .services {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 2rem;
    text-align: center;
  }

  .service-item {
    display: flex;
    flex-direction: column !important;
    margin-bottom: 3rem;
    gap: 1.5rem;
  }

  .service-item.reverse {
    flex-direction: column !important;
  }

  .service-content {
    padding: 1rem;
    text-align: center;
  }

  .service-title {
    font-size: 1.3rem !important;
    margin-bottom: 1rem;
  }

  .service-description {
    font-size: 0.9rem !important;
    line-height: 1.5;
    text-align: center;
  }

  .service-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    margin-top: 1rem !important;
  }

  .tag {
    background: #f5f5f5;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px;
    font-size: 0.75rem !important;
    color: #666;
    border: 1px solid #e0e0e0;
  }

  .service-image {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .service-image img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px !important;
  }

  .service-image:hover img {
    transform: scale(1.05);
  }

  /* CTA Section - Fix oversized text */
  .cta-section {
    padding: 3rem 1rem !important;
    text-align: center;
  }

  .cta-title {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .cta-subtitle {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .icon_home {
    width: 30px !important;
    height: auto;
    margin: 0 5px;
    vertical-align: middle;
  }

  .cta-button {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.5rem;
  }

  /* Locations Section */
  .locations-white {
    padding: 3rem 1rem !important;
  }

  .locations-white h2 {
    font-size: 1.5rem !important;
    margin-bottom: 2rem;
    letter-spacing: 1px;
  }

  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .location {
    padding: 1rem !important;
    font-size: 1rem !important;
  }

  /* Working Process */
  .working-process {
    padding: 3rem 1rem !important;
  }

  .working-process h2 {
    font-size: 1.6rem !important;
    margin-bottom: 2rem;
  }

  .process-container {
    flex-direction: column !important;
    align-items: center;
    gap: 1.5rem !important;
  }

  .process-box {
    width: 100% !important;
    max-width: 280px;
    padding: 1.5rem !important;
    margin-top: 0 !important;
  }

  .process-box img {
    width: 50px !important;
    height: 50px;
  }

  .process-box h3 {
    font-size: 1.1rem !important;
    margin: 1rem 0 0.5rem 0;
  }

  .process-box p {
    font-size: 0.85rem !important;
    line-height: 1.4;
  }

  /* Unlimited Adventures */
  .Unlimited_adventures {
    padding: 2rem 1rem !important;
  }

  .Unlimited_adventures h2 {
    font-size: 1.3rem !important;
    margin-bottom: 2rem;
  }

  .Unlimited_adventures .card {
    padding: 2rem 1rem !important;
    width: 95%;
  }

  .Unlimited_adventures .background-text {
    font-size: 30px !important;
    word-spacing: 20px !important;
    line-height: 1.2;
  }

  .Unlimited_adventures img {
    width: 100% !important;
    max-width: 300px;
  }

  .Unlimited_adventures p {
    font-size: 0.9rem !important;
    margin-top: 1.5rem;
    line-height: 1.4;
  }

  /* Values Section */
  .values {
    padding: 3rem 1rem !important;
  }

  .value-block {
    margin-bottom: 2rem !important;
    flex-direction: column !important;
  }

  .value-block.reverse {
    flex-direction: column !important;
  }

  .value-accent {
    flex: none !important;
    transform: skewX(0deg) !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 2rem 1.5rem !important;
  }

  .value-accent h3 {
    font-size: 1.5rem !important;
  }

  .value-description {
    border-radius: 0 0 16px 16px !important;
    padding: 1.5rem !important;
  }

  .value-description p {
    font-size: 0.9rem !important;
    line-height: 1.5;
  }

  /* Footer */
  .footer-container {
    padding: 2rem 1rem !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-columns {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .footer-column h4 {
    font-size: 1rem !important;
    margin-bottom: 0.8rem !important;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens - even more compact */
  .hero {
    height: 350px !important;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .cta-title {
    font-size: 1rem !important;
  }

  .cta-subtitle {
    font-size: 0.9rem !important;
  }

  .working-process h2 {
    font-size: 1.5rem !important;
  }

  .locations-white h2 {
    font-size: 1.3rem !important;
  }

  .service-image img {
    height: 200px !important;
  }

  .process-box {
    padding: 1.2rem !important;
  }

  .process-box h3 {
    font-size: 1rem !important;
  }

  .process-box p {
    font-size: 0.8rem !important;
  }

  .Unlimited_adventures .background-text {
    font-size: 25px !important;
    word-spacing: 15px !important;
  }

  .nav-left img {
    height: 30px !important;
  }

  .brand-text h3 {
    font-size: 14px !important;
  }

  .brand-text small {
    font-size: 10px !important;
  }

  .icon_home {
    width: 25px !important;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 8px;
}



.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}


.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.search-btn:hover {
  color: #333;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 600px;
  background: linear-gradient(rgba(255, 166, 0, 0.064), rgba(0, 0, 0, 0.69)),
    url("../images/673a9e6050e3f53e9240be01_Image\ 3.webp");
  background-size: cover;
  background-position: center;
  /* margin-top: 80px; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.2) inset;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  overflow: hidden;
}

.hero-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-left: 30px;
  font-family: "Raleway", sans-serif;
}

.hero-title {
  font-family: "Raleway", sans-serif;
  font-size: 9rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: #fff;
}

.section-title {
  font-size: 4.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  color: #000000;
  font-family: "Sansation", sans-serif;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-content {
  padding: 2rem 0;
}

.service-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: "Sansation", sans-serif;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
  text-align: justify;
  margin-bottom: 2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #666;
  border: 1px solid #e0e0e0;
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Testimonial Section */
.testimonial {
  background: #1a1a1a;
  color: white;
  padding: 6rem 0;
  position: relative;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  margin-bottom: 2rem;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.author-title {
  color: #999;
  font-size: 0.875rem;
}

.testimonial-nav {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #333;
  background: transparent;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: white;
  color: #333;
}

/* Values Section - Gift Card Style */
.values {
  padding: 6rem 2rem;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Value block container */
.value-block {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift for gift card effect */
.value-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Alternate block layout */
.value-block.reverse {
  flex-direction: row-reverse;
}

/* Accent Panel - sharp, stylish */
.value-accent {
  flex: 0 0 30%;
  background: linear-gradient(135deg, #668cff 0%, #3355cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform: skewX(-15deg);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  position: relative;
  transition: all 0.4s ease;
}

/* Accent hover scale */
.value-block:hover .value-accent {
  transform: skewX(-15deg) scale(1.05);
}

/* Heading inside accent */
.value-accent h3.value-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
    position: relative;
  font-family: "Sansation", sans-serif;
}

/* Decorative underline inside accent */
.value-accent::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Paragraph container - white gift card with shadow */
.value-description {
  flex: 1;
  padding: 2rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  background: #ffffff;
  border-radius: 0 16px 16px 0; /* match accent panel edge */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-block:hover .value-description {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Accent colors */
.accent-blue {
  background: linear-gradient(135deg, #b6c8ff66 100%, #ffffff41 0%);
}

.accent-orange {
  background: linear-gradient(135deg, #b6c8ff66 100%, #ffffff41 0%);
}

.accent-green {
  background: linear-gradient(135deg, #b6c8ff66 100%, #ffffff41 0%);
}

/* CTA button */
.cta-section {
  background: #f5f5f5;
  color: #000000;
  padding: 6rem 2rem;
  text-align: center;
  width: 99%;
  align-items: center;
  margin: 0 auto; /* centers the section horizontally */
}

.cta-title {
  font-size: 1rem;
}

.cta-subtitle {
  font-size: 4rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 1300px;
  line-height: 1.3;
  margin: 50px auto 3rem;
  font-weight: 400;
  color: #000000;
   font-family: "Sansation", sans-serif;
}

.icon_home {
  width: 100px;
  height: auto;
  margin-top: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  border: solid 2px #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

.arrow {
  margin-left: 0.5rem;
}

.working-process {
  text-align: center;
  padding: 80px 20px;
}

.working-process h2 {
  font-size: 4.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  color: #000000;
  font-family: "Sansation", sans-serif;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 80px; /* More spacing between cards */
}

.process-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 40px 30px;
  width: 280px;
  text-align: center;
  transition: 0.3s;
}

.process-box:hover {
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.process-box img {
  width: 70px;
  margin-bottom: 25px;
  opacity: 0.7;
}

.process-box h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #000000;
  font-family: "Sansation", sans-serif;
}

.process-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Zig Zag effect */
.process-box:nth-child(odd) {
  margin-top: 60px; /* Shift down odd cards */
}

@media (max-width: 768px) {
  .process-box {
    width: 100%;
  }
  .process-box:nth-child(odd) {
    margin-top: 0; /* Remove zig zag on mobile */
  }
}

.Unlimited_adventures {
  text-align: center;
  padding: 60px 20px;
}

.Unlimited_adventures h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.Unlimited_adventures h2 span {
  color: #999;
  font-weight: 400;
}

.Unlimited_adventures .card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 60px 20px;
  width: 90%; /* nearly full width */
  margin: 0 auto;
  position: relative;
}

.Unlimited_adventures .background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 700;
  word-spacing: 160px;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.Unlimited_adventures img {
  width: 800px; /* bigger image for wide layout */
  max-width: 100%;
  z-index: 1;
  position: relative;
}

.Unlimited_adventures p {
  margin-top: 30px;
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer - Dark Blue Theme */
.site-footer {
  background: linear-gradient(180deg, #0b1d39 0%, #0a1730 100%);
  color: #e2e8f0;
  padding: 90px 0 44px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 56px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 44px;
}

.footer-brand {
  max-width: 560px;
}

.footer-logo-wrap {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12), 0 12px 36px rgba(0, 0, 0, 0.25);
  margin-bottom: 14px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.footer-company {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}

.footer-about {
  font-size: 15px;
  color: #bcd0e7;
  line-height: 1.9;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 16px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: #f5c339;
  border-radius: 2px;
  margin-top: 8px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #d6e1f2;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  color: #f5c339;
  opacity: 1;
}

.footer-contact span {
  color: #8fb0d8;
  margin-right: 6px;
}

.footer-contact a {
  color: #d6e1f2;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-note {
  color: #bcd0e7;
  font-size: 14px;
  margin: 0 0 12px;
}

.footer-form {
  display: flex;
  gap: 10px;
}

.footer-input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #e8f1ff;
}

.footer-input::placeholder {
  color: #c7d5ea;
}

.footer-btn {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #0e5ba6, #1581d8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 129, 216, 0.35);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
}

.footer-copy {
  color: #a6b8d4;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-link {
  color: #dfe9f6;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #102a56;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: #123573;
  color: #f5c339;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-form {
    flex-direction: column;
  }
  .footer-btn {
    width: 100%;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.locations-white {
  width: 100%;
  background: #fff;
  padding: 100px 7%;
  text-align: center;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Title */
.locations-white h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  font-family: "Sansation", sans-serif;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
}

.locations-white h2::after {
  content: "";
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  display: block;
  margin: 18px auto 0;
  border-radius: 3px;
  animation: gradientMove 3s infinite linear;
}

/* Grid Layout */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  gap: 0; /* removes gaps since you already use borders */
}

/* Each Location Box */
.location {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 50px 20px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  color: #222;
  letter-spacing: 1px;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  transition: all 0.35s ease;
  opacity: 0; /* hidden by default */
}

/* Hover Effects */
.location:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
  color: #0077ff;
}

.location::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  border-radius: 2px;
  transition: width 0.35s ease;
  transform: translateX(-50%);
}

.location:hover::after {
  width: 60%;
}

/* Slide-in Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(150px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-trigger animations */
.location:nth-child(odd) {
  animation: slideInLeft 1s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.location:nth-child(even) {
  animation: slideInRight 1s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

/* Stagger delays */
.location:nth-child(1) {
  animation-delay: 0.2s;
}

.location:nth-child(2) {
  animation-delay: 0.4s;
}

.location:nth-child(3) {
  animation-delay: 0.6s;
}

.location:nth-child(4) {
  animation-delay: 0.8s;
}

.location:nth-child(5) {
  animation-delay: 1s;
}

.location:nth-child(6) {
  animation-delay: 1.2s;
}

/* Gradient bar animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Keyframes for flying in */
@keyframes flyIn {
  0% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* When visible */
.location.visible {
  animation: flyIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}



/* responsive section  */



/* MOBILE RESPONSIVE  FOR SERVICE PART*/
@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    display: flex !important;          /* switch from grid to flex */
    flex-direction: column;           /* stack vertically */
    text-align: center;
    gap: 2rem;                        /* spacing between image & content */
    direction: ltr !important;        /* reset rtl issue */
  }

  .service-image {
    order: 0;                         /* show image first */
    margin-bottom: 1.5rem;
  }

  .service-content {
    order: 1;                         /* content comes after image */
    padding: 0;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-tags {
    justify-content: center;
  }

  .service-image img {
    height: auto;                     /* adjust height for mobile */
    max-width: 100%;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}



/* RESPONSIVE FOR CTA PART */



/* RESPONSIVE CTA SECTION */

/* Tablet */
@media (max-width: 1024px) {
  .cta-title {
    font-size: 2.5rem !important;
  }

  .cta-subtitle {
    font-size: 1.8rem !important;
    line-height: 1.5 !important;
    padding: 0 1rem !important;
  }

  .icon_home {
    width: 60px !important;
  }

  .cta-button {
    font-size: 1.1rem !important;
    padding: 0.8rem 1.5rem !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem !important;
  }

  .cta-subtitle {
    font-size: 1.5rem !important;
    line-height: 1.6 !important;
    padding: 0 1rem !important;
  }

  .icon_home {
    width: 50px !important;
    margin: 15px 0 !important;
  }

  .cta-button {
    font-size: 1rem !important;
    padding: 0.7rem 1.3rem !important;
  }
}
