/* =========================================
   ROOT VARIABLES (Green Theme)
   ========================================= */
:root {
  /* Core Colors */
  --font-main: "Poppins", sans-serif;
  --color-white: #ffffff;
  --color-black: #0a0f0a; /* Cohesive, deep greenish-black */
  --text-muted: #e0c47a;  /* Elegant contrast */
  --overlay-color: rgba(10, 15, 10, 0.607); 
  
  /* Primary Color Shades */
  --primary-main: #2d6a4f; 
  --primary-light: #3d8a66; 
  --primary-dark: #1e4d38; 

  /* Layout & Accents */
  --light-bg: #fcfbf7;
  --input-border: #e2e8f0;
  --border-color: #e9ecef;
  --text-main: #111111;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Glassmorphism Variables */
  --glass-bg: rgba(45, 106, 79, 0.15); 
  --glass-border: rgba(45, 106, 79, 0.3);
  --glass-blur: blur(12px);

  /* Button Variables */
  --btn-bg: var(--primary-main); 
  --btn-text: var(--color-white);
  --btn-hover-bg: var(--primary-light); 
}

/* =========================================
   BASE STYLES
   ========================================= */
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-black) !important;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", serif;
}

p {
  font-size: 15px;
  color: #848289;
  line-height: 1.7;
}

.sub-heading {
  font-size: 3rem;
  color: var(--color-black);
}

@media (max-width: 480px) {
  .sub-heading {
    font-size: 1.9rem;
  }
}

.main-section {
  padding: 60px 0;
}

@media (max-width: 480px) {
  .main-section {
    padding: 30px 0;
  }
}

/* =========================================
   NAVBAR
   ========================================= */
.nav-wrapper {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  width: calc(100% - 20px);
  transition: all 0.4s ease-in-out;
}

.logo {
  height: 65px !important;
  width: 70px !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-white) !important;
  padding: 10px 25px !important;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper.sticky .nav-link {
  color: var(--primary-main) !important;
}

.nav-wrapper.sticky .nav-link::after {
  background-color: var(--primary-main) !important;
}

.nav-wrapper.sticky .nav-link:hover {
  color: var(--color-black) !important;
}

.nav-wrapper.sticky .nav-link:hover::after {
  background-color: var(--color-black) !important;
}

.navbar-toggler i {
  color: var(--color-white);
  font-size: 32px;
}

.nav-wrapper.sticky .navbar-toggler i {
  color: var(--primary-main) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 480px) {
  .nav-wrapper:not(.sticky) {
    background-color: var(--overlay-color);
  }
  .navbar-nav .nav-link::after {
    bottom: 2px;
    left: 0;
    width: 100%;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.bg-image {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-item.active .bg-image {
  transition: transform 10s ease-out;
  transform: scale(1.2);
}

.overlay-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--color-black) 0%,
    transparent 100%
  );
}

.content-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.text-box {
  pointer-events: auto;
  width: 100%;
}

.hero-title {
  font-size: clamp(32px, 7vw, 75px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero-title span {
  color: var(--text-muted);
}

.hero-para {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 35px;
}

/* Buttons */
.btn-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-luxury-icon {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s ease;
  border: 1px solid var(--btn-bg);
}

.btn-luxury-icon:hover {
  background: transparent;
  color: var(--primary-main);
  transform: translateY(-3px);
}

.btn-video {
  background: none;
  border: none;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.play-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary-main);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--primary-main);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Side Controllers */
.custom-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  border-radius: 50%;
  backdrop-filter: var(--glass-blur);
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--primary-main);
  border-color: var(--primary-main);
}

@media (max-width: 576px) {
  .custom-nav { display: none; }
  .btn-wrap { justify-content: center; text-align: center; }
  .text-box { text-align: center; }
  .hero-para { margin-left: auto; margin-right: auto; }
}

/* Scroll Mouse */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}

