/*FONT*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Lato", sans-serif;
  color: #444444;
  background-color: #fff;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a2e;
}

section {
  padding: 80px 20px;
}

a {
  text-decoration: none;
}

/*BUTTON STYLES*/
.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #c9a84c;
  color: #1a1a2e;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #a8863a;
}

/*NAVBAR*/
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
#navbar.scrolled {
  background-color: #1a1a2e;
  padding: 12px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.logo {
  font-family: "playfair display", serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #c9a84c;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}
/* ── ACTIVE NAV LINK ── */
.nav-links a.active {
  color: #c9a84c !important;
  border-bottom: 2px solid #c9a84c;
  padding-bottom: 3px;
}
/*HERO SECTION*/
/* ── HERO SECTION ── */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ── HERO SLIDES ── */
.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* ── HERO OVERLAY ── */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* ── HERO CONTENT ── */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-content .btn {
  animation: fadeInUp 1.2s ease 0.6s forwards;
  opacity: 0;
}
#hero::before {
  display: none;
}
/* ── HERO RESPONSIVE ── */
@media (max-width: 768px) {
  #hero {
    background-attachment: scroll !important;
  }

  .hero-content h1 {
    font-size: 2rem !important;
    word-wrap: break-word !important;
  }

  .hero-slide {
    background-position: center center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem !important;
  }
}
/*HERO ANIMATIONS*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*ABOUT US*/
#about {
  background-color: #f9f6f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}
.about-image {
  width: 45%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-image img:hover {
  transform: scale(1.05);
}
.about-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #c9a84c;
  border-radius: 8px;
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  text-align: left;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 15px;
}
.about-text .btn {
  margin-top: 20px;
}
/*ABOUT STATS*/
.about-stats {
  display: flex;
  gap: 40px;
  margin: 20px 0;
}
.stats {
  text-align: center;
}
.stat h3 {
  font-size: 2rem;
  color: #c9a84c;
  font-family: "Playfair Display", serif;
}
.stat p {
  font-size: 0.85rem;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/*SERVICES*/
#services {
  background-color: #fff;
}
#services h2 {
  position: relative;
  margin-bottom: 15px;
}
#services h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

/* Chair & Table spans 2 ROWS on the left */
.wide-card {
  grid-column: 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card {
  background-color: #f9f6f0;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px) !important;
  border-color: #c9a84c;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.98rem;
  color: #444444;
  line-height: 1.7;
}
.service-list {
  list-style: none;
  text-align: left;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.9rem;
  color: #444444;
  padding: 8px 12px;
  background-color: #fff;
  border-radius: 4px;
  border-left: 3px solid #c9a84c;
}
/* ── PRODUCTS SECTION ── */
#products {
  background-color: #1a1a2e;
}

#products h2 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

#products h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}

p.products-subtitle {
  text-align: center;
  color: #aaaaaa;
  margin-top: -20px;
  margin-bottom: 50px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-placeholder {
  background-color: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder span {
  font-size: 5rem;
}

.product-info {
  padding: 25px 30px;
}

.product-info h3 {
  font-size: 1.4rem;
  color: #c9a84c;
  margin-bottom: 12px;
}

.product-info p {
  font-size: 0.95rem;
  color: #aaaaaa;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── PRODUCTS RESPONSIVE ── */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/*WHY CHOOSE US*/
#why-us {
  background-color: #1a1a2e;
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}
#why-us h2 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}
#why-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.why-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  background-color: rgba(201, 168, 76, 0.08);
  transform: translateY(-8px) !important;
}
.why-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.1rem;
  color: #c9a84c;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: #aaaaaa;
  line-height: 1.7;
}
/*GALLERY*/
#gallery {
  background-color: #f9f6f0;
}
#gallery h2 {
  position: relative;
  margin-bottom: 15px;
}
#gallery h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #c9a84c;
  font-size: 2.5rem;
}
/* ── VIDEO SECTION ── */
#videos {
  background-color: #1a1a2e;
  text-align: center;
}

#videos h2 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

#videos h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}

#videos p.video-subtitle {
  color: #aaaaaa;
  margin-top: -20px;
  margin-bottom: 50px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-item video {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 350px;
  object-fit: contain;
  display: block;
  background-color: #000;
}

.video-label {
  background-color: rgba(26, 26, 46, 0.95);
  padding: 15px 20px;
  text-align: left;
}

.video-label h3 {
  color: #c9a84c;
  font-size: 1rem;
  margin-bottom: 5px;
}

