/* ===================== Variables ===================== */
:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #81c784;
  --accent: #b5762c;
  --dark: #0b1220;
  --dark-2: #101a2c;
  --text: #1e293b;
  --text-light: #64748b;
  --light: #f4f9fd;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 32, 71, 0.08);
  --shadow-lg: 0 20px 50px rgba(2, 32, 71, 0.15);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ===================== Reset ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  background: var(--white);
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

/* ===================== Preloader ===================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-ring {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(46, 125, 50, 0.45);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===================== Topbar ===================== */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar-left a:hover {
  color: var(--primary-light);
}

/* ===================== SVG Icons ===================== */
.icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: -3px;
}
.btn svg,
.btn-sm svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 2px;
}

/* ===================== Header ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 0;
}
.logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text strong {
  color: var(--primary-dark);
}

.nav {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  padding: 11px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  z-index: 1001;
}
.hamburger span {
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 24, 0.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 1.2s ease-in-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 22, 12, 0.92) 10%,
    rgba(27, 94, 32, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  max-width: 850px;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--primary-light);
}
.hero-desc {
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.stat {
  position: relative;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--white);
}
.stat .plus {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-light);
}
.stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.scroll-down span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

/* ===================== Marquee ===================== */
.marquee {
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 16px;
  animation: marquee 22s linear infinite;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.marquee-track span:nth-child(odd) {
  color: var(--primary-light);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================== Section Head ===================== */
.section-tag {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(46, 125, 50, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-light);
  font-size: 1.02rem;
}

section {
  padding: 100px 0;
}

/* ===================== About ===================== */
.about {
  background: var(--light);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge span {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
}
.about-badge p {
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 110px;
}

.about-content h2 {
  margin-bottom: 20px;
}
.about-text {
  color: var(--text-light);
  margin-bottom: 24px;
}
.about-list {
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.about-list span {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-list span svg {
  width: 13px;
  height: 13px;
}

/* ===================== Services ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding: 0 28px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  padding: 0 28px;
  margin-bottom: 20px;
}

.service-actions {
  display: flex;
  gap: 10px;
  padding: 0 28px;
  flex-wrap: wrap;
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
}
.btn-sm-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(46, 125, 50, 0.4);
}
.btn-sm-enquire {
  background: rgba(181, 118, 44, 0.1);
  color: var(--accent);
  border: 1.5px solid rgba(181, 118, 44, 0.35);
}
.btn-sm-enquire:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.service-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  margin-bottom: 22px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* ===================== Why Us ===================== */
.why-us {
  background: var(--light);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.why-content h2 {
  margin-bottom: 36px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.why-icon svg {
  width: 24px;
  height: 24px;
}
.why-item h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.why-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.why-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  height: 480px;
  object-fit: cover;
  width: 100%;
}

/* ===================== Gallery ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1/1;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 32, 0.55)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 30px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item-video::after {
  display: none;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}
.gallery-item-video::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(6, 12, 24, 0.55)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 22px;
  pointer-events: none;
  transition: var(--transition);
}
.gallery-item-video:hover::before {
  background-color: rgba(27, 94, 32, 0.75);
}

/* ===================== CTA ===================== */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  color: var(--white);
  padding: 70px 0;
}
.cta-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

/* ===================== Contact ===================== */
.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--light);
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.info-icon svg {
  width: 22px;
  height: 22px;
}
.info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.info-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}
.info-card a:hover {
  color: var(--primary-dark);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

/* ===================== Footer ===================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

/* ===================== Float Call ===================== */
.float-call {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(181, 118, 44, 0.4);
  z-index: 500;
  animation: pulse 2s infinite;
}
.float-call svg {
  width: 26px;
  height: 26px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(181, 118, 44, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(181, 118, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(181, 118, 44, 0);
  }
}

/* ===================== Floating Enquire Tab ===================== */
.float-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 18px 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 20px rgba(27, 94, 32, 0.4);
  z-index: 500;
  transition: var(--transition);
}
.float-enquire:hover {
  padding-right: 16px;
  box-shadow: -6px 6px 26px rgba(27, 94, 32, 0.55);
}

/* ===================== Back to top ===================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
}

/* ===================== Enquiry Popup ===================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 24, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px 32px;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.popup-close:hover {
  color: var(--dark);
  transform: rotate(90deg);
}
.popup-header {
  text-align: center;
  margin-bottom: 24px;
}
.popup-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.popup-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.popup-form .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.popup-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
}
.popup-form .btn-block {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.popup-form .btn-block:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===================== Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 40px;
}
.lightbox.show {
  opacity: 1;
  visibility: visible;
}
.lightbox img,
.lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: none;
}
.lightbox-close {
  position: absolute;
  top: 26px;
  right: 36px;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover {
  color: var(--primary-light);
  transform: rotate(90deg);
}

/* ===================== Reveal Animations ===================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .about-inner,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .why-media {
    order: -1;
  }
  .why-media img {
    height: 320px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 80%);
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
  .topbar-right {
    display: none;
  }
  .hero-stats {
    gap: 30px;
  }
  .contact-map {
    min-height: 320px;
  }
  .contact-map iframe {
    min-height: 320px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge {
    right: 12px;
    bottom: -18px;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}
