/* ============================
   GLOBAL
============================ */
body {
    margin: 0;
    padding: 0;
    background: #0f0f0f;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* ============================
   HEADER
============================ */
.services-header {
    text-align: center;
    padding: 82px 20px 34px;
    background:
      radial-gradient(circle at 50% 0%, rgba(103, 223, 51, 0.18), transparent 38%),
      linear-gradient(180deg, #101010 0%, #0f0f0f 100%);
}

.services-eyebrow {
    display: inline-block;
    color: #67df33;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-header h1 {
    font-size: clamp(2.7rem, 7vw, 5rem);
    color: #67df33;
    margin: 0 0 14px;
    font-weight: 800;
    line-height: 1;
}

.services-header p {
    color: #d9d9d9;
    font-size: clamp(1rem, 2vw, 1.22rem);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ============================
   SERVICES GRID
============================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 20px 80px;
    max-width: 1220px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    position: relative;
    isolation: isolate;
    min-height: 100%;
    overflow: hidden;
    background:
      linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
      #151515;
    padding: 26px;
    border-radius: 14px;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
    animation: serviceCardIn 0.65s ease both;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(2) { animation-delay: 0.06s; }
.service-card:nth-child(3) { animation-delay: 0.12s; }
.service-card:nth-child(4) { animation-delay: 0.18s; }
.service-card:nth-child(5) { animation-delay: 0.24s; }
.service-card:nth-child(6) { animation-delay: 0.30s; }
.service-card:nth-child(7) { animation-delay: 0.36s; }
.service-card:nth-child(8) { animation-delay: 0.42s; }

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 82% 8%, rgba(103, 223, 51, 0.22), transparent 34%);
    opacity: 0.7;
}

.service-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #67df33, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), 0 0 24px rgba(103, 223, 51, 0.18);
    border-color: rgba(103, 223, 51, 0.65);
}

.service-card:hover::after {
    opacity: 1;
}

.service-badge {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    align-self: flex-start;
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(103, 223, 51, 0.13);
    color: #8aff62;
    border: 1px solid rgba(103, 223, 51, 0.42);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-visual {
    width: 108px;
    height: 108px;
    margin: 0 auto 24px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.service-icon {
    width: 82px;
    height: 82px;
    display: block;
    object-fit: contain;
    border: 0;
    margin: 0;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.32));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 18px rgba(103, 223, 51, 0.18));
}

.service-card:first-child .service-visual {
    width: min(154px, 46vw);
    height: 76px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.service-card:first-child .service-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.34));
}

.service-card:nth-child(7) .service-visual {
    width: 92px;
    height: 92px;
}

.service-card:nth-child(7) .service-icon {
    width: 66px;
    height: 66px;
}

.service-card h3 {
    font-size: clamp(1.25rem, 4vw, 1.55rem);
    color: #67df33;
    margin: 0 0 12px;
    line-height: 1.15;
}

.service-card h3 a {
    color: inherit;
    text-decoration: none;
}

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

.service-card p {
    font-size: 0.98rem;
    color: #d7d7d7;
    line-height: 1.62;
    margin: 0;
}

.service-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    padding-top: 18px;
}

.service-points li {
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #f0f0f0;
    font-size: 0.78rem;
    font-weight: 700;
}

@keyframes serviceCardIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   DESKTOP GRID
============================ */
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
        padding: 56px 34px 110px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 1.45rem;
    }

    .service-card p {
        font-size: 1.02rem;
    }
}

@media (min-width: 1180px) {
    .services-grid {
        gap: 32px;
        max-width: 1280px;
    }

    .service-card {
        padding: 34px;
    }
}

/* ============================
   LOCATION SECTION
============================ */
.location-section {
    background: #0f0f0f;
    padding: 70px 20px;
    text-align: center;
}

.location-title {
    font-size: 2.4rem;
    color: #67df33;
    margin-bottom: 35px;
    font-weight: 800;
}

.map-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #222;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.map-wrapper iframe {
    width: 100%;
    height: 460px;
    border: none;
}

@media (min-width: 900px) {
    .map-wrapper iframe {
        height: 550px;
    }
}



/* ===========================
/* ===========================
   AWAN AUTO FOOTER — MOBILE FIRST
   =========================== */

.awan-footer {
  background: #0d0d0d;
  color: #fff;
  padding: 55px 25px 40px;
  margin-top: 0px;
  font-family: Arial, sans-serif;
}

/* MOBILE GRID (1 column) */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.footer-col {
  width: 100%;
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 12px;
}

/* Slogan */
.footer-slogan {
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Titles */
.footer-title {
  color: #67df33;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Lists */
.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
  color: #bfbfbf;
  font-size: 0.95rem;
}

.footer-links li a {
  color: #bfbfbf;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links li a:hover {
  color: #67df33;
  padding-left: 5px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-socials img {
  width: 28px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-socials img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px #67df33);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid #222;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom-right {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-bottom-right img {
  width: 24px;
  filter: brightness(0) invert(1);
}



/* ===========================
     DESKTOP FOOTER (≥ 900px)
   =========================== */
@media (min-width: 900px) {

  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr) 1fr;
    gap: 55px;

    /* NEW → ensures all columns align titles perfectly */
    align-items: start;
  }

  /* Make all columns consistent vertical structure */
  .footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Fix title alignment */
  .footer-title {
    margin-top: 10px;       /* NEW → uniform spacing */
    padding-top: 0;
    line-height: 1.2;
  }

  /* Increase logo size on desktop */
  .footer-logo {
    width: 180px;          /* increased from 150px */
  }

  /* Bottom bar alignment stays the same */
.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;   /* ⬅ CENTER ALL CONTENT */
    align-items: center;
    text-align: center;        /* ⬅ TEXT SHOULD ALSO BE CENTERED */
    gap: 20px;                 /* OPTIONAL: space between text & icons */
}
}

/* Final footer cleanup shared across all pages. */
.awan-footer {
  background: #0d0d0d !important;
  color: #fff;
  padding: 48px 22px 26px !important;
  overflow: hidden;
}

.footer-container {
  width: min(100%, 1180px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 34px !important;
  align-items: start !important;
}

.footer-col {
  min-width: 0;
}

.footer-brand-col {
  max-width: 420px;
}

.footer-logo {
  width: clamp(150px, 38vw, 220px) !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 0 16px !important;
}

.footer-slogan {
  margin: 0 !important;
  max-width: 440px;
  color: #d8d8d8 !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  overflow-wrap: anywhere;
}

.footer-title {
  margin: 0 0 14px !important;
  color: #67df33 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.footer-links,
.footer-info {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-links li,
.footer-info li {
  margin: 0 0 10px !important;
  color: #cfcfcf !important;
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
}

.footer-links a,
.footer-info a {
  color: #cfcfcf !important;
  text-decoration: none;
}

.footer-links a:hover,
.footer-info a:hover {
  color: #67df33 !important;
}

.footer-bottom {
  width: min(100%, 1180px) !important;
  margin: 34px auto 0 !important;
  padding-top: 22px !important;
  border-top: 1px solid #242424 !important;
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
  color: #8f8f8f !important;
}

.footer-bottom-right,
.footer-socials {
  display: none !important;
}

@media (min-width: 720px) {
  .footer-container {
    grid-template-columns: 1.4fr 1fr 1fr !important;
  }
}

@media (min-width: 1040px) {
  .awan-footer {
    padding: 60px 34px 30px !important;
  }

  .footer-container {
    grid-template-columns: 1.55fr repeat(4, 1fr) !important;
    gap: clamp(28px, 3vw, 48px) !important;
  }
}
