@font-face {
  font-family: "Quicksand";
  src: local("Quicksand"),
    url("../fonts/Quicksand-Variable.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1e261b;
  --soft-ink: #5d6658;
  --gold: #d7b46a;
  --choco: #4a2f26;
  --green: #3f6540;
  --deep-green: #2b4a30;
  --card: #fffcf6;
  --line: rgba(43, 74, 48, 0.2);
  --shadow: 0 20px 44px rgba(39, 61, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Quicksand", Sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(215, 180, 106, 0.16), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(63, 101, 64, 0.12), transparent 30%),
    linear-gradient(180deg, #f4f1e9 0%, #efede5 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.svg-icons {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: "Quicksand", Sans-serif;
}

.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 80% 20%, transparent 58%, rgba(255, 255, 255, 0.95) 59% 63%, transparent 64%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92) 0 8%,
      transparent 8% 16%,
      rgba(255, 255, 255, 0.92) 16% 24%,
      transparent 24% 32%,
      rgba(255, 255, 255, 0.92) 32% 40%,
      transparent 40%
    );
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand-logo {
  height: 100px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text small {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  opacity: 0.9;
}

.brand-text strong {
  margin-top: 0.2rem;
  font-size: clamp(1.65rem, 2.9vw, 2.2rem);
  font-weight: 700;
}

.brand-text strong span {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #fff;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #5c2011;
}

.nav-links a:hover {
  color: #f2d497;
}

.has-caret::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

/* ── Services Dropdown ───────────────────────── */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 230px;
  background: linear-gradient(145deg, #5b3b33 0%, #3a5436 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.45rem;
  list-style: none;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  z-index: 20;
  box-shadow: 0 16px 32px rgba(20, 14, 10, 0.38);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  display: flex;
}

.nav-dropdown li a {
  display: block;
  padding: 0.58rem 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f2d497;
}

.menu-toggle {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow-btn,
.tour-btn {
  background: linear-gradient(135deg, #e0bf7d 0%, #caa05c 100%);
  color: #2f2018;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(22, 13, 9, 0.24);
}

.arrow-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.tour-btn {
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
}

.arrow-btn:hover,
.tour-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(22, 13, 9, 0.3);
}

.banner {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 104px);
  overflow: hidden;
}

.banner-track {
  position: relative;
  min-height: calc(100vh - 104px);
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 104px);
  width: min(100%, 860px);
  margin-left: clamp(1rem, 6vw, 5rem);
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 1.5rem);
  color: #fff5e8;
}

.banner-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.banner-image.image-one {
  background-image: url("../images/home-page-banner-image.webp");
}

.banner-image.image-two {
  background-image: url("../images/home-page-banner-image.webp");
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(38, 22, 16, 0.74) 0%, rgba(36, 44, 28, 0.42) 40%, rgba(26, 34, 22, 0.18) 70%, rgba(26, 34, 22, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3));
}

.banner-kicker {
  margin: 0;
  color: #ffdb9f;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.banner-rule {
  display: block;
  width: min(100%, 360px);
  height: 1px;
  margin: 1rem 0 1.4rem;
  background: linear-gradient(90deg, rgba(253, 217, 155, 0.9) 0%, rgba(253, 217, 155, 0.68) 55%, rgba(253, 217, 155, 0) 100%);
}

.banner-copy h1 {
  margin: 0;
  font-size: 55px;
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #fff0dd;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-copy h1 span {
  display: block;
}

.banner-summary {
  margin: 1rem 0 0;
  max-width: 44ch;
  color: rgba(255, 239, 220, 0.95);
  font-size: 18px;
  font-weight: 600;
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 0.3rem;
}

.banner-feature {
  padding: 0.45rem 0.75rem 0.55rem;
  text-align: center;
  border-right: 1px solid rgba(255, 230, 190, 0.24);
  background: rgba(53, 27, 16, 0.2);
  border-radius: 10px;
}

.banner-feature:last-child {
  border-right: 0;
}

.banner-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  margin-bottom: 0.55rem;
  border: 1.5px solid rgba(255, 224, 177, 0.75);
  border-radius: 999px;
  color: #ffd99c;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(31, 13, 7, 0.35);
}

.banner-feature p {
  margin: 0;
  color: rgba(255, 241, 221, 0.95);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: #8f2414;
  color: #fff8ef;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(156, 25, 25, 0.24);
}

.banner-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.18);
  font-size: 0.9rem;
}

main {
  
  gap: 4.5rem;
  
}

.about {
  background: #ffffff;
  padding: 3.8rem 0 3.3rem;
  position: relative;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 2vw, 4rem);
}

.about-copy {
  max-width: 650px;
}

.about-tag {
  display: inline-block;
  margin: 0;
  background: #4f362f;
  color: #f4ca4e;
  border-radius: 8px;
  padding: 0.35rem 0.9rem;
  font-size: 1.25rem;
  font-style: italic;
}

.about-copy h2 {
  color: #28583a;
  font-size: clamp(2.25rem, 4.1vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 1.35rem;
  max-width: 17ch;
}

.about-copy p {
  margin: 0 0 0.85rem;
  
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.72;
}

.about-why-title {
  margin: 0.65rem 0 0.55rem;
  color: #2c1d17;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.about-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-why-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #4d453f;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.45;
}

.about-why-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #3f6540;
  font-weight: 800;
}

