:root {
  --primary: #2C3E50;
  --secondary: #34495E;
  --accent: #E67E22;
  --light: #F5F5F5;
  --dark: #1A2530;
  --gray: #ECF0F1;
  --text: #333333;
  --text-light: #7F8C8D;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-light { color: var(--light) !important; }
.text-dark { color: var(--dark) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-gray { background-color: var(--gray) !important; }

.border-accent { border-color: var(--accent) !important; }

.hover\:text-accent:hover { color: var(--accent) !important; }
.hover\:bg-accent:hover { background-color: var(--accent) !important; }
.hover\:bg-accent\/90:hover { background-color: rgba(230, 126, 34, 0.9) !important; }
.hover\:border-accent:hover { border-color: var(--accent) !important; }

header {
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  position: relative;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section ul, 
.hero-section li,
.hero-section .flex {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

.card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

.btn {
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: rgba(230, 126, 34, 0.9);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

#chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

#chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

#chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#chat-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#chat-popup-header {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  position: relative;
}

#chat-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

#chat-close:hover {
  color: var(--accent);
}

#chat-popup-body {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

footer {
  background-color: var(--primary);
  color: white;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .py-24 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  
  .hero-section {
    height: 70vh !important;
  }
  
  .contact-form-container {
    padding: 1.5rem !important;
  }
  
  .contact-info-container {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}

.contact-form-container {
  max-width: 100%;
  padding: 1.5rem;
}

.contact-info-container {
  padding-right: 1.5rem;
  padding-left: 0;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 1rem !important;
  }
  
  .contact-info-container {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

.swiper-pagination-gallery {
  position: static !important;
  margin-top: 1rem;
}

.space-y-8 > * + * {
  margin-top: 1rem !important;
}

#chat-popup .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left top;
    margin-bottom: 10px;
}

@media (max-width: 350px) {
    #chat-popup .g-recaptcha {
        transform: scale(0.77);
        transform-origin: left top;
    }
}