:root {
  --maroon: #7B2D26;
  --gold: #C9A14A;
  --white: #fff;
  --dark: #4B2E2B;
}

body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 2vw;
  background: rgba(255,255,255,0);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  padding-left: 0;
}

.logo img {
  height: 54px;
  margin-left: 0;
  padding-left: 0;
  display: block;
}

nav a {
  color: var(--maroon);
  text-decoration: none;
  margin-left: 28px;
  font-weight: 700;
  font-size: 1.08em;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--gold);
}

.btn, .cta-btn {
  background: linear-gradient(90deg, var(--maroon) 60%, var(--gold) 100%);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.08em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px #7B2D2622;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn:hover, .cta-btn:hover {
  background: linear-gradient(90deg, var(--gold) 60%, var(--maroon) 100%);
  transform: scale(1.04);
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--maroon);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(123, 45, 38, 0.1);
  box-shadow: 0 4px 20px rgba(123, 45, 38, 0.15);
  z-index: 1000;
  animation: slideDown 0.3s ease-out;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(123, 45, 38, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.mobile-nav a:hover {
  background-color: rgba(123, 45, 38, 0.05);
  color: var(--gold);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(123, 45, 38, 0.1);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    display: none;
  }
  
  .header-inner {
    justify-content: space-between;
    padding: 8px 16px;
  }
  
  .logo {
    margin-left: 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo span {
    font-size: 1.1em;
    color: var(--maroon);
    text-shadow: none;
  }
}

/* Additional mobile responsive improvements */
@media (max-width: 480px) {
  .header-inner {
    padding: 6px 12px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .logo span {
    font-size: 1em;
  }
  
  .mobile-menu-toggle {
    padding: 6px;
  }
  
  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
  }
  
  .mobile-nav a {
    padding: 14px 16px;
    font-size: 1em;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
}
.hero-slider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
}
.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
}
.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slider .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; height: 110px;
  background: linear-gradient(to bottom, rgba(123,45,38,0.85) 60%, rgba(123,45,38,0.0) 100%);
  z-index: 3;
  backdrop-filter: blur(8px);
}
.hero-slider .hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: #fff;
  text-align: center;
  width: 90vw;
  max-width: 700px;
  text-shadow: 0 2px 16px #0008;
}
.hero-slider .logo img {
  height: 70px;
  margin-bottom: 12px;
}
.hero-slider h1 {
  font-size: 2.5em;
  margin: 0 0 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.hero-slider p {
  font-size: 1.2em;
  margin-bottom: 28px;
}
.hero-slider .cta-btn {
  background: linear-gradient(90deg, #7B2D26 60%, #C9A14A 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 38px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px #7B2D2622;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.hero-slider .cta-btn:hover {
  background: linear-gradient(90deg, #C9A14A 60%, #7B2D26 100%);
  transform: scale(1.04);
}
.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.slider-controls .dot {
  display: inline-block;
  width: 14px; height: 14px;
  margin: 0 6px;
  background: #fff8;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #C9A14A;
  transition: background 0.2s, border 0.2s;
}
.slider-controls .dot.active {
  background: #C9A14A;
  border: 2px solid #fff;
}
@media (max-width: 700px) {
  .hero-slider { height: 56vw; min-height: 260px; }
  .hero-slider h1 { font-size: 1.3em; }
  .hero-slider .logo img { height: 44px; }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

/* Offer Modal Styles */
.modal-offer {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
.modal-offer-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px #7B2D2622;
  padding: 38px 32px 28px 32px;
  max-width: 450px;
  width: 90vw;
  text-align: center;
  position: relative;
  animation: popIn 0.5s cubic-bezier(.23,1.01,.32,1);
}
.modal-offer-content h2 {
  color: var(--maroon);
  font-size: 1.6em;
  margin-bottom: 16px;
}
.modal-offer-content p {
  color: var(--dark);
  font-size: 1.12em;
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-offer-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.5em;
  color: #b00;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.modal-offer-close:hover { color: var(--maroon); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { 0% { transform: scale(0.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* AI Chat Assistant Styles */
.whatsapp-chat-icon {
  position: fixed;
  right: 32px;
  bottom: 108px;
  z-index: 9998;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  box-shadow: 0 4px 18px #25D36622;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  animation: bounceIn 0.7s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}
.whatsapp-chat-icon:hover {
  background: #128C7E;
  transform: scale(1.08);
}
.ai-chat-icon {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9998;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  box-shadow: 0 4px 18px #7B2D2622;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  animation: bounceIn 0.7s cubic-bezier(.23,1.01,.32,1);
}
.ai-chat-icon:hover {
  background: var(--gold);
  color: var(--maroon);
  transform: scale(1.08);
}
@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.ai-chat-box {
  position: fixed;
  right: 32px;
  bottom: 100px;
  z-index: 9999;
  width: 340px;
  max-width: 98vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px #7B2D2622;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s;
}
.ai-chat-header {
  background: var(--maroon);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.08em;
}
.ai-chat-close {
  cursor: pointer;
  font-size: 1.3em;
  margin-left: 10px;
  color: #fff;
  transition: color 0.2s;
}
.ai-chat-close:hover { color: var(--gold); }
.ai-chat-body {
  padding: 16px 14px 8px 14px;
  flex: 1 1 auto;
  max-height: 260px;
  overflow-y: auto;
  background: #faf7f5;
  font-size: 1em;
}
.ai-msg {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 90%;
  word-break: break-word;
  box-shadow: 0 2px 8px #7B2D2610;
  font-size: 1em;
}
.ai-msg-bot {
  background: #f3e9e7;
  color: var(--maroon);
  align-self: flex-start;
}
.ai-msg-user {
  background: var(--gold);
  color: #fff;
  align-self: flex-end;
}
.ai-chat-form {
  display: flex;
  border-top: 1px solid #eee;
  padding: 10px 10px 10px 14px;
  background: #fff;
  border-radius: 0 0 16px 16px;
}
.ai-chat-form input {
  flex: 1 1 auto;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1em;
  margin-right: 8px;
  background: #f8f8f8;
  outline: none;
}
.ai-chat-form button {
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s;
}
.ai-chat-form button:hover {
  background: var(--gold);
  color: var(--maroon);
}
@media (max-width: 600px) {
  .whatsapp-chat-icon {
    right: 12px;
    bottom: 88px;
    width: 48px; height: 48px;
    font-size: 1.3em;
  }
  .ai-chat-icon {
    right: 12px;
    bottom: 12px;
    width: 48px; height: 48px;
    font-size: 1.3em;
  }
  .ai-chat-box {
    right: 2vw;
    bottom: 70px;
    width: 98vw;
    min-width: 0;
  }
}
