/* ========================= */
/* BASE */
/* ========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f2ed;
  color: #3a2b1f;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f7f3ee;
  border-bottom: 1px solid #e5ddd5;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #3a2b1f;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #a36a2c;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #f7f3ee;
  border: 1px solid #e5ddd5;
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.dropdown-menu a {
  padding: 10px 15px;
  display: block;
}

.dropdown-menu a:hover {
  background: #efe7de;
  color: #a36a2c;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;   
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;   
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(60,40,20,0.5);
}

.hero-content {
  position: absolute;
  top: 30%;
  left: 60px;
  color: white;
  max-width: 500px;
}

.hero h2 {
  font-size: 55px;
  color: white;
}

.btn {
  background: #116D3D;
  padding: 12px 22px;
  color: white;
  text-decoration: none;
  border-radius: 6px;              /* ✅ softer edges */
  display: inline-block;           /* ✅ proper spacing */
  transition: all 0.3s ease;
}

/* HOVER */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);  /* ✅ deeper shadow */
  background: #B38652                      /* ✅ slight darken */
}

/* CLICK FEEDBACK (VERY IMPORTANT) */
.btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.page-hero{
  position: relative;
  height: 70vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(35,25,15,0.45);
}

.page-hero-content{
  position: relative;
  z-index: 2;
  margin-right: 60px;
  max-width: 650px;
  color: white;
  text-align: right;
}

.page-hero h1{
  font-size: 48px;
  margin: 0;
}

.page-hero p{
  font-size: 18px;
  margin-top: 12px;
}

/* ========================= */
/* INTRO */
/* ========================= */