.about-stats {
  margin-top: 1.2rem;
  display: flex;
  gap: clamp(1rem, 2.6vw, 2.8rem);
  align-items: flex-end;
}

.about-stat-item h3 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 0.9;
  color: #e8be48;
  font-weight: 600;
}

.about-stat-item p {
  margin: 0.55rem 0 0;
  color: #6a5a55;
  font-size: clamp(0.96rem, 1.4vw, 1.7rem);
}

.about-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  min-height: clamp(280px, 29vw, 340px);
  border-radius: 18px;
  background-image: linear-gradient(rgba(28, 39, 24, 0.08), rgba(28, 39, 24, 0.08)), url("../images/about-us-image.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 34px rgba(42, 48, 34, 0.16);
  border: 1px solid rgba(37, 61, 43, 0.2);
}

.about-overview {
  grid-column: 1 / -1;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 0.6rem;
  text-align: left;
}

.about-overview h2 {
  margin: 0 0 0.8rem;
  color: #28583a;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.12;
}

.about-overview p {
  margin: 0 auto;
  color: #2f2520;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.72;
}

.about-seeds {
  position: absolute;
  left: -48px;
  top: 120px;
  display: grid;
  gap: 10px;
}

.about-seeds span {
  width: 38px;
  height: 56px;
  background: #e7c248;
  border-radius: 100px 0 100px 0;
}

.about-seeds span:nth-child(2),
.about-seeds span:nth-child(4) {
  transform: translateX(12px);
}

/* ═══════════ ABOUT — STORY & ECO-LUXURY SECTIONS ═══════════ */

.about-story-section {
  padding: 0.1rem 0 4rem;
  background:
    #ffffff;
}

.about-story-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.about-story-head .services-tag {
  display: inline-block;
  background: #4f362f;
  color: #f4ca4e;
  border-radius: 8px;
  padding: 0.32rem 0.9rem;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.about-story-head h2 {
  margin: 0 0 0.8rem;
  color: #28583a;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.12;
}

.about-story-head p {
  margin: 0;
  color: #4a453e;
  font-size: 1.07rem;
  font-weight: 600;
  line-height: 1.72;
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.about-impact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-impact-card .impact-icon {
  font-size: 2rem;
  line-height: 1;
}

.about-impact-card .impact-stat {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #28583a;
  line-height: 1;
}

.about-impact-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #2c1d17;
  font-weight: 700;
}

.about-impact-card p {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: #5a5047;
  line-height: 1.6;
}

/* ── Eco-Luxury sub-section ── */

.about-eco-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.4rem;
}

.about-eco-head h2 {
  margin: 0 0 0.6rem;
  color: #28583a;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.14;
}

.about-eco-head p {
  margin: 0;
  color: #4a453e;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
}

.about-eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-eco-card {
  background: linear-gradient(145deg, #3a2218 0%, #2b4a2e 100%);
  border-radius: 16px;
  padding: 2rem 1.6rem 1.8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 12px 28px rgba(20, 38, 22, 0.22);
}

.about-eco-card .eco-icon {
  font-size: 2rem;
  line-height: 1;
}

.about-eco-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f6cc5a;
}

.about-eco-card p {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.62;
}

@media (max-width: 900px) {
  .about-impact-grid,
  .about-eco-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .about-impact-grid,
  .about-eco-grid {
    grid-template-columns: 1fr;
  }

  .about-story-section {
    padding: 3rem 0 2.8rem;
  }
}

/* ══════════════════════════════════════════ */

.why-choose {
  background:
    radial-gradient(circle at 10% 90%, rgba(63, 101, 64, 0.08), transparent 28%),
    #ece9e1;
  padding: 4.1rem 0 4.5rem;
}

.why-choose-shell {
  display: grid;
  gap: 2.4rem;
}

.why-choose-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.why-choose-tag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  border-radius: 8px;
  padding: 0.35rem 0.85rem;
  background: #593a32;
  color: #f4ca4e;
  font-size: 1rem;
  font-weight: 700;
}

.why-choose-head h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  color: #1f1815;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) clamp(260px, 28vw, 360px) minmax(300px, 1fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1280px;
  margin-inline: auto;
}

.why-choose-col {
  display: grid;
  gap: 1.15rem;
  align-content: center;
}

.why-point {
  background: rgba(255, 252, 245, 0.88);
  border: 1px solid rgba(89, 58, 50, 0.16);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 10px 20px rgba(63, 49, 36, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(63, 49, 36, 0.14);
}

.why-point-no {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: rgba(89, 58, 50, 0.24);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.why-point h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  color: #1f1a16;
}

.why-point p {
  margin: 0.55rem 0 0;
  color: #5e5a56;
  font-size: 1rem;
  line-height: 1.48;
}

.why-center {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  align-self: stretch;
  isolation: isolate;
}

.why-center-ring {
  position: relative;
  width: clamp(260px, 27vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7) 24%, rgba(234, 226, 203, 0.95) 72%, rgba(211, 198, 163, 0.9) 100%),
    conic-gradient(from 200deg, #8ea451, #d9bc63, #8ea451);
  box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.42), 0 20px 36px rgba(80, 67, 42, 0.2);
}

