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

:root {
  --primary: #ff8c00;
  --primary-dark: #d97400;
  --dark: #16281c;
  --dark-2: #1e3524;
  --light: #f7f4ec;
  --text-muted: #5a5f56;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark);
}


.section {
  padding: 90px 0;
}
.section-alt {
  background: #efe9db;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
}

.sub-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.sub-title.center {
  text-align: center;
  margin-bottom: 40px;
}

.centered-text {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--text-muted);
}

.dash-list {
  padding-left: 4px;
}
.dash-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.about-block {
  margin-bottom: 40px;
}
.about-block p {
  color: var(--text-muted);
  max-width: 850px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 10px;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.about-text .about-block:last-child {
  margin-bottom: 0;
}

.center-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.center-btns .btn-outline {
  color: var(--dark);
  border-color: var(--dark);
}
.center-btns .btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(22, 40, 28, 0.92);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.nav ul {
  display: flex;
  gap: 34px;
}
.nav a {
  color: #f0ede4;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-link {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.phone-link:hover {
  color: var(--primary);
}

.header-actions .btn-primary {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
}
.btn-whatsapp:hover {
  background: #1eb857;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== Hero Intro ===== */
.hero-intro {
  padding-top: 140px;
}

.hero-tagline {
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
  text-align: center;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-image-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

.hero-image-col .hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-image-col .hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-image-col .hero-dot.active {
  background: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-subhead {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark);
}

.hero-list {
  margin-bottom: 20px;
}
.hero-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 15px;
}
.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.hero-list strong {
  color: var(--dark);
}

.hero-note {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 10px;
}

.service-card {
  position: relative;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(22, 40, 28, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(22, 40, 28, 0) 45%,
    rgba(22, 40, 28, 0.55) 75%,
    rgba(22, 40, 28, 0.9) 100%
  );
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
}
.service-links a {
  color: #f0ede4;
  font-weight: 500;
}
.service-links a:hover {
  color: var(--primary);
}
.service-links span {
  color: rgba(240, 237, 228, 0.5);
}

/* ===== Why Us / Partners ===== */
.partner-block {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 24px 28px;
  color: var(--text-muted);
}

/* ===== Why Us / Background Banner ===== */
.why-us-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 40, 28, 0.88),
    rgba(22, 40, 28, 0.82)
  );
}

.why-us-content {
  position: relative;
  z-index: 1;
}

.section-title.light {
  color: #fff;
}

.centered-text.light {
  color: #d9d6cc;
}

.why-us-bg .partner-block {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--primary);
  color: #e4e1d7;
}
.why-us-bg .partner-block strong {
  color: #fff;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-hidden {
  display: none;
  margin-top: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: #d9d6cc;
  padding-top: 70px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  margin-bottom: 16px;
  color: #fff;
}
.footer-logo img {
  height: 44px;
  width: 44px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 19px;
  margin-bottom: 18px;
}

.footer-col p {
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #c7c4ba;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}
.footer-col a:hover {
  color: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14.5px;
  color: #c7c4ba;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
  color: #a8a59c;
}

/* ===== Floating buttons ===== */
.float-btns {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.call-float,
.whatsapp-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.call-float {
  background: var(--primary);
  animation: pulse 2.2s infinite;
}

.whatsapp-float {
  background: #25d366;
  animation: pulse-whatsapp 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .nav,
  .header-actions .phone-link {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: var(--dark);
    padding: 100px 30px 30px;
    z-index: 1050;
  }
  .nav.active {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    gap: 26px;
  }

  .header-actions {
    gap: 10px;
  }

  .logo span {
    font-size: 18px;
  }
  .logo img {
    height: 36px;
    width: 36px;
  }
  .btn-whatsapp {
    padding: 9px 16px;
    font-size: 13px;
  }

  .hero-intro {
    padding-top: 120px;
  }
  .hero-heading {
    font-size: 32px;
  }
  .why-us-bg {
    background-attachment: scroll;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-col {
    order: -1;
    min-height: 240px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image img {
    min-height: 240px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 60px 0;
  }
  .hero-intro {
    padding-top: 110px;
  }
  .section-title {
    font-size: 28px;
  }
  .hero-heading {
    font-size: 26px;
  }
  .logo span {
    font-size: 15px;
  }
  .logo img {
    height: 32px;
    width: 32px;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ===== Floating Enquire Tab ===== */
.enquire-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 18px 10px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  z-index: 998;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.enquire-tab:hover {
  background: var(--primary-dark);
  padding-right: 16px;
}

@media (max-width: 767px) {
  .enquire-tab {
    display: none;
  }
}

/* ===== Enquiry Popup ===== */
.enquiry-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 40, 28, 0.75);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-overlay.active {
  display: flex;
}

.enquiry-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  padding: 36px 30px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: enquiryPop 0.3s ease;
}

@keyframes enquiryPop {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.enquiry-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.enquiry-close:hover {
  color: var(--primary);
}

.enquiry-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 6px;
}

.enquiry-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.enquiry-modal .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.enquiry-modal .form-control:focus {
  border-color: var(--primary);
}

.enquiry-modal .btn-block {
  width: 100%;
}

@media (max-width: 480px) {
  .enquiry-modal {
    padding: 30px 20px 24px;
  }
}
