/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --glass: rgba(255, 255, 255, 0.08);
  --blur: 20px;
  --yellow: #f5b301;
  --red: #e12b2b;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --gold: #d4af37;
  --blur: 18px;
  --accent: #f5b61a;
  --muted: #b5b5b5;
  --accent: #f5b700;
  --danger: #e62e2e;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(245, 183, 0, 0.15), transparent 40%),
    var(--bg);
  position: relative;
}

img {
  width: 100%;
  height: auto;
}
a{text-decoration: none;}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: var(--yellow);
  font-size: 0.9rem;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.top-left span {
  margin-right: 1.5rem;
  font-weight: 600;
}

.top-left i {
  margin-right: 6px;
}



.top-right a {
  background: #f2b705;
  color: #000;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 6px;
  text-decoration: none;
}

/* ================= MAIN HEADER ================= */
.main-header {
  background: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  position: relative;
}

/* Logo */
.main-header .logo {
  display: flex;
  align-items: center;
  color: #f2b705;
  font-family: 'Oswald', sans-serif;
}

.main-header .logo img {
  width: 200px;
  margin-right: 12px;
}


/* Navigation */
.nav {
  display: flex;
  gap: 80px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  /* background: linear-gradient(120deg,
      var(--glass),
      rgba(255, 193, 7, 0.15),
      var(--glass)); */
}

.nav a::after {
  content: '';
  width: 0;
  height: 2px;
  background: #f2b705;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* Enquiry Button */
.enquiry-btn {
  background: #f2b705;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: #d9a404;
}

/* Mobile Button */
.mobile-btn {
  display: none;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0;
    display: none;
    gap: 20px;
  }

  .nav.show {
    display: flex;
    z-index: 99;
    gap: 20px;
  }

  .nav a {
    padding: 0.7rem 0;
  }

  .mobile-btn {
    display: inline-block;
    margin-top: 1.5rem;
  }

  .header-content>.enquiry-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .top-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .top-left span {
    display: block;
    margin: 5px 0;
  }
}


.hero-slider {
  overflow: hidden;
}

.heroSwiper {
  height: 75vh;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .45) 20%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

/* TEXT */
.hero-content {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-45%);
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  /* font-family: "Pacifico", cursive; */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 800;
  line-height: 1.5;
  font-weight: 600;
}

/* ARROWS */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 5;
}

.hero-nav.prev {
  left: 20px;
}

.hero-nav.next {
  right: 20px;
}

/* PAGINATION */
.hero-pagination {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .6);
  border-radius: 0;
  margin: 0 3px;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 768px) {
  .heroSwiper {
    height: 65vh;
  }

  .top-left {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .top-left span:last-child {
    display: none !important;
  }

}

@media (max-width: 480px) {
  .heroSwiper {
    height: 40vh;
  }

  .top-left {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .top-left span {
    font-size: 10px;
  }

  .top-left span:last-child {
    display: none !important;
  }
}


/* ================= FEATURES SECTION ================= */
.features-section {
  padding: 5rem 0;
  background: radial-gradient(circle at top, #0b0b0b 70%, #0b0b0b 70%);
  /* background: linear-gradient(120deg,
      transparent,
      rgba(255, 193, 7, 0.15),
      transparent); */
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 1.5rem;
}

/* Glass Card */
.feature-card {
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 193, 7, 0.15),
      transparent);
  /* Apple-style black glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Soft glow on hover */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 193, 7, 0.15),
      transparent);
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Icon */
.feature-card .icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f2b705;
  box-shadow: 0 0 25px rgba(242, 183, 5, 0.35);
}

/* Text */
.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16pxrem;
  margin-top: 1.5rem;
  color: #f2b705;
  letter-spacing: 1px;
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #ddd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}


.footermenu {
  display: none;
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 6rem 0;
  background: radial-gradient(circle at top, #1a1a1a, #000 70%);
  color: #fff;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: 0 1.5rem;
  align-items: center;
}

.aboutSec {
  max-width: 1300px;
  margin: auto;
  padding: 0 1.5rem;
}

/* Titles */
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
}

.section-title span {
  color: #f2b705;
}

.sub-title {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  color: #f2b705;
  font-family: 'Anton', sans-serif;
}

/* Text */
.aboutSec p,
.about-text p {
  margin-top: 1.2rem;
  color: #bbb;
  line-height: 1.7;
}

/* ================= VIDEO ================= */
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-wrapper video {
  width: 100%;
  /* height: 500px; */
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02)),
    var(--glass-bg);
  display: block;
  border-radius: 20px;
}

/* Play Button */
.video-wrapper .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #f2b705;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(242, 183, 5, 0.4);
}

/* Hide button when playing */
.video-wrapper.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.4rem;
  }
}








.services {
  background: radial-gradient(circle at top,
      #000,
      #000000 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  color: var(--text-primary);
}

.cards-container {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.06),
      transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 193, 7, 0.15),
      transparent);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Mobile spacing */
@media (max-width: 480px) {
  .card {
    padding: 1.8rem 1.4rem;
  }
}