.why-center-ring::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 1.5vw, 18px);
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../images/why-choose-image.webp");
  background-size: 92%;
  background-repeat: no-repeat;
  background-position: center;
}

.why-center-badge {
  position: absolute;
  bottom: 2.1rem;
  background: #593a32;
  color: #f5d78d;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.services {
  margin-top: 0;
  
  
  padding: 4.2rem 0 3rem;
}

.services-shell {
  display: grid;
  gap: 2.1rem;
}

.services-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.services-tag {
  display: inline-block;
  margin: 0;
  background: #4f362f;
  color: #f4ca4e;
  border-radius: 8px;
  padding: 0.35rem 1rem;
  font-size: 1.3rem;
  font-style: italic;
}

.services-head h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  line-height: 1.08;
}

.services-head p {
  margin: 0;
 
  font-size: clamp(1rem, 1.3vw, 1.35rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--card);
  overflow: hidden;
  border: none;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(46, 32, 26, 0.13);
}

.service-image {
  height: clamp(200px, 28vw, 280px);
  background-size: cover;
  background-position: center;
}

.service-image-1 {
  background-image: url("https://images.unsplash.com/photo-1615485291234-9fbc8f8b5a7a?auto=format&fit=crop&w=1200&q=80");
}

.service-image-2 {
  background-image: url("https://images.unsplash.com/photo-1563636619-e9143da7973b?auto=format&fit=crop&w=1200&q=80");
}

.service-image-3 {
  background-image: url("https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?auto=format&fit=crop&w=1200&q=80");
}

.service-image-4 {
  background-image: url("https://images.unsplash.com/photo-1592982537447-7440770cbfc9?auto=format&fit=crop&w=1200&q=80");
}

.service-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #593a32;
  color: #fff;
  padding: 0.9rem 1.2rem;
}

.service-title {
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
}

.service-no {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
}

.service-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.service-body p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.service-link {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2b1c16;
  font-weight: 800;
}

.service-link::before {
  content: "\2192";
  color: #e8be48;
}

