body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  background: #fafafa;
  color: #222;
}
.hero {
  background: url("slider-5.jpg") center center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Inner Hero Layout */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

/* Top Row - Navbar Row */
.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 60px 0;
  position: relative;
}

/* Logo */
.logo {
  margin: 0;
  margin-right: auto;
  padding-left: 32px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}
.logo:hover,
.logo:visited,
.logo:active {
  color: #fff;
  text-decoration: none;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  padding: 0 32px 0 0;
  z-index: 350;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0 30px 0 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #ffffff;
}

/* CTA Button */
.colorlib-btn {
  color: #fff;
  padding: 10px 24px;
  border: 2px solid #fff;
  border-radius: 0;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.colorlib-btn:hover {
  background: #9b6868;
  color: #000;
  border: 2px solid #fff;
}

/* Hero Content */
.hero-content {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  margin-top: 0;
  z-index: 2;
  animation: fadeInUp 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive Media Queries ---------- */
@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
  }
  .hero-top-row {
    padding: 24px;
  }
  .logo {
    padding-left: 14px;
  }
  .menu-toggle {
    display: flex;
    padding-right: 14px;
  }
}

@media (max-width: 700px) {
  .hero,
  .hero-inner,
  .hero-content {
    min-height: 60vh;
  }
}

@media (max-width: 600px) {
  .hero-top-row {
    padding: 14px;
  }
  .logo {
    font-size: 1.1rem;
    padding-left: 6px;
  }
  .menu-toggle {
    padding-right: 6px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .nav-links {
    display: none; /* You'll need to script dropdown for toggle if needed */
  }
}


/* Section Divider */
.section-divider {
  width: 100%;
  height: 24px;
  background: white;
  opacity: 0.08;
  margin: 0 0 0 0;
}

/* Animated Hamburger Menu */
.menu-toggle {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
}
.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.menu-toggle .bar::before,
.menu-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.menu-toggle .bar::before {
  top: -8px;
}
.menu-toggle .bar::after {
  top: 8px;
}
.menu-toggle.open .bar {
  background: transparent;
}
.menu-toggle.open .bar::before {
  transform: rotate(45deg) translate(5px, 5px);
  top: 0;
}
.menu-toggle.open .bar::after {
  transform: rotate(-45deg) translate(5px, -5px);
  top: 0;
}

/* Overlay Navigation Menu */
.nav-links {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 200;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.nav-links.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.nav-links li {
  margin: 24px 0;
}
.nav-links li a {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #fbbd08;
}

/* Hamburger to X animation and color */
.menu-toggle .bar,
.menu-toggle .bar::before,
.menu-toggle .bar::after {
  background: #fff;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1), background 0.2s;
}
.menu-toggle.open .bar,
.menu-toggle.open .bar::before,
.menu-toggle.open .bar::after {
  background: #222;
}
.menu-toggle.open .bar {
  background: transparent;
}
.menu-toggle.open .bar::before {
  transform: rotate(45deg) translate(5px, 5px);
  top: 0;
}
.menu-toggle.open .bar::after {
  transform: rotate(-45deg) translate(5px, -5px);
  top: 0;
}

/* Always show hamburger */
.menu-toggle {
  display: flex !important;
}

/* Hide nav-links in navbar layout */
.navbar .nav-links {
  display: none !important;
}

/* Remove nav-bg overlay for clarity */
.nav-bg {
  display: none !important;
}
.nav-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 199;
}
.nav-bg.show {
  display: block;
}

.close-nav {
  position: absolute;
  top: 24px;
  right: 32px;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 210;
  transition: background 0.2s, color 0.2s;
}
.close-nav:hover {
  background: #fbbd08;
  color: #fff;
}
.nav-links {
  position: fixed;
}
.nav-links.open ~ .menu-toggle {
  display: none !important;
}
@media (max-width: 600px) {
  .close-nav {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .nav-links li a {
    font-size: 1.5rem;
  }
}

.contact-section {
  display: flex;
  padding: 60px 0 40px 0;
  background: #fafafa;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}
.contact-form-box {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 36px 32px 32px 32px;
  flex: 1.2;
  min-width: 340px;
  max-width: 480px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap; /* Optional: avoids overflow */
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
}
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  resize: vertical;
}
.contact-send-btn {
  background: #2092a7;
  color: #fff;
  border: 1px solid #2092a7;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.contact-send-btn:hover {
  background: #14677a;
  color: #fff;
}
.contact-info-box {
  flex: 1;
  min-width: 320px;
  padding: 36px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-item {
  font-size: 1.1rem;
  color: #222;
}
.contact-info-label {
  color: #2092a7;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #181818;
  margin-top: 4px;
  display: block;
}

/* Happy Customers and Footer: copy from style.css/index.html for consistency */
.testimonials {
  background: #fafafa;
  padding: 80px 0 60px 0;
  text-align: center;
}
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.testimonial-card {
  border-radius: 0px;
  width: 300px;
  padding: 32px 24px 24px 24px;
  text-align: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: flex-start;
}
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 18px;
  text-align: left;
  text-align: justify;
}
.testimonial-card h4 {
  margin-bottom: 2px;
  font-size: 15px;
  text-align: left;
  color: rgb(189, 182, 182);
}
.testimonial-card.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.18, 1),
    transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}
.testimonial-card.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: #181818;
  color: #fff;
  padding: 60px 0 0 0;
  margin-top: 60px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 12px;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #2092a7;
}
.subscribe-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.subscribe-form input[type="email"] {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  outline: none;
}
.subscribe-form button {
  background: #2092a7;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-form button:hover {
  background: #222;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 30px 0 0 0;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #2092a7;
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #bbb;
  margin: 30px 0 0 0;
  padding-bottom: 30px;
}
.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 40px 0 0 0;
}

@media (max-width: 1150px) {
  .footer-container{
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
  }
}

/* 📱 Tablet & Below (≤1100px) */
@media (max-width: 1100px) {
  .contact-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .contact-form-box,
  .contact-info-box {
    max-width: 80%;
    min-width: 0;
    width: 100%;
  }
}

/* 📱 Small Tablets (≤900px) */
@media (max-width: 900px) {
  .contact-form-box {
    padding: 24px 16px;
  }
  .contact-info-box {
    padding: 24px 16px 0 16px;
  }
}

/* 📱 Mobile Devices (≤700px) */
@media (max-width: 700px) {
  .contact-form-box,
  .contact-info-box {
    padding: 16px 8px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 1rem;
    padding: 10px;
  }
  .contact-send-btn {
    width: 100%;
    text-align: center;
  }
  .contact-row {
  flex-direction: column;
  gap: 6px;
}
}

/* 📱 Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .contact-form-box,
  .contact-info-box {
    padding: 12px;
  }
  .contact-send-btn {
    font-size: 0.95rem;
    padding: 10px;
  }
  .contact-info-value {
    font-size: 1.1rem;
  }
}



/* ✅ Mobile Ultra Small Screens Fix (150px–320px) */
@media (max-width: 320px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
}
