* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #c59d5f;
  --dark-color: #1a1a1a;
  --light-color: #f9f9f9;
  --text-color: #333;
  --border-radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

/* Navigation Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 2%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--primary-color) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: var(--border-radius);
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #b8905a !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 5px 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
  color: #fff;
  padding: 0;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 157, 95, 0.7);
  color: #fff;
  border: none;
  padding: 1.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.carousel-button:hover {
  background: var(--primary-color);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}



.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background: #b8905a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(197, 157, 95, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
}




/* Features Section */
.features {
  background: var(--light-color);
  padding: 80px 2%;
}

.features h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* Highlights Section */
.highlights {
  padding: 80px 2%;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.grid {
  column-count: 4;
  column-gap: 1.5rem;
  margin-bottom: 3rem;
}

img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  break-inside: avoid;
  display: block;
}

.cta-section {
  background: linear-gradient(135deg, var(--dark-color), #2a2a2a);
  color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Info Section */
.info {
  background: var(--light-color);
  padding: 80px 2%;
}

.info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  max-width: 900px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 2%;
  text-align: center;

  max-width: 900px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.testimonials a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.testimonials a:hover {
  text-decoration: underline;
}


/* Footer */
footer {
  background: var(--dark-color);
  color: #ccc;
  padding: 3rem 2%;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

footer hr {
  border: none;
  border-top: 1px solid #444;
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  color: #999;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Spacing */
section {
  margin: 0;
}

h1, h2 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h3 {
  color: var(--dark-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 0;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
  }

  .hero {
    padding: 60px 2%;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .features, .highlights, .info, .testimonials {
    padding: 50px 2%;
  }

  .features h2, .highlights h2, .testimonials h2 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .grid {
    column-count: 2;
    column-gap: 1rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .nav-container {
    padding: 0.5rem 0;
  }

  .logo {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }

  .features h2, .highlights h2 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .info p {
    font-size: 1rem;
  }

  .grid {
    column-count: 1;
    column-gap: 0;
  }
}

/* Modal/Lightbox Styles */
#imageModal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#imageModal.active {
  display: flex;
}

.modal-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.modal-close:hover {
  transform: scale(1.2);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 157, 95, 0.7);
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.modal-nav:hover {
  background: var(--primary-color);
}

.modal-nav.prev {
  left: 1rem;
}

.modal-nav.next {
  right: 1rem;
}

.modal-info {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ccc;
  font-size: 0.9rem;
  text-align: center;
  z-index: 2001;
}

@media (max-width: 768px) {
  .modal-nav {
    padding: 0.8rem 1rem;
    font-size: 1.5rem;
  }

  .modal-nav.prev {
    left: 0.5rem;
  }

  .modal-nav.next {
    right: 0.5rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .modal-info {
    font-size: 0.8rem;
  }

  #imageModal {
    padding: 0;
  }

  .modal-image {
    max-width: 95%;
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .carousel-button {
    padding: 1rem 0.7rem;
    font-size: 1.5rem;
  }

  .carousel-button.prev {
    left: 0.5rem;
  }

  .carousel-button.next {
    right: 0.5rem;
  }

  .carousel-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }

  .modal-nav {
    padding: 0.7rem 0.8rem;
    font-size: 1.2rem;
  }
  
}



/* ==============================
   STICKY BOTTOM CALL BAR
   ============================== */

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  display: flex;
  z-index: 99999;
  background: #d32f2f; /* fallback */
}

/* COMMON BUTTON STYLE */
.sticky-btn {
  flex: 1;
  text-align: center;
  line-height: 54px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* CALL BUTTON (RED) */
.call-btn {
  background: #d32f2f;
}

/* WHATSAPP BUTTON (GREEN) */
.whatsapp-btn {
  background: #128C7E;
}

/* HOVER EFFECT (DESKTOP ONLY) */
.sticky-btn:hover {
  opacity: 0.9;
}

/* PREVENT FOOTER OVERLAP */
body {
  padding-bottom: 60px;
}

/* MOBILE ONLY (RECOMMENDED) */
@media (min-width: 992px) {
  .sticky-bottom-bar {
    display: none;
  }
}


