:root {
  --primary: #d4af37;
  --primary-dark: #b89420;
  --secondary: #1a1a1a;
  --accent: #005f73;
  --light: #f8f8f8;
  --text: #333333;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}

.btn:hover {
  background: transparent;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  margin-left: 15px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
  color: #c9a24d;
  line-height: 1.1 !important;
}

.section-title h2:after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
  background-color: rgba(26, 26, 26, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: -10px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--white);
}

.logo-text span {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

nav ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

nav ul li a i {
  margin-right: 8px;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all 0.3s;
}

nav ul li a:hover i {
  transform: translateX(3px);
}

.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background-color: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  z-index: 0;
}

@keyframes fadeInHero {
  to {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
  color: #1A1A1A;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #555555;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 3;
}

.trust-indicators {
  background: var(--secondary);
  color: var(--white);
  padding: 40px 0;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-icon {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 15px;
}

.trust-item div {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 5px;
  font-weight: bold;
}

.trust-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.services {
  padding: 100px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-title p,
.section-desc {
  text-align: center;
  line-height: 1.6;
  word-spacing: 0.5px;
  hyphens: auto;
  color: #333333;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  aspect-ratio: 4/3;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-content p {
  text-align: justify;
  line-height: 1.6;
  hyphens: auto;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-content a {
  color: #0056b3;
  font-weight: 600;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
}

.service-content a i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.service-content a:hover i {
  transform: translateX(5px);
}

.why-choose {
  padding: 100px 0;
  background: #0f0f0f;
  color: #d6d6d6;
  position: relative;
}

.why-choose:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.why-choose .section-title h2 {
  color: #f5f5f5;
}

.why-choose p {
  color: #b8b8b8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--secondary);
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.before-after {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.before-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.before-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider:after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 1.2rem;
}

.testimonials {
  padding: 100px 0;
  background: var(--light);
}

.testimonial-slider-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.testimonial-left {
  width: 45%;
  padding-right: 20px;
}

.testimonial-right {
  width: 48%;
  position: relative;
}

.testimonial-left h1 {
  font-size: 48px;
  margin: 10px 0 20px;
  background: linear-gradient(to right, #ecac09, #e9c059);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.testimonial-left .description {
  font-size: 16px;
  color: #343232;
  line-height: 1.6;
  margin-bottom: 30px;
}

.rating {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.rating img {
  width: 40px;
  margin-right: 10px;
}

.rating span {
  font-size: 26px;
  font-weight: bold;
}

.testimonial-box {
  background: #25252b;
  border-radius: 18px;
  padding: 40px;
  min-height: 400px;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.testimonial-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #f5c242, #d6b664);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 40px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.person {
  display: flex;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  background: #f5c242;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

.person-info strong {
  font-size: 18px;
  display: block;
  color: #e0b030;
}

.person-info small {
  color: #c3c3c3;
  font-size: 14px;
}

.stars {
  font-size: 22px;
  color: #f5c242;
}

.nav-btns {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-slider {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5c242;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  color: black;
  border: none;
  transition: all 0.3s ease;
}

.btn-slider:hover {
  background: #e0b030;
  transform: scale(1.05);
}

.btn-slider:active {
  transform: scale(0.95);
}

.slider-indicators {
  display: none !important;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #f5c242;
  transform: scale(1.2);
}

.slide-in {
  animation: slideIn 0.2s ease forwards;
}

.slide-out {
  animation: slideOut 0.2s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

.trust-cta-heading {
  text-align: center;
  margin: 60px 0 30px;
  padding: 0 15px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--secondary);
}

.trust-cta-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
  padding: 0 30px;
}

.trust-cta-link {
  color: var(--primary);
  font-weight: 600;
}

.cta-section {
  text-align: center;
  margin-top: 70px;
  padding: 50px 40px;
  background: var(--secondary);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  color: white;
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.1"><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white"/></pattern><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: white;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 35px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-section .btn {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  font-size: 0.95rem;
  padding: 12px 28px;
}

.cta-section .btn:hover {
  background: transparent;
  color: #ffffff;
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-size: 0.95rem;
  padding: 12px 28px;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--secondary);
}

.whatsapp-btn {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: white !important;
}

.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text);
  line-height: 1.7;
}

footer {
  background: var(--secondary);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  margin-bottom: 15px;
  opacity: 0.8;
  text-align: justify;
  line-height: 1.6;
  hyphens: auto;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(212, 175, 55, 0.08), transparent 60%), rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open #mobileMenuBtn {
  color: var(--primary);
  transform: rotate(90deg);
}

@keyframes menuItemIn {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

.contact-section-wow {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(0, 95, 115, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.contact-container-wow {
  position: relative;
  z-index: 2;
}

.contact-header-wow {
  text-align: center;
  margin-bottom: 70px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
  position: relative;
}

.contact-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.contact-title-wow {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.contact-grid-wow {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-wow {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.info-header {
  margin-bottom: 35px;
  text-align: center;
}

.info-header h3 {
  font-size: 1.7rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-item-wow {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 12px;
  background: var(--light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.contact-item-wow:hover {
  transform: translateX(8px);
  background: white;
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.contact-item-wow:hover .item-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.item-icon {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.item-content h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 6px;
  font-weight: 600;
}

.item-content p,
.item-content a {
  color: #555;
  font-size: 1rem;
  transition: color 0.3s;
  margin: 0;
}

.item-content a:hover {
  color: var(--primary);
}

.whatsapp-highlight {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 6px 14px;
  border-radius: 18px;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.whatsapp-highlight i {
  margin-right: 6px;
}

.whatsapp-link {
  color: inherit;
  text-decoration: none;
}

.working-hours {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
  color: white;
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}

.working-hours::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(212,175,55,0.1)"/></svg>');
  background-size: cover;
}

.working-hours h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.working-hours-icon {
  margin-right: 8px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.emergency-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 25px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  animation: pulse 2s infinite;
  font-size: 0.9rem;
}

.emergency-badge i {
  margin-right: 8px;
  font-size: 1rem;
}

.contact-form-wow {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.form-header {
  margin-bottom: 35px;
  text-align: center;
}

.form-header h3 {
  font-size: 1.7rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

.form-group-wow {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

.form-control-wow {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e9e9e9;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control-wow:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.form-control-wow.error {
  border-color: #ff6b6b;
  animation: shake 0.5s;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-control-wow.success {
  border-color: #10b981;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

textarea.form-control-wow {
  min-height: 130px;
  resize: vertical;
}

.submit-btn-wow {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.submit-btn-wow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn-wow:active {
  transform: translateY(-1px);
}

.submit-btn-wow.loading {
  background: #e9e9e9;
  pointer-events: none;
}

.submit-btn-wow.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success {
  background: linear-gradient(135deg, #10b981 0%, #0da271 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 15px;
  display: none;
  animation: fadeIn 0.5s ease;
}

.form-success.show {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-success i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.form-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
}

.floating-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 70px;
}

.floating-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.floating-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 95, 115, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--primary);
}

.floating-card h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.floating-card p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.card-link:hover {
  transform: translateX(5px);
  color: var(--primary-dark);
}

.card-link i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.card-link:hover i {
  transform: translateX(5px);
}

.floating-contact-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-contact-element {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.08;
  animation: floatContact 20s infinite linear;
}

.floating-contact-element:nth-child(1) { width: 70px; height: 70px; top: 10%; left: 5%; }
.floating-contact-element:nth-child(2) { width: 100px; height: 100px; bottom: 15%; right: 8%; background: var(--accent); }
.floating-contact-element:nth-child(3) { width: 50px; height: 50px; top: 60%; left: 85%; }

.delay-0 { animation-delay: 0s; }
.delay-7 { animation-delay: 7s; }
.delay-14 { animation-delay: 14s; }

@keyframes floatContact {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 40px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.contact-address-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 5px;
}

.footer-directions-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Animation Delays */
@media (max-width: 768px) {
  nav.active ul li:nth-child(1) { animation-delay: 0.06s; }
  nav.active ul li:nth-child(2) { animation-delay: 0.12s; }
  nav.active ul li:nth-child(3) { animation-delay: 0.18s; }
  nav.active ul li:nth-child(4) { animation-delay: 0.24s; }
  nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
}

/* Responsive styles */
@media (max-width: 768px) {
  .trust-cta-heading {
    font-size: 1.6rem !important;
    margin: 40px 15px 20px !important;
    padding: 0 10px !important;
  }

  .trust-cta-lead {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    padding: 0 15px !important;
    margin: 0 auto 30px !important;
    text-align: justify !important;
    text-align-last: center !important;
    hyphens: auto !important;
  }

  .cta-section {
    margin-top: 40px !important;
    margin-bottom: 30px !important;
    padding: 30px 20px !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-section-wow {
    padding-top: 80px !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 84%;
    max-width: 360px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.95)),
                radial-gradient(800px 400px at -10% -10%, rgba(212, 175, 55, 0.12), transparent 60%),
                radial-gradient(600px 300px at 120% 10%, rgba(0, 95, 115, 0.12), transparent 60%);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
    padding: 90px 20px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }

  nav.active {
    transform: translateX(0);
  }

  nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 8px;
    margin-right: 6px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  nav ul li {
    margin: 0;
    opacity: 0;
  }

  nav.active ul li {
    animation: menuItemIn 0.45s ease forwards;
  }

  nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    padding: 14px 14px;
    border-radius: 12px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
  }

  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
  }

  nav ul li a:active {
    transform: translateX(2px) scale(0.99);
  }

  nav ul li a::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(180deg, var(--primary), rgba(212, 175, 55, 0.5));
    transition: width 0.35s ease;
  }

  nav ul li a:hover::before,
  nav ul li a:focus::before { width: 4px; }

  nav ul li a i.fa { display: none; }
  nav ul li a .fa { display: none; }

  .mobile-cta {
    display: block;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
  }

  .btn-mobile-primary {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), #f5d976);
    color: #2a2a2a;
    border: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .btn-mobile-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
  }

  .btn-mobile-primary i { margin-right: 8px; }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-actions .action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .mobile-actions .action:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .mobile-actions .action i { font-size: 1rem; color: var(--primary); }

  .mobile-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .mobile-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
  }

  .hero { min-height: 500px; }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-secondary { margin-left: 0; margin-top: 15px; }

  .before-after { height: 300px; }

  .testimonial-slider-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
    padding-right: 0;
  }

  .testimonial-left { text-align: center; }
  .testimonial-left h1 { font-size: 32px; }

  .nav-btns {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .testimonial-box {
    min-height: 350px;
    padding: 25px;
  }

  .contact-title-wow { font-size: 2rem; }
  .contact-description { font-size: 1rem; }

  .contact-info-wow,
  .contact-form-wow { padding: 25px 20px; }

  .contact-item-wow {
    padding: 18px;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .item-icon {
    margin-right: 0;
    margin-bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .item-content h4,
  .item-content p,
  .item-content a { text-align: center; font-size: 0.95rem; }

  .form-group-wow { text-align: left; margin-bottom: 18px; }
  .form-label { text-align: left; font-size: 0.9rem; margin-bottom: 5px; }
  .form-control-wow { padding: 14px; font-size: 0.9rem; }
  .submit-btn-wow { padding: 16px; font-size: 0.95rem; }

  .floating-contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 50px;
  }

  .floating-card { padding: 20px; text-align: center; }
  .card-icon { width: 55px; height: 55px; font-size: 1.3rem; margin-bottom: 12px; }
  .floating-card h4 { font-size: 1.1rem; }
  .floating-card p { font-size: 0.9rem; }

  .cta-section h2 { font-size: 1.8rem; margin-bottom: 12px; }
  .cta-section p { font-size: 1rem; margin-bottom: 25px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }

  .cta-section .btn,
  .btn-secondary { width: 100%; max-width: 280px; justify-content: center; padding: 12px 20px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .trust-cta-heading { font-size: 1.4rem !important; margin: 30px 10px 15px !important; }
  .trust-cta-lead { font-size: 0.9rem !important; padding: 0 10px !important; margin: 0 auto 25px !important; }
  .cta-section { margin-top: 30px !important; margin-bottom: 25px !important; padding: 25px 15px !important; }
  .contact-section-wow { padding-top: 70px !important; }

  .contact-title-wow { font-size: 1.7rem; }
  .contact-description { font-size: 0.95rem; }
  .submit-btn-wow { padding: 14px; font-size: 0.9rem; }
}

@media (max-width: 1200px) {
  .contact-grid-wow { grid-template-columns: 1fr; gap: 35px; }
  .contact-title-wow { font-size: 2.5rem; }
}

@media (max-width: 992px) {
  .before-after { height: 400px; }
}

@media (max-width: 576px) {
  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.8rem; }
  .trust-container { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .before-after { height: 250px; }
  .testimonial-box { padding: 20px; }
}

/* Ensure text-size-adjust for all text elements */
body, p, span, div, a, li {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.atomic-answer {
  color: #c5a059;
}