.home-project-card {
  background:
    linear-gradient(180deg, #fffcf6 0%, #f6efe1 100%);
  border: 1px solid rgba(89, 58, 50, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(46, 32, 26, 0.14);
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(46, 32, 26, 0.18);
}

.home-project-head {
  display: grid;
  gap: 0.3rem;
}

.home-project-no {
  margin: 0;
  color: rgba(89, 58, 50, 0.34);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.home-project-head h3 {
  margin: 0;
  color: #2c1d17;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.home-project-subtitle {
  margin: 0;
  color: #5b473f;
  font-size: 1.02rem;
  font-weight: 700;
}

.home-project-intro {
  margin: 0.9rem 0 0;
  color: #594c45;
  line-height: 1.55;
}

.home-project-card h4 {
  margin: 1rem 0 0.45rem;
  color: #3d2a24;
  font-size: 1.06rem;
}

.home-project-list {
  margin: 0;
  padding-left: 1.05rem;
  color: #473d36;
  line-height: 1.5;
}

.home-project-list li + li {
  margin-top: 0.26rem;
}

.home-project-list li::marker {
  color: #8a633c;
}

.home-project-list-ideal {
  margin-top: 0.1rem;
}

/* ── Project Specialty Cards (3D button style) ─── */
.project-cards-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.project-cards-row .project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(160deg, #f2fbf2 0%, #ddf0dd 55%, #c8e4c8 100%);
  border: 1.5px solid rgba(43, 74, 48, 0.35);
  border-bottom: none;
  border-radius: 18px;
  padding: 2.4rem 2rem;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    0 8px 0 #2b4a30,
    0 10px 4px rgba(0, 0, 0, 0.18),
    0 14px 24px rgba(43, 74, 48, 0.22);
  transform: translateY(0);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.project-cards-row .project-card:hover {
  transform: translateY(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    0 4px 0 #2b4a30,
    0 5px 3px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(43, 74, 48, 0.18);
}

.project-cards-row .project-card:active {
  transform: translateY(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    0 0 0 #2b4a30,
    0 1px 2px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(43, 74, 48, 0.12);
}

.project-card-icon {
  width: 62px;
  height: 62px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(43, 74, 48, 0.25));
}

.project-card-icon svg {
  width: 100%;
  height: 100%;
}

.project-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  line-height: 1.45;
}

/* ── Project Details 3D Button ───────────────── */
.project-details-btn {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.55rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(160deg, #4e7d4f 0%, #3f6540 50%, #2e5030 100%);
  border-radius: 10px;
  border: 1.5px solid rgba(43, 74, 48, 0.4);
  border-bottom: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 5px 0 #1a3320,
    0 7px 4px rgba(0, 0, 0, 0.22),
    0 10px 16px rgba(26, 51, 32, 0.18);
  transform: translateY(0);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  pointer-events: none;
}

.project-cards-row .project-card:hover .project-details-btn {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 0 #1a3320,
    0 3px 3px rgba(0, 0, 0, 0.18),
    0 6px 10px rgba(26, 51, 32, 0.15);
  background: linear-gradient(160deg, #578558 0%, #4a7048 50%, #36593a 100%);
}

.project-cards-row .project-card:active .project-details-btn {
  transform: translateY(5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 #1a3320,
    0 1px 2px rgba(0, 0, 0, 0.14),
    0 3px 6px rgba(26, 51, 32, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--green);
  color: #f7fff1;
  box-shadow: 0 12px 28px rgba(42, 79, 28, 0.3);
}

.contact {
  background:
    radial-gradient(circle at 92% 12%, rgba(63, 101, 64, 0.12), transparent 34%),
    #e7dfcd;
  color: #201511;
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}

.contact-panel {
  background: linear-gradient(180deg, #f7f4ed 0%, #f1ebdf 100%);
  border-radius: 16px;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(89, 58, 50, 0.16);
  box-shadow: 0 14px 26px rgba(58, 42, 32, 0.1);
}

.contact-card-list {
  display: grid;
  gap: 1rem;
}

.contact-card-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  background: #593a32;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.contact-icon {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 64px;
  background: #ebc44d;
  color: #4b312a;
  font-weight: 900;
  font-size: 1rem;
  border-top-right-radius: 36px;
  border-bottom-right-radius: 36px;
}

.contact-card-item div {
  padding: 0.72rem 0.9rem;
}

.contact-card-item h3 {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-family: "Quicksand", Sans-serif;
}

.contact-card-item p {
  margin: 0.25rem 0 0;
  color: #d5c9c4;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}

.social-connect {
  margin-top: 1.2rem;
  padding: 0 0.2rem;
}

.social-connect h4 {
  margin: 0 0 0.8rem;
  font-family: "Quicksand", Sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.28rem);
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ebe7d6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4f362f;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-icons a:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  background: #ebc44d;
  color: #4b312a;
}

.social-icon {
  width: 16px;
  height: 16px;
  display: block;
  fill: #1f1612;
}

.faq-panel {
  padding-top: 0.2rem;
}

.faq-tag {
  display: inline-block;
  margin: 0;
  background: #4f362f;
  color: #f4ca4e;
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
  font-family: "Quicksand", Sans-serif;
  font-size: 1.05rem;
  font-style: italic;
}

.faq-panel h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.12;
  max-width: 22ch;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #e0d8c2;
  border: 1px solid rgba(89, 58, 50, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(60, 45, 32, 0.12);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: #1f1612;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: "Quicksand", Sans-serif;
  font-size: clamp(0.98rem, 1.3vw, 1.22rem);
  font-weight: 700;
  cursor: pointer;
}

.faq-toggle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #4f362f;
  color: #f4ca4e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 1rem 0.9rem;
}

.faq-answer p {
  margin: 0;
  color: #5f554f;
  font-size: clamp(0.88rem, 0.95vw, 1.01rem);
  line-height: 1.55;
}

.faq-item.open {
  background: #d5ccb3;
}

.faq-item.open .faq-question {
  background: linear-gradient(90deg, #593a32 0%, #4b5f3e 100%);
  color: #f4ca4e;
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  background:
   #fffff6;
  color: #efe5d5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 1fr;
  gap: 1.3rem;
  padding: 3rem 0 2.2rem;
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.footer-brand-col p,
.footer-contact-col p,
.footer-news-col p {
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  line-height: 1.55;
}

.footer-links-col,
.footer-contact-col,
.footer-news-col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links-col h3,
.footer-contact-col h3,
.footer-news-col h3 {
  margin: 0 0 0.5rem;
  color: #5c2011;
  font-size: 1.35rem;
}

.footer-links-col a {
  color: rgba(5, 5, 5, 0.9);
  font-weight: 600;
}

.footer-links-col a:hover {
  color: #f6cc5a;
}

.footer-form {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.5rem;
}

.footer-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(246, 204, 90, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  font: inherit;
}

.footer-form input::placeholder {
  color: rgba(239, 229, 213, 0.66);
}

.footer-form button {
  border: none;
  background: #ebc44d;
  color: #2c1d17;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 204, 90, 0.2);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0 1.2rem;
}

.footer-bottom small {
  color: rgba(0, 0, 0, 0.85);
}

.footer-social {
  display: flex;
  gap: 0.45rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f6cc5a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.compact-hero {
  overflow: visible;
}

.service-page-hero {
  position: relative;
  margin: 0;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(22, 48, 26, 0.48), rgba(22, 48, 26, 0.42)),
    url("../images/MADURANTHAKAM-PROJECT.webp");
  background-size: cover;
  background-position: center 42%;
  border: none;
}

.service-page-hero::before,
.service-page-hero::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.45;
  pointer-events: none;
}

.service-page-hero::before {
  left: 1.2rem;
  bottom: 0.5rem;
  border-left: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom-left-radius: 90px;
}

.service-page-hero::after {
  right: 1.2rem;
  bottom: 0.5rem;
  border-right: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom-right-radius: 90px;
}

.service-page-hero-inner {
  min-height: clamp(320px, 38vw, 460px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 2.2rem 1rem;
}

.hero-crumb {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-crumb a {
  color: rgba(255, 255, 255, 0.96);
}

.hero-crumb span:last-child {
  color: #f6cc5a;
}

.service-page-hero h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.08;
  color: #f8fcf3;
  max-width: none;
  text-shadow: 0 4px 14px rgba(19, 30, 14, 0.48);
}

.hero-subcopy {
  margin: 0.6rem 0 0;
  color: rgba(246, 250, 237, 0.9);
  max-width: 62ch;
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
}

.service-page-main {
  padding-top: 0;
}

.service-showcase {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 88% 100%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(145deg, #436745 0%, #547a4f 48%, #3f6242 100%);
  padding: 2.6rem 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.showcase-grid .showcase-card.reveal {
  transform: translateY(28px);
  transition-duration: 0.65s;
}

.showcase-grid .showcase-card.reveal.visible {
  transform: translateY(0);
}

.showcase-grid .showcase-card:nth-child(1).reveal.visible {
  transition-delay: 0.05s;
}

.showcase-grid .showcase-card:nth-child(2).reveal.visible {
  transition-delay: 0.25s;
}

.showcase-grid .showcase-card:nth-child(3).reveal.visible {
  transition-delay: 0.45s;
}

.showcase-card {
  position: relative;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f2e7 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 34px rgba(25, 45, 20, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(79, 130, 68, 0.2);
  pointer-events: none;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(25, 45, 20, 0.3);
}

.showcase-image {
  height: 300px;
  border-radius: 14px;
  margin: 0.6rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

.showcase-card:hover .showcase-image {
  transform: scale(1.03);
}

.showcase-image-1 {
  background-image: url("../images/OLAKKUR-PROJECT.webp");
}

.showcase-image-2 {
  background-image: url("../images/MADURANTHAKAM-PROJECT.webp");
}

.showcase-image-3 {
  background-image: url("../images/CHENNAI-SALEM.webp");
}

.showcase-badge {
  position: absolute;
  right: 1.2rem;
  top: 255px;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: #5d9050;
  color: #e8f0de;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  border: 4px solid #f7f7f7;
  box-shadow: 0 8px 20px rgba(35, 70, 31, 0.35);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.showcase-card:hover .showcase-badge {
  transform: rotate(-8deg) scale(1.06);
  background: #4f8244;
}

.showcase-body {
  padding: 0.55rem 1.25rem 1.4rem;
}

.showcase-body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.16;
  color: #143615;
  letter-spacing: 0.01em;
}

.showcase-body p {
  margin: 0.85rem 0 0;
  color: #55616e;
  line-height: 1.6;
}

.showcase-btn {
  margin-top: 1.05rem;
}

.showcase-points {
  margin: 0.82rem 0 0;
  padding-left: 1rem;
  color: #3f4d5f;
  line-height: 1.55;
}

.showcase-points li + li {
  margin-top: 0.34rem;
}

.showcase-points li::marker {
  color: #4f8244;
}

.service-page-grid {
  margin-top: 0.2rem;
}

.service-projects {
  padding-top: 3.2rem;
}

.project-list {
  display: grid;
  gap: 1.3rem;
}

.project-card {
  background: #fffaf0;
  border: 1px solid rgba(89, 58, 50, 0.2);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(53, 37, 31, 0.08);
  padding: 1.35rem;
}

.project-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.project-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: #2e1f1b;
}

.project-intro,
.project-note {
  margin: 0.45rem 0 0;
  color: #5f544c;
  line-height: 1.6;
}

.project-note {
  font-weight: 700;
}

.project-points {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: #453b34;
  line-height: 1.55;
}

.project-points li + li {
  margin-top: 0.3rem;
}

.service-cta {
  background: #efe8d5;
  padding: 3rem 0 4rem;
}

.service-cta-inner {
  background: #fff8e9;
  border: 1px solid rgba(89, 58, 50, 0.18);
  border-radius: 18px;
  padding: 1.7rem;
  text-align: center;
}

.service-cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.service-cta-inner p {
  margin: 0 0 1rem;
  color: #5e534a;
}

.gallery-hero {
  background-image:
    linear-gradient(180deg, rgba(22, 48, 26, 0.5), rgba(22, 48, 26, 0.44)),
    url("../images/OLAKKUR-PROJECT.webp");
}

.about-hero {
  background-image:
    linear-gradient(180deg, rgba(22, 48, 26, 0.5), rgba(22, 48, 26, 0.44)),
    url("../images/about-us-image.webp");
}

.contact-hero {
  background-image:
    linear-gradient(180deg, rgba(22, 48, 26, 0.5), rgba(22, 48, 26, 0.44)),
    url("../images/CHENNAI-SALEM.webp");
}

.gallery-main {
  padding: 2.6rem 0 3.6rem;
  background: #fffcf6;
}

.gallery-section {
  background: var(--card);
}

/* ── Gallery Filter Tabs ─────────────────────── */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(43, 74, 48, 0.3);
  border-bottom: none;
  border-radius: 10px;
  background: linear-gradient(160deg, #f2fbf2 0%, #ddf0dd 100%);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 5px 0 #2b4a30,
    0 7px 4px rgba(0, 0, 0, 0.18),
    0 10px 14px rgba(43, 74, 48, 0.16);
  transform: translateY(0);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.gallery-filter-btn:hover {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 2px 0 #2b4a30,
    0 3px 3px rgba(0, 0, 0, 0.15),
    0 6px 10px rgba(43, 74, 48, 0.13);
}

.gallery-filter-btn.active {
  background: linear-gradient(160deg, #4e7d4f 0%, #3f6540 50%, #2e5030 100%);
  color: #fff;
  border-color: rgba(43, 74, 48, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 5px 0 #1a3320,
    0 7px 4px rgba(0, 0, 0, 0.22),
    0 10px 14px rgba(26, 51, 32, 0.18);
}

.gallery-filter-btn.active:hover {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 0 #1a3320,
    0 3px 3px rgba(0, 0, 0, 0.18),
    0 6px 10px rgba(26, 51, 32, 0.14);
}

/* ── Gallery Masonry Grid ────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(46, 33, 28, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(46, 33, 28, 0.2);
}

.gallery-item:hover .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tag {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  background: rgba(26, 51, 32, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.72rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 721px) and (max-width: 1024px) {
  .banner-copy h1 {
    font-size: clamp(2.8rem, 6.4vw, 4rem);
  }

  .banner-summary {
    font-size: 1.02rem;
    max-width: 52ch;
  }

  .about,
  .services,
  .contact {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .about-copy p,
  .why-point p,
  .home-project-intro,
  .faq-answer p {
    font-size: 1rem;
  }

  .about-why-list li {
    font-size: 0.97rem;
  }

  .why-choose-layout {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 280px) minmax(260px, 1fr);
    gap: 1.4rem;
  }

  .why-center-ring {
    width: min(100%, 280px);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100%, 94%);
  }

  .banner,
  .banner-track {
    min-height: calc(100vh - 104px);
  }

  .banner-copy {
    width: 100%;
    min-height: calc(100vh - 104px);
    margin-left: 0;
    padding: 2.2rem 1.3rem;
  }

  .banner-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-feature:nth-child(2),
  .banner-feature:nth-child(4) {
    border-right: 0;
  }

  .about-layout,
  .contact-layout,
  .why-choose-layout {
    grid-template-columns: 1fr;
  }

  .why-choose {
    padding: 3.2rem 0 3.4rem;
  }

  .why-center {
    min-height: 260px;
  }

  .why-center-ring {
    width: min(70vw, 300px);
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-visual {
    min-height: auto;
  }

  .about-image {
    min-height: 360px;
  }

  .about-seeds {
    left: -10px;
    top: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-hero {
    width: 100%;
  }

  .service-page-hero-inner {
    min-height: 340px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .showcase-image {
    height: 250px;
  }

  .showcase-badge {
    top: 204px;
    width: 70px;
    height: 70px;
  }

  .service-projects {
    padding-top: 2.4rem;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .faq-panel h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 6.2vw, 2.35rem);
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100%, 94%);
  }

  .nav {
    min-height: 92px;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #5c2011;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
  }

  .nav-dropdown {
    position: static;
    display: flex;
   background: rgb(61 27 27 / 78%);
    border-radius: 8px;
    margin-top: 0.35rem;
    padding: 0.35rem;
    min-width: 0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown li a {
    font-size: 0.88rem;
    padding: 0.42rem 0.75rem;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 4%;
    width: min(320px, 92%);
    padding: 1rem;
    border-radius: 14px;
    background: #5b3b33;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 3;
  }

  .nav-links.open {
    display: flex;
  }

  .banner,
  .banner-track {
    min-height: calc(100vh - 92px);
  }

  .banner-copy {
    width: 100%;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════
   MADURANTHAKAM PROJECT PAGE
   ═══════════════════════════════════════════════ */

/* ── Banner ──────────────────────────────────── */
.project-banner {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 58vw, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(160deg, rgba(14, 32, 12, 0.75) 0%, rgba(22, 48, 26, 0.48) 52%, rgba(18, 34, 20, 0.6) 100%),
    url("../images/MADURANTHAKAM-PROJECT.webp");
  background-size: cover;
  background-position: center 42%;
}

.project-banner::before,
.project-banner::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  opacity: 0.4;
  pointer-events: none;
}

.project-banner::before {
  left: 1.4rem;
  bottom: 0.7rem;
  border-left: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom-left-radius: 90px;
}

.project-banner::after {
  right: 1.4rem;
  bottom: 0.7rem;
  border-right: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom: 2px solid rgba(236, 242, 224, 0.65);
  border-bottom-right-radius: 90px;
}

.project-banner-inner {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 4vw, 4rem);
}

.project-banner-crumb {
  margin: 0 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 700;
}

.project-banner-crumb a { color: rgba(255, 255, 255, 0.88); }
.project-banner-crumb .current { color: #f6cc5a; }

.project-banner-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffdb9f;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-banner-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #ffdb9f;
  flex-shrink: 0;
}

.project-banner-rule {
  display: block;
  width: min(100%, 380px);
  height: 1px;
  margin: 1.1rem 0 1.4rem;
  background: linear-gradient(90deg, rgba(253, 217, 155, 0.9) 0%, rgba(253, 217, 155, 0.6) 55%, transparent 100%);
}

.project-banner h1 {
  margin: 0;
  font-size: 55px;
  line-height: 0.92;
  color: #fff0dd;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.4);
  max-width: 28ch;
}

.project-banner-sub {
  margin: 1.1rem 0 0;
  max-width: 50ch;
  color: rgba(255, 239, 220, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  line-height: 1.6;
}

.project-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 3vw, 3.2rem);
  margin-top: 2.4rem;
}

.project-banner-stat {
  border-left: 2px solid rgba(253, 217, 155, 0.55);
  padding-left: 1rem;
}

.project-banner-stat strong {
  display: block;
  color: #ffd99c;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.project-banner-stat span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 239, 220, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.project-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0bf7d 0%, #caa05c 100%);
  color: #2f2018;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(22, 13, 9, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(22, 13, 9, 0.34);
}

/* ── Project Details ──────────────────────────── */
.project-detail-section {
  padding: 4.2rem 0 3.6rem;
  background:
    radial-gradient(circle at 8% 6%, rgba(215, 180, 106, 0.16), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(63, 101, 64, 0.12), transparent 30%),
    linear-gradient(180deg, #f4f1e9 0%, #efede5 100%);
}

.project-detail-head {
  text-align: center;
  margin: 0 auto 2.8rem;
  max-width: 700px;
}

.project-detail-head h2 {
  margin: 0.85rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #1f3320;
}

.project-detail-head p {
  margin: 0;
  color: #5f544c;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.detail-card {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f2e7 100%);
  border: 1px solid rgba(89, 58, 50, 0.18);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.8rem;
  box-shadow: 0 16px 32px rgba(46, 32, 26, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(46, 32, 26, 0.16);
}

.detail-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--green);
  color: #e8f0de;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.detail-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: #1f3320;
}

.detail-card-list {
  margin: 0;
  padding-left: 1.05rem;
  color: #453b34;
  line-height: 1.6;
}

.detail-card-list li + li {
  margin-top: 0.32rem;
}

.detail-card-list li::marker {
  color: #4f8244;
}

.detail-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #2b4a30 0%, #3d6040 50%, #2b4a30 100%);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(25, 45, 20, 0.28);
}

.highlight-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.highlight-stat:last-child {
  border-right: none;
}

.highlight-stat strong {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  color: #f6cc5a;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.highlight-stat span {
  color: rgba(240, 248, 232, 0.82);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

/* ── Project Images ───────────────────────────── */
.project-images-section {
  padding: 4rem 0 4.4rem;
  background: #ece9e1;
        margin-bottom: 40px;
}

.project-images-head {
  text-align: center;
  margin: 0 auto 2.4rem;
  max-width: 600px;
}

.project-images-head h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: #1f1815;
  line-height: 1.1;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.project-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(46, 33, 28, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(46, 33, 28, 0.22);
}

.project-gallery-item.tall {
  grid-row: span 2;
}

.project-gallery-item.wide {
  grid-column: span 2;
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(0deg, rgba(15, 28, 13, 0.72) 0%, transparent 100%);
  color: rgba(255, 248, 230, 0.96);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── FAQ ──────────────────────────────────────── */
.project-faq-section {
  padding: 4.2rem 0 5rem;
  background:
    radial-gradient(circle at 92% 12%, rgba(63, 101, 64, 0.12), transparent 34%),
    #e7dfcd;
}

.project-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.project-faq-head {
  text-align: center;
  margin-bottom: 2.6rem;
}

.project-faq-head h2 {
  margin: 0.85rem 0 0.6rem;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: #1f1612;
  line-height: 1.1;
}

.project-faq-head p {
  margin: 0;
  color: #5e554c;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Uthitamerur banner overrides the background image */
.project-banner.uthitamerur-banner {
  background-image:
    linear-gradient(160deg, rgba(10, 26, 18, 0.76) 0%, rgba(20, 44, 30, 0.5) 52%, rgba(12, 30, 20, 0.63) 100%),
    url("../images/CHENNAI-SALEM.webp");
}

/* Olakkur banner overrides the background image */
.project-banner.olakkur-banner {
  background-image:
    linear-gradient(160deg, rgba(12, 28, 22, 0.75) 0%, rgba(18, 46, 32, 0.5) 52%, rgba(14, 32, 22, 0.62) 100%),
    url("../images/OLAKKUR-PROJECT.webp");
}

/* ── Responsive (Maduranthakam page) ─────────── */
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-highlight {
    grid-column: 1;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .highlight-stat:nth-child(3),
  .highlight-stat:last-child {
    border-right: none;
  }

  .highlight-stat:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .project-gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, 95%);
  }

  .hero {
    overflow: visible;
  }

  .banner,
  .banner-track {
    min-height: calc(100vh - 92px);
  }

  .banner-copy h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
  }

  .banner-copy {
    min-height: calc(100vh - 92px);
    padding: 1.7rem 1rem 2rem;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 4%;
    width: min(280px, 92%);
    padding: 1rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 2;
  }

  .nav-links.open {
    display: flex;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .brand-text strong {
    font-size: 1.4rem;
  }

  .banner-features {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .banner-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 230, 190, 0.24);
  }

  .banner-image.image-one,
  .banner-image.image-two {
    background-position: 72% center;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .about-image {
    min-height: 280px;
  }

  .about-seeds {
    display: none;
  }

  .about-why-title {
    font-size: 1.15rem;
  }

  .about-why-list {
    gap: 0.42rem;
  }

  .about-why-list li {
    font-size: 0.92rem;
    padding-left: 1.38rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-point {
    padding: 0.9rem 0.9rem 1rem;
  }

  .why-point p {
    font-size: 0.96rem;
  }

  .service-page-hero {
    width: 100%;
    margin-top: 0;
  }

  .service-page-hero-inner {
    min-height: 280px;
    padding: 1.6rem 0.7rem;
  }

  .hero-crumb {
    font-size: 0.9rem;
    gap: 0.45rem;
  }

  .hero-subcopy {
    display: none;
  }

  .service-page-hero::before,
  .service-page-hero::after {
    width: 72px;
    height: 72px;
  }

  .service-cta {
    padding: 2.3rem 0 2.7rem;
  }

  .gallery-main {
    padding: 1.8rem 0 2.2rem;
    
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .service-showcase {
    padding: 2rem 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    height: 220px;
  }

  .showcase-body {
    padding: 0.4rem 0.95rem 1.1rem;
  }

  .showcase-points {
    padding-left: 0.92rem;
  }

  .showcase-badge {
    top: 174px;
    width: 64px;
    height: 64px;
    right: 1rem;
    font-size: 0.75rem;
  }

  .service-cta-inner {
    padding: 1.25rem 1rem;
  }

  .project-cards-row .project-card {
    padding: 1.5rem 1rem;
  }

  .project-card {
    padding: 1rem;
  }

  .project-points {
    padding-left: 1rem;
  }

  .contact-panel {
    padding: 0.85rem;
  }

  .contact-card-item {
    grid-template-columns: 52px 1fr;
  }

  .contact-icon {
    min-height: 58px;
    font-size: 0.92rem;
  }

  .contact-card-item h3 {
    font-size: 0.98rem;
  }

  .contact-card-item p {
    font-size: 0.88rem;
  }

  .faq-question {
    font-size: 0.96rem;
    padding: 0.8rem 0.85rem;
  }

  .faq-answer {
    padding: 0 0.85rem 0.8rem;
  }

  .faq-answer p {
    font-size: 0.86rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card-item h3 {
    font-size: 1.3rem;
  }

  .contact-card-item p {
    font-size: 1.05rem;
  }

  .faq-question {
    font-size: 1.15rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .project-banner h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .project-banner-stats {
    gap: 1.3rem;
  }

  .detail-highlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-stat:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .highlight-stat:nth-child(2),
  .highlight-stat:nth-child(4),
  .highlight-stat:last-child {
    border-right: none;
  }

  .highlight-stat:nth-child(-n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.1rem;
  }

  .highlight-stat:nth-child(5),
  .highlight-stat:nth-child(6) {
    border-bottom: none;
    padding-bottom: 0.6rem;
  }

  .highlight-stat strong {
    font-size: 1.9rem;
  }

  .highlight-stat span {
    white-space: normal;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .project-gallery-item.tall {
    grid-row: span 1;
  }
}

/* ── Enquiry Form Section ────────────────────── */
.enquiry-section {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at 10% 90%, rgba(215, 180, 106, 0.14), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(63, 101, 64, 0.14), transparent 30%),
    linear-gradient(145deg, #3a2218 0%, #2b4a30 100%);
  color: #fff;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.enquiry-tag {
  display: inline-block;
  background: #ebc44d;
  color: #2c1d17;
  border-radius: 8px;
  padding: 0.32rem 0.9rem;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1rem;
}

.enquiry-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: #fff0dd;
}

.enquiry-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255, 239, 220, 0.85);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.7;
}

.enquiry-quick-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.enquiry-quick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 239, 220, 0.9);
  font-weight: 600;
  font-size: 1rem;
}

.enquiry-quick-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(235, 196, 77, 0.15);
  border: 1.5px solid rgba(235, 196, 77, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: #ebc44d;
  flex-shrink: 0;
}

.enquiry-quick-item a {
  color: #f6cc5a;
}

.enquiry-form-card {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f2e7 100%);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 24px 48px rgba(14, 28, 12, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.enquiry-form-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  color: #1f3320;
}

.enquiry-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a2218;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(89, 58, 50, 0.22);
  background: #fff;
  color: #2c1d17;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3f6540;
  box-shadow: 0 0 0 3px rgba(63, 101, 64, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23593a32'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.enquiry-submit-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #3f6540 0%, #2b4a30 100%);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(42, 74, 30, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}

.enquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(42, 74, 30, 0.4);
}

@media (max-width: 900px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .enquiry-copy {
    text-align: center;
  }

  .enquiry-quick-contact {
    align-items: center;
  }
}

@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-section {
    padding: 3rem 0 3.5rem;
  }

  .enquiry-form-card {
    padding: 1.5rem;
  }
}

/* Call Floating Button */
.call-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #007BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 123, 255, 0.6);
}

.call-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