.mouse {
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 6px;
  background: var(--color-white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  border-radius: 2px;
  animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* =========================================
   SECOND SECTION
   ========================================= */
.hero-bg {
  background: linear-gradient(var(--overlay-color), var(--overlay-color)),
              url("./images/rooftop.png");
  background-size: cover;
  background-position: center;
}

.badge-outline {
  border: 1px solid #444;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: #aaa;
  display: inline-block;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  border: none;
  transition: transform 0.3s ease;
}

.btn-custom:hover {
  transform: scale(1.05);
  background-color: var(--btn-hover-bg);
}

.feature-card {
  background-color: #00000068;
  padding: 30px;
  border-bottom: 1px solid #222;
  transition: background 0.3s ease;
}

@media (min-width: 992px) {
  .border-lg-end { border-right: 1px solid #222; }
}

.feature-icon {
  color: var(--text-muted);
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.feature-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: white;
}

.feature-text {
  color: #bcbcbc;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.dev-item {
  border-bottom: 1px solid #eeeeee;
}

.dev-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-black);
  padding: 35px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: all 0.4s ease;
}

.dev-num {
  font-size: 0.85rem;
  color: #999999;
  width: 60px;
  font-weight: 500;
}

.dev-title-icon {
  font-size: 1.6rem;
  margin-right: 25px;
  color: #555555;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dev-title {
  font-size: 28px;
  font-weight: 400;
  flex-grow: 1;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrow-wrapper {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #bcbcbc;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dev-item.active .dev-title { color: var(--primary-main); }
.dev-item.active .dev-title-icon { color: var(--primary-main); transform: scale(1.15); }
.dev-item.active .arrow-wrapper { transform: rotate(180deg); color: var(--primary-main); }

.dev-content-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.dev-item.active .dev-content-container { grid-template-rows: 1fr; }
.dev-content-inner { min-height: 0; }

.about-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-black);
}

.content-body {
  padding-bottom: 50px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dev-item.active .content-body { opacity: 1; transform: translateY(0); }

.feature-box {
  background: var(--light-bg);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.price-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-black);
  margin-top: 15px;
  display: block;
}

.project-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .dev-title { font-size: 1.4rem; }
  .project-img { height: 300px; margin-top: 20px; }
  .dev-num { width: 40px; }
}

/* =========================================
   FLATS SECTION
   ========================================= */
.see-all-flats {
  background-color: var(--light-bg) !important;
  color: var(--color-black);
  font-family: var(--font-main);
}

.reveal-section { padding: 60px 0; }

@media (max-width: 480px) { .reveal-section { padding: 20px 0; } }

.sticky-column {
  position: sticky;
  top: 180px;
  height: fit-content;
}

.unit-row {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.5s ease;
  position: relative;
  background-color: transparent;
}

.unit-number {
  font-size: 5rem;
  color: rgba(45, 106, 79, 0.05); /* Tinted with green */
  position: absolute;
  left: -20px;
  top: 20px;
  z-index: -1;
  transition: 0.5s;
}

.unit-row:hover .unit-number {
  color: rgba(45, 106, 79, 0.1);
  transform: translateX(20px);
}

.unit-title {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-black);
}

.unit-title i { color: var(--primary-main); font-size: 1.5rem; }

.unit-description { max-width: 500px; line-height: 1.7; }

.bhk-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--primary-main);
  border: 1.5px solid var(--primary-main);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 500;
}

.unit-row::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 5px;
  height: 0;
  background: var(--primary-main);
  transition: 0.4s;
  transform: translateY(-50%);
}

.unit-row:hover::before { height: 80%; }

@media (max-width: 991px) {
  .sticky-column { position: relative; top: 0; }
  .unit-number { font-size: 4rem; }
}

/* =========================================
   FAQS SECTION
   ========================================= */
.faq-section { background-color: var(--color-white); }
.section-header { margin-bottom: 60px; }

