:root {
  --primary: #c7a35a;
  --dark: #222;
  --text: #555;
  --bg: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.7;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 40px;
}

h2 span {
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO */
header {
  height: 100vh;
  background: linear-gradient(
      to right,
      rgba(31, 31, 31, 0.9),
      rgba(104, 104, 104, 0.6)
    ),
    url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87")
      center/cover;
  display: flex;
  align-items: center;
}

header h1 {
  font-size: 3.6rem;
  color: #fff;
  font-family: "Playfair Display", serif;
}

header p {
  margin: 20px 0;
  color: #fff;
  max-width: 600px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 500;
}

/* ABOUT US */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
  }
  .about-content {
    text-align: center;
  }
}

/* SERVICES */
.homeservices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.homeservice-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.homeservice-card:hover {
  transform: translateY(-8px);
}

.homeservice-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* WHY CHOOSE US – PREMIUM */
.why {
  background: #f9f9f9;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-item span {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.why-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.why-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-row {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }
}

/* GALLERY */
/* .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
} */
/* GALLERY */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  background: #eee;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 0.9rem;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* HIDE ITEMS */
.gallery-item.hide {
  display: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 15px;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* CONTACT */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: "Poppins";
}

form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--text);
}

iframe {
  margin-top: 20px;
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 18px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul a {
  color: #ccc;
}

.footer-box ul a:hover {
  color: var(--primary);
}

.social-links a {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-row,
  .contact-row {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 2.6rem;
  }
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* WHATSAPP */
.whatsapp {
  background: #25d366;
}

/* CALL */
.call {
  background: var(--primary);
}

/* MOBILE ADJUST */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
  }
}

/* REVIEWS */
.reviews {
  background: #f9f9f9;
  padding: 90px 0;
}

.review-slider {
  overflow: hidden;
  margin-top: 50px;
}

.review-track {
  display: flex;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: 100%;
  background: #fff;
  padding: 40px 35px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}

.stars {
  color: #f4b400;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-card h4 {
  margin-bottom: 5px;
}

.review-card span {
  font-size: 0.9rem;
  color: #777;
}

.review-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.review-controls button {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review-card {
    padding: 30px 20px;
  }
}