.intro {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.intro p {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

/* ========================= */
/* SECTIONS */
/* ========================= */

.categories,
.segments,
.projects {
  padding: 70px 20px;
}

.categories { background: #f7f3ee; }
.segments { background: #ffffff; }
.projects { background: #f7f3ee; }

section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* GRID */

.icon-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.icon-grid div {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5ddd5;
  transition: 0.3s;
}

.icon-grid div:hover {
  transform: translateY(-5px);
  background: #efe7de;
}


/* ========================= */
/* GRID */
/* ========================= */

.card-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ========================= */
/* CARD BASE */
/* ========================= */

.segment-card,
.project {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5ddd5;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* ========================= */
/* IMAGE */
/* ========================= */

.image-box {
  width: 100%;
  height: 240px;              /* ✅ fixed height for clean grid */
  overflow: hidden;
  border-bottom: 1px solid #e5ddd5;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ✅ IMPORTANT: clean layout */
  display: block;
}

/* ========================= */
/* TEXT (SEGMENTS) */
/* ========================= */

.segment-card h3 {
  font-size: 18px;
  margin: 15px 20px 8px;
  color: #3a2b1f;
}

.segment-card p {
  font-size: 14px;
  color: #6b5a4a;
  margin: 0 20px 20px;
  line-height: 1.6;
}

/* ========================= */
/* TEXT (PROJECTS) */
/* ========================= */

.project p {
  padding: 15px 20px;
  font-weight: 500;
  color: #3a2b1f;
}

/* ========================= */
/* HOVER */
/* ========================= */

.segment-card:hover,
.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* IMAGE ZOOM */
.image-box img {
  transition: transform 0.4s ease;
}

.segment-card:hover img,
.project:hover img {
  transform: scale(1.05);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================= */
/* WHY */
/* ========================= */

.why {
  background: #e9e1d8;
  padding: 70px 20px;
  text-align: center;
}

.why .icon-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ========================= */
/* CONTACT */
/* ========================= */

/* CONTACT SECTION */
.contact {
  padding: 80px 20px;
  background: #fff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE */
.contact-info {
  background: #f7f3ee;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.contact-info h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #a36a2c;
}

.contact-info p {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

/* RIGHT SIDE */
.contact-form-box {
  background: #f7f3ee;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-box h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.contact textarea {
  min-height: 130px;
  resize: vertical;
}

/* BUTTON */
.contact button {
  background: linear-gradient(135deg, #a36a2c, #8a5723);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* QUICK CONTACT */
.quick-contact {
  margin-top: 25px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.quick-contact p {
  margin-bottom: 10px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-box {
    padding: 25px;
  }
}
/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  background: #3a2b1f;
  color: #e5ddd5;
  padding: 60px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 55px;
  width: auto;
}
.footer-col a {
  display: block;             
  color: #e5ddd5;            
  text-decoration: none;      
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #a36a2c;
}

.footer-col h4 {
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #e5ddd5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col:nth-child(3) {
  text-align: right;
  max-width: 260px;
  margin-left: auto;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding: 15px;
  border-top: 1px solid #5a4634;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 60px;
    background: white;
    width: 200px;
    padding: 20px;
    align-items: flex-start !important;
  }

  .nav-links.active {
    display: flex;
  }

  /* Normal menu items */
  .nav-links li {
    width: 100%;
    list-style: none;
    text-align: left !important;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: left !important;
    padding: 12px 10px;
  }

  /* Dropdown parent like Seating */
  .nav-links .dropdown {
    position: relative;
    width: 100%;
  }

  .nav-links .dropdown > a {
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    width: 100%;
    text-align: left !important;
    padding: 12px 10px;
  }

  /* Dropdown submenu */
  .nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 110px;
    min-width: 130px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    z-index: 9999;
  }

  /* Show submenu when open */
  .nav-links .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-links .dropdown-menu a {
    display: block;
    padding: 8px 10px;
    text-align: left;
    white-space: nowrap;
  }

    .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:nth-child(3) {
    text-align: center;
    margin-left: 0;
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .hero h2 {
    font-size: 30px;
  }

  .intro {
    padding: 20px;
  }

}


/* ========================= */
/* Product Page */
/* ========================= */


/* MAIN SECTION */
.product-page {
  padding: 80px 20px;
  background: #fff;
}

.product-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.product-image img {
  width: 100%;
  border-radius: 10px;
}

/* INFO */
.product-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.product-sub {
  color: #a36a2c;
  margin-bottom: 15px;
}

.product-desc {
  color: #6b5a4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTONS */
.product-actions {
  display: flex;
  gap: 15px;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #a36a2c;
  color: #a36a2c;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
}

/* FEATURES */
.product-features {
  padding: 60px 20px;
  background: #f7f3ee;
  text-align: center;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features li {
  margin: 10px 0;
}

/* GALLERY */
.product-gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* CTA */
.product-cta {
  padding: 60px 20px;
  text-align: center;
  background: #e9e1d8;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* GALLERY SECTION */
.gallery-section{
  padding:70px 20px;
}

.gallery-section h2{
  text-align:center;
  margin-bottom:35px;
}

.gallery-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.gallery-card{
  background:#fff;
  border:1px solid #e5ddd5;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  transition:0.3s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.gallery-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.gallery-card p{
  padding:14px;
  font-weight:500;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox-content{
  background:#fff;
  max-width:950px;
  width:95%;
  max-height:90vh;
  border-radius:12px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
}

.lightbox img{
  width:100%;
  height:auto;
  max-height:90vh;
  object-fit:contain;
  object-position:center;
  display:block;
  background:#fff;
}

.lightbox-info{
  padding:30px;
}

.lightbox-info h3{
  margin-top:0;
}

.close-btn{
  position:absolute;
  top:25px;
  right:30px;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

.whatsapp-btn{
  display:inline-block;
  margin-top:15px;
  background:#25D366;
  color:#fff;
  padding:12px 18px;
  text-decoration:none;
  border-radius:6px;
}

@media(max-width:768px){

.gallery-grid{
grid-template-columns: 1fr;
}

.lightbox-content{
grid-template-columns:1fr;
}

.page-hero h1{
font-size:32px;
}

}

/*Thank You*/

/* THANK YOU SECTION */
.thankyou-section{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  background:#f8f5f0;
}

.thankyou-box{
  max-width:700px;
  width:100%;
  background:#fff;
  padding:50px 40px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.thankyou-box i{
  font-size:70px;
  color:#a36a2c;
  margin-bottom:20px;
}

.thankyou-box h1{
  font-size:42px;
  margin-bottom:15px;
  color:#222;
}

.thankyou-box p{
  font-size:18px;
  color:#666;
  line-height:1.8;
  margin-bottom:30px;
}

.return-btn{
  display:inline-block;
  padding:14px 30px;
  background:linear-gradient(135deg,#a36a2c,#8a5723);
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  transition:0.3s ease;
}

.return-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.countdown{
  margin-top:20px;
  font-size:15px;
  color:#777;
}

@media(max-width:768px){
  .thankyou-box{
    padding:35px 20px;
  }

  .thankyou-box h1{
    font-size:32px;
  }

  .thankyou-box p{
    font-size:16px;
  }
}

.about-us {
  padding: 80px 20px;
  background: #f9f7f2;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0d6b3d;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-highlights span {
  background: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
  }
}

.cert-lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:9999;
  justify-content:center;
  align-items:center;
  padding:15px;
}

.cert-lightbox-content img{
  max-width:95vw;
  max-height:95vh;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

/* Certificate Section */
.cert-section{
  padding:60px 5%;
  background:#f8f5f1;
  text-align:center;
}

.cert-section h2{
  margin-bottom:35px;
}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  align-items:start;
}

.cert-card{
  background:#fff;
  padding:4px;
  border-radius:10px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  display:flex;
  justify-content:center;
  align-items:center;
  transition:.3s ease;
}

.cert-card img{
  width:100%;
  height:420px;
  object-fit:contain;
  display:block;
}

.cert-card:hover{
  transform:translateY(-5px);
}

/* MOBILE */
@media (max-width:768px){

  .cert-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .cert-card img{
    height:260px;
  }

  .cert-section{
    padding:40px 4%;
  }

  .cert-lightbox{
    padding:10px;
  }

  .cert-lightbox-content img{
    max-width:96vw;
    max-height:88vh;
    border-radius:6px;
  }

}