/* ---------- SECTION ---------- */
.products-section {
  background: radial-gradient(circle at top, #1a1a1a, #000 70%);
  color: var(--text-primary);
}

.products {
  max-width: 1400px;
  margin: auto;
  padding: 4rem 1.5rem 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.section-header h2 span {
  color: var(--yellow);
}

.section-header p {
  max-width: 650px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tiles {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== TILE ===== */
.tile {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .65);
}

/* ===== IMAGE SIDE ===== */
.tile-image {
  position: relative;
  background: radial-gradient(circle at center, rgba(245, 183, 0, .25), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-image img {
  width: 40%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .8));
  margin: 60px 15px;
}

/* BADGES */
.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 9;
}

.badge.type {
  top: 18px;
  right: 18px;
  left: auto;
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* ===== CONTENT ===== */
.tile-content {
  padding: 32px 36px;
  gap: 30px;
}

/* LEFT TEXT */
.tile-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tile-text h2 span {
  color: var(--accent);
}

.tile-text .abv {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.tile-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* SPECS */
.tile-specs {
  display: flex;
  /* flex-direction: column; */
  gap: 14px;
  margin-top: 20px;
}

.spec {
  padding: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  width: 100%;
}

.spec span {
  display: block;
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}

/* CTA */
.tile-cta {
  grid-column: 1/3;
  margin-top: 24px;
}

.tile-cta a {
  display: block;
  padding: 14px;
  text-align: center;
  background: var(--danger);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .tile {
    grid-template-columns: 1fr;
  }

  .tile-content {
    grid-template-columns: 1fr;
  }

  .tile-cta {
    grid-column: auto;
  }
}

@media(max-width:480px) {

  .tiles,
  .tile {
    grid-template-columns: 1fr;
  }

  .tile-content {
    grid-template-columns: 1fr;
  }

  .tile-cta {
    grid-column: auto;
  }
  .tile-image img {
    width: 40%;
    margin: 50px 15px 15px 15px;
}
}

/* ---------- BADGES ---------- */
.badges {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  background: var(--yellow);
  color: #000;
}

.badge.alt {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ---------- IMAGE ---------- */
.product-image {
  text-align: center;
  margin: 1.2rem 0 1.5rem;
}

.product-image img {
  max-height: 300px;
  width: auto;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* ---------- CONTENT ---------- */
.product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.product-card h3 span {
  color: var(--yellow);
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* ---------- STATS ---------- */
.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
}

.stat small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.stat strong {
  font-size: 0.85rem;
}

/* ---------- BUTTON ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ff3b3b;
}

/* ---------- MOBILE ---------- */
@media (max-width: 480px) {
  .products {
    padding: 3rem 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}




.ctasection {
  margin: 0 auto;
  /* background:
    radial-gradient(1200px 600px at 70% -10%, #222 0%, transparent 60%),
    radial-gradient(800px 400px at 10% 110%, #1a1a1a 0%, transparent 60%),
    #000; */
  display: grid;
  place-items: center;
  padding: 4rem 0;
  max-width: 1400px;
}

.page {

  padding: 24px;
  width: 100%;
}

.ctasection .glass-card {
  /* max-width: 760px; */
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 24px;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02)),
    var(--glass-bg);

  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);

  border: 1px solid var(--glass-border);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.glass-card h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.glass-card p {
  margin: 0 auto 32px;
  max-width: 520px;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg,
      #ffd45a,
      var(--accent));

  color: #111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;

  box-shadow:
    0 10px 30px rgba(245, 182, 26, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  transition: transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  width: auto !important;
}

.cta-btn .icon {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 45px rgba(245, 182, 26, 0.45);
}

.cta-btn:hover .icon {
  transform: translate(2px, -2px);
}

.cta-btn:active {
  transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .glass-card {
    border-radius: 18px;
  }

  .ctasection .glass-card {
    flex-direction: column;
    row-gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .ctasection .glass-card {}

  .ctasection .glass-card h2 {
    text-align: center;
  }

  .ctasection .glass-card p {
    text-align: center;
    margin-bottom: 0;
  }

}




/* ---------------- SECTION ---------------- */
.contact-section {
  padding: 100px 20px;
}

.container {
  max-width: 1400px;
  margin: auto;
}

/* ---------------- HEADER ---------------- */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.section-header h1 span {
  color: var(--accent);
}

.section-header p {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------------- GRID ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ---------------- GLASS CARD ---------------- */
.glass-card {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 35px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 100%;
}

.glass-card h2 {
  color: var(--accent);
  margin-bottom: 25px;
  font-size: 1.35rem;
}

/* ---------------- FORM ---------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

label {
  font-size: 0.75rem;
  margin-bottom: 6px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-align: left;
}

input,
textarea {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text-primary);
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 59, 59, 0.25);
  outline: none;
}

textarea {
  resize: none;
  min-height: 130px;
}

button {
  margin-top: 22px;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff3b3b, #d92121);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 0, 0, 0.35);
}

/* ---------------- MAP ---------------- */
.map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------- INFO ---------------- */
.info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-size: 0.85rem;
}

.info h4 {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info p {
  color: var(--muted);
  line-height: 1.6;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .info {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 26px;
  }
}




/* ===== FOOTER ===== */
.footer {
  color: var(--text-primary);
  padding: 80px 20px 0;
  background:
    radial-gradient(circle at top, rgba(245, 183, 0, .12), transparent 45%),
    var(--bg);
}

.footer-container {
  max-width: 1400px;
  margin: auto;
}

/* ===== GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 30px;
}

/* ===== GLASS BLOCK ===== */
.footer-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* ===== LOGO ===== */
.footer-block img {
  width: 200px;
  margin-bottom: 18px;
}

.site-url {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 25px;
}

/* ===== SOCIAL ===== */
.social {
  display: flex;
  gap: 14px;
}

.social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--glass-border);
  color: #fff;
  transition: .3s;
}

.social a:hover {
  background: var(--accent);
  color: #000;
}

/* ===== TITLES ===== */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ===== LINKS ===== */
.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;

}

.links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  text-align: left;
}

.links a:hover {
  color: var(--accent);
}

/* ===== INFO ===== */
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.info-item i {
  color: var(--accent);
  margin-top: 4px;
}

/* ===== COPYRIGHT ===== */
.copyright {
  margin-top: 70px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}





/* HERO */
.aboutHero {
  text-align: center;
  padding: 60px 20px 60px;
  color: var(--text-primary);
}

.aboutHero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
}

.aboutHero p {
  margin-top: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


/* WHO WE ARE */
.who-we-are .glass h2 {
  color: var(--accent);
}

/* GRID REUSE */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* GLASS CARD */
.glass {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
}

.glass h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--yellow);
}

.glass p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}