.faq-step {
  position: relative;
  padding-bottom: 40px;
  border-left: 2px solid var(--border-color);
  padding-left: 45px;
  margin-left: 10px;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-step:last-child { border-left: 2px solid transparent; }

.step-dot {
  position: absolute;
  left: -9px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  transition: 0.4s ease;
  z-index: 2;
}

.faq-q-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  transition: 0.3s;
  color: var(--text-main);
}
.faq-q:hover { color: var(--primary-main); }

.faq-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: #bbb;
  margin-bottom: 8px;
  display: block;
}

.toggle-icon {
  font-size: 1.2rem;
  color: var(--border-color);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-q-trigger:not(.collapsed) .faq-q { color: var(--primary-main); }
.faq-q-trigger:not(.collapsed) .toggle-icon {
  transform: rotate(180deg);
  color: var(--primary-main);
}

.faq-step:has(.faq-q-trigger:not(.collapsed)) .step-dot {
  background: var(--primary-main);
  border-color: var(--primary-main);
  box-shadow: 0 0 15px rgba(45, 106, 79, 0.4);
  transform: scale(1.2);
}
.faq-step:has(.faq-q-trigger:not(.collapsed)) { border-left-color: var(--primary-main); }

.faq-a {
  line-height: 1.8;
  padding-top: 20px;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-q { font-size: 1.2rem; }
  .faq-step { padding-left: 30px; }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer-parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: var(--font-main);
  color: var(--color-white);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111111;
  z-index: 1;
}

.container { z-index: 2; }

.footer-title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 35px;
  color: var(--color-white);
}

.footer-nav li { margin-bottom: 15px; }
.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 1rem;
}

.footer-nav a:hover {
  color: var(--primary-main);
  padding-left: 8px;
}

.footer-icon {
  color: var(--primary-main);
  margin-right: 12px;
  font-size: 22px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.02);
}

.social-links a:hover {
  background: var(--primary-main);
  border-color: var(--primary-main);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(45, 106, 79, 0.2);
}

.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

@media (max-width: 768px) {
  .footer-parallax {
    background-attachment: scroll;
    padding: 60px 0 30px;
  }
  .footer-title { margin-top: 20px; margin-bottom: 20px; }
}

/* =========================================
   MODALS & VIDEO
   ========================================= */
#videoModal .modal-content { background-color: var(--color-black) !important; }
.video-full-screen { width: auto; height: 100vh; object-fit: cover; }
.modal.fade .modal-dialog { transition: transform 0.6s ease-out; }

/* =========================================
   FLATS HERO BANNER
   ========================================= */
.flats-hero-wrapper {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.flats-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("./images/view.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.flats-hero-wrapper.loaded .flats-bg-image { transform: scale(1); }

.flats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    var(--color-black) 0%,
    rgba(10, 15, 10, 0.55) 55%,
    rgba(10, 15, 10, 0.25) 100%
  );
}

.flats-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 60px;
  max-width: 920px;
}

.flats-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.1;
  margin: 18px 0 18px;
}

.flats-title span { color: var(--text-muted); }

.flats-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 36px;
}

.flats-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.flats-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
}

.flats-tag.gold { /* Kept class name to avoid breaking HTML */
  border-color: var(--primary-main);
  color: var(--color-white);
  background: var(--glass-bg);
}

.flats-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 60px;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.flats-breadcrumb a { color: rgba(255, 255, 255, 0.45); text-decoration: none; transition: color 0.3s; }
.flats-breadcrumb a:hover { color: var(--primary-main); }
.flats-breadcrumb .sep { font-size: 10px; }
.flats-breadcrumb .current { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 576px) {
  .flats-content { padding: 0 24px; }
  .flats-breadcrumb { padding: 12px 24px; }
}

/* =========================================
   AGENCY SECTION
   ========================================= */
.agency-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--light-bg);
  color: var(--color-black);
}

