* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'PT Serif', sans-serif;
}

body {
  line-height: 1.5; 
  background: #fff; 
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* ---------- TOPBAR ---------- */
.topbar {
  background: #eaeaea;
  color: #2b1f25;
  font-size: 12px;
  padding: 8px 50px;
}
.topbar-container {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar a {
  color: #2b1f25 !important;
  text-decoration: none;
  font-family: 'PT Serif', sans-serif;
}

/* Center topbar content on tablets and mobile */
@media (max-width: 768px) {
  .topbar-container {
    justify-content: center !important;
    text-align: center;
  }
}


/* ---------- HEADER ---------- */
header {
  background: #fff;
  position: sticky; 
  top: 0; 
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
header .logo {
  margin-right: 20px;
}
header .menu {
  margin-left: 0;
}

/* ---------- LOGO ---------- */
.logo img {
  height: 80px;      
  width: auto;
  display: block;
}
.logo {
  display: flex;
  align-items: center;
}

/* ---------- NAVBAR ---------- */
.navbar {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 15px 20px;
}
.navbar h2 {
  color: #333;
}
.navbar > ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}
.navbar li {
  margin-left: 20px;
  position: relative;
}
.navbar a {
  text-decoration: none; 
  color: #6d6c6c;
  font-size: 14px;
  font-family: 'PT Serif', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}
.navbar a:hover {
  color: #c0392b;
}

/* ---------- SUBMENU ---------- */
.navbar ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 2000;
}
.navbar li:hover > ul {
  display: block;
}
.navbar ul ul li {
  margin: 0;
}
.navbar ul ul a {
  padding: 10px 16px;
  display: block;
  color: #333;
}
.navbar ul ul a:hover {
  background: #f2f2f2; 
  color: #c0392b;
}
.has-submenu > a::after { 
  content: ' ▾'; 
  font-size: 0.9em; 
  margin-left: 6px; 
}

/* ---------- QUOTE BUTTON ---------- */


.quote-btn {
  display: inline-flex;
      align-items: center;
      gap: 8px;
  padding: 12px 32px;
  background: #3a1614;
  color: #fff !important ;
  font-size: 12px;
  font-family: 'PT Serif', sans-serif;
  font-weight: 600 !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.quote-btn:hover {
  background: #b69f1d;
  transform: translateY(-2px);
}

.quote-btn {
      position: relative;
      overflow: hidden;
    }

    /* Icon hidden initially */
    .quote-btn::after {
      content: "→"; /* You can replace with ▸, ›, or an SVG */
      opacity: 0;
      transform: translateX(-8px);
      transition: all 0.3s ease;
      position: relative;
    }

    /* On hover, show + slide icon */
    .quote-btn:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
.quote-btn-mobile {
  display: block;
  text-align: center;
  margin: 20px;
  padding: 12px 25px;
  background: #3a1614;
  color: #fff !important;
  font-size: 14px;
  font-family: 'PT Serif', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.quote-btn-mobile:hover {
  background: #b69f1d;
  transform: translateY(-2px);
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-menu {
  position: fixed;
  top: 0; 
  left: -250px;
  width: 250px; 
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.3);
 
  transition: transform 0.3s ease-in-out;
  z-index: 1500;
  padding-top: 60px;
}

.mobile-menu.active {
  transform: translateX(0);
}


.mobile-menu ul {
  list-style: none; 
  padding: 0;
}
.mobile-menu li {
  padding: 15px; 
  border-bottom: 1px solid #eee;
}
.mobile-menu a {
  display: block;
  text-decoration: none;
  color: #6d6c6c;
  font-size: 14px;
  font-family: 'PT Serif', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}
.mobile-menu a:hover {
  color: #c0392b;
}
.mobile-menu.show {
  left: 0;
}
.mobile-menu .caret { 
   font-size: 14px;
  margin-left: 6px;
  display: inline-block;
  line-height: 1;
}
.mobile-menu .submenu-mobile { 
  display: none; 
  padding-left: 12px; 
}


.mobile-menu .has-submenu-mobile.active .submenu-mobile { 
  display: block; 
}
.mobile-menu .has-submenu-mobile > a { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.mobile-menu .has-submenu-mobile > a .caret { 
  transition: transform .25s ease; 
}
.mobile-menu .has-submenu-mobile.active > a .caret { 
  transform: rotate(180deg); 
}

.has-submenu-mobile.active > a {
  color: #b69f1d; /* highlight when open */
}
.has-submenu-mobile.active .caret {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.overlay {
  display: none;
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1400;
}
.overlay.show {
  display: block;
}



/* ---------- FOOTER ---------- */
footer {
  background: #2B1F25;
  color: #FFFFFF;
  padding: 60px 50px 20px;
}

.footer-column ul {
  list-style: none;   /* ✅ no bullets */
  padding-left: 0;
  margin: 0;
}

footer h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
footer h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #b69f1d;
  margin-top: 5px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-column h3 {
  font-size: 14px;
  font-family: "PT Serif", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-column p{
  font-size: 14px;
    font-family: Lato, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
}
.footer-column ul li {
  margin-bottom: 10px;
    font-size: 14px;
    font-family: Lato, sans-serif;
    color: rgb(255, 255, 255);
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
    line-height: 24px;
    font-style: normal;
    font-weight: 500;
}
.footer-column a {
  font-size: 14px;
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
    line-height: 24px;
}
.footer-column a:hover {
  color: #fff;
  text-decoration: underline;   /* ✅ now underlined */
}
.footer-bottom {
  border-top: 1px solid #444;
  text-align: left;
  padding-top: 15px;
  font-size: 14px;
}
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #b69f1d;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
  display: none;
  position: fixed;
  bottom: 10px; 
  right: 20px;
  z-index: 1000;
  font-size: 15px;
  border: none;
  background-color: #3a1614;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  padding: 12px 14px;
}
#backToTop:hover {
  background-color: #e74c3c;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 18px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #ddd;
}



/* Left text */
.footer-bottom .footer-copy {
  font-size: 14px;
  white-space: nowrap;
}

/* Right developer text */
.footer-bottom .developer-credit {
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Icon styling */
.footer-bottom .dev-icon {
  font-size: 15px;
  opacity: 0.9;
}

/* Hyperlink styling */
.footer-bottom .developer-credit a {
  color: #b69f1d;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom .developer-credit a:hover {
  text-decoration: underline;
  color: #d4bf3a;
}

/* Developer credit — EXACT FLOAT RIGHT */
.footer-credit {
  float: right;
  color: #ffffffcc;
  font-family: "Lato", sans-serif;
  margin-left: 10px;
  white-space: nowrap; /* prevent wrapping */
}

.footer-credit a {
  color: #b69f1d;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-credit a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(182, 159, 29, 0.6);
}

/* Responsive: center stacked layout */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
 
  .footer-bottom .footer-copy,
  .footer-bottom .developer-credit {
    white-space: normal;
  }
}

/* Mobile: stack below */
@media (max-width: 768px) {
  .footer-credit {
    float: none;
    display: block;
    text-align: center;
    margin-top: 6px;
  }

}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hamburger {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) {
  .navbar ul { display: none; }
  .hamburger { display: block; }
  .hero h1 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    padding: 10px 15px;
  }
  .zoom-controls {
    bottom: 5px !important;
    gap: 6px;
  }
  .zoom-controls button {
    font-size: 14px;
    padding: 6px 10px;
  }
}
@media (max-width: 480px) {
  .testimonials-wrapper { max-width: 100%; padding: 0 10px; }
  .testimonial { padding: 15px; }
  .testimonial p { font-size: 14px; }
  .testimonial h4 { font-size: 13px; }
  .testimonial-btn { font-size: 18px; padding: 5px 8px; }
  .testimonial-prev { left: -25px; }
  .testimonial-next { right: -25px; }
}
@media (max-width: 992px) {
  .masonry-gallery { column-count: 2; }
}
@media (max-width: 600px) {
  .masonry-gallery { column-count: 1; }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }
 
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
 
}