/* =============================
   VIDEO SECTION
============================= */
.video-section {
  background: var(--bg-dark);
}

.video-section .video-wrap {
  position: relative;
  max-width: 700px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-section .video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY */
.video-section .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
}

.video-section .video-overlay:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* PLAY BUTTON */
.video-section .play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 15px;
  transition: 0.4s;
}

.video-section .video-overlay:hover .play-btn {
  transform: scale(1.1);
  background: var(--gold);
  color: #000;
}

.video-section .video-overlay span {
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-main);
}

/* MOBILE */
@media (max-width: 768px) {
  .video-section {
    padding: 80px 0;
  }

  .video-section .play-btn {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}


.whyChooseUs {
  padding: 40px 0;
}

.whyChooseUs h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  margin-bottom: 50px;
}

.whyChooseUs h3 {
  color: var(--text-primary);
}



.sectionGlobal {
  padding: 80px 0;
}

.sectionGlobal h2 {
  color: var(--text-primary);
  text-align: center;
}

.sectionGlobal p {
  text-align: center;
}






/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ================= MODAL BOX ================= */
.modal-box {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 35px;
  color: #fff;
  position: relative;
  transform: scale(0.9);
  transition: 0.4s ease;
  z-index: 9999999999999999999999999999999;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

/* ================= CLOSE BUTTON ================= */
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #cfa44a;
  font-size: 32px;
  cursor: pointer;
}

/* ================= MODAL CONTENT ================= */
.modal-box h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.modal-box h2 span {
  color: #cfa44a;
}

.modal-box p {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 25px;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .modal-box {
    margin: 0 15px;
    padding: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}






/* ================= INSTAGRAM FEED ================= */
.ig-feed-section {
  padding: 100px 20px;
  text-align: center;
}

.ig-feed-section h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
}

.ig-subtitle {
  margin: 10px 0 50px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* GRID */
.ig-feed-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* POST CARD */
.ig-post {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02)),
    var(--glass-bg);

  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);

  border: 1px solid var(--glass-border);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: left;
  border-radius: 10px;
}

/* HEADER */
.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.ig-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ig-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.ig-user strong {
  font-size: 13px;
  color: var(--accent);
}

.ig-user span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.ig-btn {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 4px;
  text-decoration: none;
}

/* MEDIA */
.ig-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* FOOTER */
.ig-footer {
  padding: 10px;
  font-size: 13px;
}

.ig-footer a {
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
}

.likes {
  margin: 6px 0;
  font-weight: 600;
  color: var(--muted);
}

.caption {
  line-height: 1.4;
  color: #888;
}

.comments {
  font-size: 12px;
  color: var(--muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .ig-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ig-feed-grid {
    grid-template-columns: 1fr;
  }

  .ig-media img {
    height: 420px;
  }
}



@media(max-width:767px) {
  .footer {
    margin-bottom: 60px !important;
  }

  .footermenu {
    /* background: #ff7d0180; */
    background: #00000080;
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0%;
    padding: 10px;
    /* border-radius: 10px 10px 0 0; */
    display: block;
    z-index: 999;
    backdrop-filter: blur(10px);
  }

  .footermenu ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    gap: 20px;
  }

  .footermenu ul li {
    position: relative;
    width: 100%;
  }

  .footermenu ul li a {
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #f5b301;
  }

}