.agency-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.heading-container { display: flex; flex-direction: column; gap: 20px; }

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  width: fit-content;
  color: rgba(10, 15, 10, 0.5);
}

.about-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-main);
  border-radius: 50%;
}

.main-title {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
  color: var(--color-black);
}

.main-title span { color: var(--primary-main); }

.desc-container p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 15, 10, 0.6);
  margin: 0;
}

.agency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }

.card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.card-icon svg { width: 28px; height: 28px; }

.gold-bg { background-color: var(--primary-main); } /* Kept original HTML classes */
.black-bg { background-color: var(--color-black); }

.card-text h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--color-black);
}

.card-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 15, 10, 0.5);
  margin: 0;
}

.agency-media { position: relative; width: 100%; height: 550px; }
.main-img { width: 75%; height: 100%; object-fit: cover; border-radius: 24px; }

.video-overlay {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 10px solid var(--color-white);
  background-color: var(--color-black); 
}

.video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--primary-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(45, 106, 79, 0.4);
  z-index: 2; 
  transition: var(--transition), opacity 0.3s ease;
}

.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

@media (max-width: 1024px) {
  .agency-header { grid-template-columns: 1fr; }
  .agency-cards { grid-template-columns: 1fr; }
  .agency-media { height: auto; display: flex; flex-direction: column; gap: 20px; }
  .main-img, .video-overlay {
    position: relative;
    width: 100%;
    transform: none;
    top: 0;
    height: 400px;
  }
}

/* =========================================
   INFO & STATS SECTION
   ========================================= */
.info-stats-section {
  background-color: var(--light-bg);
  padding: 20px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.info-heading h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
  color: var(--color-black);
}

.info-text { display: flex; flex-direction: column; gap: 25px; }
.info-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(10, 15, 10, 0.7);
  margin: 0;
}

.stats-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-bottom: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  border-right: 1px solid rgba(10, 15, 10, 0.1); 
  padding: 0 20px;
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-title { font-size: 0.9rem; color: var(--primary-main); font-weight: 500; }

.stat-value {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-black);
  transition: var(--transition);
}

.stat-item:hover .stat-value {
  color: var(--primary-main);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .info-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .info-heading h2 { font-size: 2.5rem; }
  .stats-bottom { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 576px) {
  .stats-bottom { grid-template-columns: 1fr; }
  .stat-item { border-right: none; padding: 20px 0; border-bottom: 1px solid rgba(10, 15, 10, 0.1); }
  .stat-item:last-child { border-bottom: none; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.map-box {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 350px;
}

.map-box iframe { width: 100%; height: 100%; filter: grayscale(0.2); border: 0; }

.form-card {
  background: var(--color-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-row { grid-column: span 2; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
}

.input-group input, .input-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  font-size: 15px;
  background: #f8fafc;
  transition: var(--transition);
  width: 100%;
}

.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--primary-main);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.submit-btn {
  background: var(--color-black);
  color: var(--color-white);
  padding: 18px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--btn-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(45, 106, 79, 0.15);
}

@media (max-width: 1024px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 650px) {
  .form-grid { grid-template-columns: 1fr; }
  .full-row { grid-column: span 1; }
  .form-card { padding: 30px 20px; }
  .map-box { height: 250px; }
}

/* =========================================
   CUSTOM MODAL POPUP
   ========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 10, 0.7); /* Deep dark tint */
  backdrop-filter: var(--glass-blur);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 24px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active { display: flex; opacity: 1; }
.modal-overlay.active .modal-card { transform: scale(1); }

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  color: var(--primary-main);
  font-size: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--primary-main);
}

.modal-card h2 {
  color: var(--color-black);
  font-weight: 800;
  margin-bottom: 15px;
  font-family: var(--font-main);
}

.modal-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: var(--font-main);
}

.modal-btn {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.modal-btn:hover {
  background: var(--primary-main);
  transform: translateY(-2px);
}