.video-label p {
  color: #aaaaaa;
  font-size: 0.85rem;
}
/*TESTIMONIALS*/
#testimonials {
  background-color: #f9f6f0;
}
#testimonials h2 {
  position: relative;
  padding-bottom: 15px;
}
#testimonials h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 35px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.testimonial-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.quote-icon {
  font-size: 4rem;
  color: #c9a84c;
  opacity: 0.3;
  position: absolute;
  top: 15px;
  left: 25px;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.author-info span {
  font-size: 0.85rem;
  color: #c9a84c;
}
.stars {
  color: #c9a84c;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/*FAQ*/
#faq {
  background-color: #fff;
}
#faq h2 {
  position: relative;
  padding-bottom: 15px;
}
#faq h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  transition: color 0.3s ease;
}
.faq-question:hover h3 {
  color: #c9a84c;
}
.faq-icon {
  font-size: 1.5rem;
  color: #c9a84c;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 10px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 10px 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.8;
}

/*CONTACT*/
#contact {
  background-color: #f9f6f0;
}
#contact h2 {
  position: relative;
  padding-bottom: 15px;
}
#contact h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c9a84c;
}
.contact-container {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
.contact-info {
  flex: 1;
}
.contact-info h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.contact-info p {
  color: #444444;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-detail-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-item h4 {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-detail-item p {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 0;
  font-weight: 600;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.whatsapp-btn {
  background-color: #25d366 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: background-color 0.3s ease, transform 0.3s ease;
  gap: 10px;
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
}
.whatsapp-btn:hover {
  background-color: #1da851 !important;
  transform: translateY(-3px);
}
/* ── WHATSAPP ENQUIRE BUTTON ── */
.whatsapp-enquire-btn {
  background-color: #c9a84c;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  width: 100%;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.whatsapp-enquire-btn:hover {
  background-color: #1da851 !important;
  color: #fff !important;
  transform: translateY(-3px);
}
.contact-form {
  flex: 1;
  background-color: #fff;
  padding: 45px 40px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}
.contact-form h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #444444;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background-color: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background-color: #fff;
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.contact-form .btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px;
  margin-top: 5px;
}
/* ── SUCCESS MESSAGE ── */
#success-message {
  display: none !important;
  align-items: center;
  gap: 12px;
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid #c9a84c;
  border-radius: 4px;
  padding: 15px 20px;
  margin-top: 15px;
  animation: fadeInUp 0.5s ease forwards;
}

#success-message span {
  font-size: 1.5rem;
}

#success-message p {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 0;
}
/*FOOTER-SECTION*/
footer {
  background-color: #1a1a2e;
  padding: 60px 20px 30px;
  color: #aaaaaa;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #aaaaaa;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.social-link {
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #aaaaaa;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.social-link:hover {
  background-color: #c9a84c;
  border-color: #c9a84c;
  color: #fff;
}
.footer-socials .social-link {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links ul li a {
  color: #aaaaaa;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #c9a84c;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact h4 {
  margin-bottom: 8px;
}
.footer-contact p {
  font-size: 0.9rem;
  color: #aaaaaa;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: #444444;
}
.footer-bottom span {
  color: #c9a84c;
}
/* ── PRODUCT MINI GALLERY ── */
.product-mini-gallery {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  gap: 3px;
}

.mini-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .mini-gallery-grid img {
  transform: scale(1.08);
}
/*MOBILE REPONSIVE*/
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  /*FOR NAV*/
  #navbar {
    padding: 15px 20px;
  }
  .nav-links {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a2e;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links a {
    font-size: 1.3rem;
  }
  .hamburger {
    display: block !important;
    z-index: 1001;
  }
  /*FOR HERO*/
  #hero {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }
  .hero-content h1 {
    font-size: 1.8rem !important;
    word-wrap: break-word !important;
  }
  /*FOR ABOUT US*/
  .about-container {
    flex-direction: column;
  }
  .about-image {
    width: 100%;
  }
  .about-text h2 {
    text-align: center;
  }
  .about-stats {
    justify-content: center;
  }
  .about-text .btn {
    display: block;
    text-align: center;
  }
  /*FOR SERVICES*/
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*FOR WHY CHOOSE US*/
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*FOR GALLERY*/
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*FOR VIDEOS*/
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .video-item-wide {
    grid-column: span 1;
    max-width: 100%;
  }
  /*FOR TESTIMONIALS*/
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  /*FOR CONTACT*/
  .contact-form {
    width: 100%;
    padding: 30px 15pxh;
  }
  .contact-container {
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  /*FOR FOOTER*/
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  /*FOR HERO*/
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  /*FOR SERVIVES*/
  .services-grid {
    grid-template-columns: 1fr;
  }
  /*for why us*/
  .why-grid {
    grid-template-columns: 1fr;
  }
  /*for gallery*/
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  /*general*/
  h2 {
    font-size: 1.8rem;
  }
  section {
    padding: 60px 15px;
  }
  #navbar {
    padding: 15px 20px;
  }
  #navbar.scrolled {
    padding: 12px 20px;
  }
  .contact-form {
    padding: 30px 20px;
  }
}
/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#lightbox.active {
  display: flex;
}

#lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

#lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

#lightbox-close:hover {
  color: #c9a84c;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
