/* Basic modern, accessible, responsive design */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0b1f1d;
  line-height: 1.6;
  background: linear-gradient(180deg, #f0fbf9 0%, #e8f6f3 100%);
}

:root {
  --brand: #0d7b6e;
  --brand-600: #0c6b60;
  --ink: #0b1f1d;
  --ink-light: #5a6c69;
  --muted: #f1f5f4;
  --ring: #91d7ce;
  --radius: 12px;
  --container: 1120px;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: .5rem .75rem;
  border-radius: .5rem;
  outline: 2px solid var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, #0d7b6e, #0c6b60);
  color: #fff;
  border-bottom: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #31c7b5, #0d7b6e);
  opacity: 0.6;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: .75rem;
}
.logo { 
  display: inline-flex; 
  align-items: center; 
  text-decoration: none; 
  background: #ffffff; 
  padding: .3rem .5rem; 
  border-radius: .75rem; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.logo img { max-height: 60px; width: auto; display: block; }

.site-nav ul { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }
.site-nav a { 
  position: relative;
  text-decoration: none; 
  color: #fff; 
  padding: .4rem .6rem; 
  border-radius: .5rem; 
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .2rem;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: 0.85;
}
.site-nav a:hover::after, .site-nav a:focus::after { transform: scaleX(1); }
.site-nav a:hover, .site-nav a:focus { background: rgba(255,255,255,0.08); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.site-header .hamburger-line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Header CTAs next to menu button (mobile) */
.header-cta { display: none; align-items: center; gap: .5rem; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--brand);
  text-decoration: none;
}
.icon-btn:hover { background: #e6eeec; }
.whatsapp-header { color: #128c7e; }
.call-header { color: #0056b3; }

.hero { position: relative; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}
.hero::before {
  width: 380px; height: 380px;
  left: -120px; top: -80px;
  background: radial-gradient(closest-side, rgba(20,184,166,0.6), rgba(20,184,166,0) 70%);
  animation: floatBlobA 16s ease-in-out infinite;
}
.hero::after {
  width: 300px; height: 300px;
  right: -100px; bottom: -60px;
  background: radial-gradient(closest-side, rgba(13,123,110,0.6), rgba(13,123,110,0) 70%);
  animation: floatBlobB 20s ease-in-out infinite;
}
@keyframes floatBlobA { 0%,100% { transform: translate(0,0) } 50% { transform: translate(30px, 20px) } }
@keyframes floatBlobB { 0%,100% { transform: translate(0,0) } 50% { transform: translate(-25px, -15px) } }

.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 4rem 0;
}

.hero h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  line-height: 1.1; 
  margin: 0 0 1rem; 
  text-transform: capitalize;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero .lead { 
  font-size: 1.25rem; 
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1rem 0 0; justify-content: center; }
.btn { background: var(--brand); color: #fff; text-decoration: none; border: none; display: inline-flex; align-items: center; justify-content: center; padding: .75rem 1rem; border-radius: .7rem; font-weight: 600; box-shadow: 0 2px 0 0 var(--brand-600); }
.btn {
  background: linear-gradient(180deg, #12a393, #0c6b60);
  box-shadow: 0 6px 18px rgba(13,123,110,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.btn:hover { 
  background: linear-gradient(180deg, #0fb29f, #0b5f56); 
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13,123,110,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 30%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
  transform: rotate(20deg) translateX(-150%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: rotate(20deg) translateX(450%); }
.btn--ghost { background: transparent; color: white; border: 2px solid white; box-shadow: none; }
.btn--ghost:hover { background: white; color: var(--brand); }
.btn--whatsapp { background: #25d366; color: white; border: none; box-shadow: 0 2px 0 0 #128c7e; }
.btn--whatsapp:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3); }
.btn--lg { padding: .9rem 1.25rem; }
.btn--sm { padding: .5rem .75rem; }

.section { padding: 3rem 0; }
.section--muted { background: linear-gradient(180deg, #ecfaf7, #e6f4f1); }
.section h2 { margin-top: 0; font-size: 1.7rem; }
.section h2 {
  background: linear-gradient(180deg, #0d7b6e, #0a5a50);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-intro { margin-top: .25rem; color: #294b47; }

.prose { max-width: 80ch; }
.prose h3 { margin-top: 1.2rem; }
.prose blockquote { border-inline-start: 4px solid var(--brand); padding: .5rem 1rem; margin: .75rem 0; background: #f6fbfa; border-radius: .5rem; }

/* Testimonials Styles */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e6eeec;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-content {
  flex-grow: 1;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2d5953;
  margin: 0;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--brand);
  position: absolute;
  left: -10px;
  top: -5px;
  opacity: 0.3;
}

.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--brand);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f5f4;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initial {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.author-location {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6c69;
}
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { border: 1px solid #e0ecea; padding: .6rem .5rem; }
.data-table th { background: #eef6f5; text-align: left; }

.list-check { list-style: none; padding-left: 0; }
.list-check li { position: relative; padding-left: 1.6rem; }
.list-check li::before { content: "✔"; color: var(--brand); position: absolute; left: 0; top: .2rem; }

.grid.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1.25rem; }

.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 1.5rem; 
  margin-top: 2rem; 
}

.service-card { 
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius); 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
                    linear-gradient(135deg, #12a393, #31c7b5, #0d7b6e, #12a393);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 100% 100%, 300% 300%;
  animation: borderGlow 12s linear infinite;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(13,123,110,0.15);
}

.card { background: rgba(255,255,255,0.92); border: 2px solid transparent; border-radius: var(--radius); overflow: clip; display: flex; flex-direction: column; background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), linear-gradient(135deg, #12a393, #31c7b5, #0d7b6e, #12a393); background-origin: border-box; background-clip: padding-box, border-box; background-size: 100% 100%, 300% 300%; animation: borderGlow 12s linear infinite; }

@keyframes borderGlow {
  0% { background-position: 0% 50%, 0% 50%; }
  50% { background-position: 0% 50%, 100% 50%; }
  100% { background-position: 0% 50%, 0% 50%; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Header on scroll */
.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  backdrop-filter: saturate(140%) blur(6px);
}

/* Fancy scrollbar */
* { scrollbar-width: thin; scrollbar-color: #0d7b6e #e9f5f3; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e9f5f3; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #14b8a6, #0d7b6e); border-radius: 999px; border: 2px solid #e9f5f3; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
.card-media img { width: 100%; height: auto; display: block; }
.card-body { padding: 1.25rem; display: grid; gap: .75rem; }
.card h3, .service-card h3 { margin: .25rem 0; font-size: 1.2rem; color: var(--ink); }
.service-card .card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.service-card p { color: #5a6c69; line-height: 1.5; margin: 0; flex-grow: 1; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 1rem; padding-left: 1rem; }

/* Coverage Areas */
.coverage-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.coverage-text {
  flex: 1;
}

.coverage-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Capacities Section */
.capacities-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.capacities-text {
  flex: 1;
}

.capacities-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Process Section */
.process-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.process-text {
  flex: 1;
}

.process-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.about-text {
  flex: 1;
}

.about-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Overview Section */
.overview-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.overview-text {
  flex: 1;
}

.overview-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Specialized Services */
.specialized-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.specialized-service {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialized-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.specialized-service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.specialized-service h3 {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.specialized-service p {
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; }
.area-tags li { background: #e8f5f3; color: #0c4a43; padding: .4rem .6rem; border-radius: 999px; border: 1px solid #cdeadb; }

.contact-info { display: flex; justify-content: center; }
address { font-style: normal; border: 1px solid #e6eeec; border-radius: var(--radius); padding: 1rem; background: #fff; }
.quote-form { border: 1px solid rgba(13,123,110,0.12); border-radius: var(--radius); padding: 1rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.contact-meta { margin-bottom: 1rem; }
.field { display: grid; gap: .25rem; margin-bottom: .75rem; }
input, select, textarea { width: 100%; padding: .6rem .7rem; border: 1px solid #d8e6e3; border-radius: .6rem; font: inherit; }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--ring); border-color: var(--brand); }
.form-hint { color: #335a56; font-size: .95rem; }

.site-footer { border-top: 1px solid #e6eeec; padding: 2rem 0 1rem; background: #f8fffe; }

.footer-content { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2rem; 
  margin-bottom: 1.5rem;
}

.footer-info h3 { 
  margin: 0 0 0.5rem; 
  color: var(--brand); 
  font-size: 1.2rem;
}

.footer-info p { 
  margin: 0 0 1rem; 
  color: #5a6c69; 
  font-size: 0.95rem;
}

.footer-contact { 
  margin-bottom: 1rem; 
}

.footer-contact p { 
  margin: 0.25rem 0; 
}

.footer-contact a { 
  color: var(--brand); 
  text-decoration: none; 
  font-weight: 500;
}

.footer-contact a:hover { 
  text-decoration: underline; 
}

.footer-nav { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap;
}

.footer-nav a { 
  color: var(--brand); 
  text-decoration: none; 
  font-size: 0.95rem;
}

.footer-nav a:hover { 
  text-decoration: underline; 
}

.footer-map h4 { 
  margin: 0 0 0.75rem; 
  color: var(--ink); 
  font-size: 1.1rem;
}

.map-container { 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-bottom { 
  border-top: 1px solid #e6eeec; 
  padding-top: 1rem; 
  text-align: center; 
  color: #5a6c69; 
  font-size: 0.9rem;
}

*** Begin Patch
*** Update File: /Users/khawarlatif/Desktop/truck-water/styles.css
@@
 .footer-bottom { 
   border-top: 1px solid #e6eeec; 
   padding-top: 1rem; 
   text-align: center; 
   color: #5a6c69; 
   font-size: 0.9rem;
 }
+
+.footer-bottom-inner {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  gap: 1rem;
+  flex-wrap: wrap;
+}
+
+.footer-social {
+  display: inline-flex;
+  gap: .6rem;
+}
+
+.footer-social a {
+  color: #0d7b6e;
+  width: 36px;
+  height: 36px;
+  display: inline-flex;
+  align-items: center;
+  justify-content: center;
+  border-radius: 50%;
+  background: #e8f6f3;
+  text-decoration: none;
+  transition: transform .2s ease, background .2s ease;
+}
+
+.footer-social a:hover { 
+  transform: translateY(-2px);
+  background: #d9f0ec;
+}
+
+@media (max-width: 640px) {
+  .footer-bottom { text-align: left; }
+  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
+}
*** End Patch6b60);
  color: #fff;
  border-bottom: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #31c7b5, #0d7b6e);
  opacity: 0.6;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: .75rem;
}
.logo { 
  display: inline-flex; 
  align-items: center; 
  text-decoration: none; 
  background: #ffffff; 
  padding: .3rem .5rem; 
  border-radius: .75rem; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.logo img { max-height: 60px; width: auto; display: block; }

.site-nav ul { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }
.site-nav a { 
  position: relative;
  text-decoration: none; 
  color: #fff; 
  padding: .4rem .6rem; 
  border-radius: .5rem; 
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .2rem;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: 0.85;
}
.site-nav a:hover::after, .site-nav a:focus::after { transform: scaleX(1); }
.site-nav a:hover, .site-nav a:focus { background: rgba(255,255,255,0.08); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.site-header .hamburger-line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Header CTAs next to menu button (mobile) */
.header-cta { display: none; align-items: center; gap: .5rem; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--brand);
  text-decoration: none;
}
.icon-btn:hover { background: #e6eeec; }
.whatsapp-header { color: #128c7e; }
.call-header { color: #0056b3; }

.hero { position: relative; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}
.hero::before {
  width: 380px; height: 380px;
  left: -120px; top: -80px;
  background: radial-gradient(closest-side, rgba(20,184,166,0.6), rgba(20,184,166,0) 70%);
  animation: floatBlobA 16s ease-in-out infinite;
}
.hero::after {
  width: 300px; height: 300px;
  right: -100px; bottom: -60px;
  background: radial-gradient(closest-side, rgba(13,123,110,0.6), rgba(13,123,110,0) 70%);
  animation: floatBlobB 20s ease-in-out infinite;
}
@keyframes floatBlobA { 0%,100% { transform: translate(0,0) } 50% { transform: translate(30px, 20px) } }
@keyframes floatBlobB { 0%,100% { transform: translate(0,0) } 50% { transform: translate(-25px, -15px) } }

.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 4rem 0;
}

.hero h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  line-height: 1.1; 
  margin: 0 0 1rem; 
  text-transform: capitalize;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero .lead { 
  font-size: 1.25rem; 
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1rem 0 0; justify-content: center; }
.btn { background: var(--brand); color: #fff; text-decoration: none; border: none; display: inline-flex; align-items: center; justify-content: center; padding: .75rem 1rem; border-radius: .7rem; font-weight: 600; box-shadow: 0 2px 0 0 var(--brand-600); }
.btn {
  background: linear-gradient(180deg, #12a393, #0c6b60);
  box-shadow: 0 6px 18px rgba(13,123,110,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.btn:hover { 
  background: linear-gradient(180deg, #0fb29f, #0b5f56); 
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13,123,110,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 30%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
  transform: rotate(20deg) translateX(-150%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: rotate(20deg) translateX(450%); }
.btn--ghost { background: transparent; color: white; border: 2px solid white; box-shadow: none; }
.btn--ghost:hover { background: white; color: var(--brand); }
.btn--whatsapp { background: #25d366; color: white; border: none; box-shadow: 0 2px 0 0 #128c7e; }
.btn--whatsapp:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3); }
.btn--lg { padding: .9rem 1.25rem; }
.btn--sm { padding: .5rem .75rem; }

.section { padding: 3rem 0; }
.section--muted { background: linear-gradient(180deg, #ecfaf7, #e6f4f1); }
.section h2 { margin-top: 0; font-size: 1.7rem; }
.section h2 {
  background: linear-gradient(180deg, #0d7b6e, #0a5a50);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-intro { margin-top: .25rem; color: #294b47; }

.prose { max-width: 80ch; }
.prose h3 { margin-top: 1.2rem; }
.prose blockquote { border-inline-start: 4px solid var(--brand); padding: .5rem 1rem; margin: .75rem 0; background: #f6fbfa; border-radius: .5rem; }

/* Testimonials Styles */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e6eeec;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-content {
  flex-grow: 1;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2d5953;
  margin: 0;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--brand);
  position: absolute;
  left: -10px;
  top: -5px;
  opacity: 0.3;
}

.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--brand);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f5f4;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initial {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.author-location {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6c69;
}
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { border: 1px solid #e0ecea; padding: .6rem .5rem; }
.data-table th { background: #eef6f5; text-align: left; }

.list-check { list-style: none; padding-left: 0; }
.list-check li { position: relative; padding-left: 1.6rem; }
.list-check li::before { content: "✔"; color: var(--brand); position: absolute; left: 0; top: .2rem; }

.grid.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1.25rem; }

.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 1.5rem; 
  margin-top: 2rem; 
}

.service-card { 
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius); 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
                    linear-gradient(135deg, #12a393, #31c7b5, #0d7b6e, #12a393);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 100% 100%, 300% 300%;
  animation: borderGlow 12s linear infinite;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(13,123,110,0.15);
}

.card { background: rgba(255,255,255,0.92); border: 2px solid transparent; border-radius: var(--radius); overflow: clip; display: flex; flex-direction: column; background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), linear-gradient(135deg, #12a393, #31c7b5, #0d7b6e, #12a393); background-origin: border-box; background-clip: padding-box, border-box; background-size: 100% 100%, 300% 300%; animation: borderGlow 12s linear infinite; }

@keyframes borderGlow {
  0% { background-position: 0% 50%, 0% 50%; }
  50% { background-position: 0% 50%, 100% 50%; }
  100% { background-position: 0% 50%, 0% 50%; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Header on scroll */
.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  backdrop-filter: saturate(140%) blur(6px);
}

/* Fancy scrollbar */
* { scrollbar-width: thin; scrollbar-color: #0d7b6e #e9f5f3; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e9f5f3; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #14b8a6, #0d7b6e); border-radius: 999px; border: 2px solid #e9f5f3; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
.card-media img { width: 100%; height: auto; display: block; }
.card-body { padding: 1.25rem; display: grid; gap: .75rem; }
.card h3, .service-card h3 { margin: .25rem 0; font-size: 1.2rem; color: var(--ink); }
.service-card .card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.service-card p { color: #5a6c69; line-height: 1.5; margin: 0; flex-grow: 1; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 1rem; padding-left: 1rem; }

/* Coverage Areas */
.coverage-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.coverage-text {
  flex: 1;
}

.coverage-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Capacities Section */
.capacities-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.capacities-text {
  flex: 1;
}

.capacities-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Process Section */
.process-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.process-text {
  flex: 1;
}

.process-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.about-text {
  flex: 1;
}

.about-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Overview Section */
.overview-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.overview-text {
  flex: 1;
}

.overview-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Specialized Services */
.specialized-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.specialized-service {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialized-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.specialized-service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.specialized-service h3 {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.specialized-service p {
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; }
.area-tags li { background: #e8f5f3; color: #0c4a43; padding: .4rem .6rem; border-radius: 999px; border: 1px solid #cdeadb; }

.contact-info { display: flex; justify-content: center; }
address { font-style: normal; border: 1px solid #e6eeec; border-radius: var(--radius); padding: 1rem; background: #fff; }
.quote-form { border: 1px solid rgba(13,123,110,0.12); border-radius: var(--radius); padding: 1rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.contact-meta { margin-bottom: 1rem; }
.field { display: grid; gap: .25rem; margin-bottom: .75rem; }
input, select, textarea { width: 100%; padding: .6rem .7rem; border: 1px solid #d8e6e3; border-radius: .6rem; font: inherit; }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--ring); border-color: var(--brand); }
.form-hint { color: #335a56; font-size: .95rem; }

.site-footer { border-top: 1px solid #e6eeec; padding: 2rem 0 1rem; background: #f8fffe; }

.footer-content { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2rem; 
  margin-bottom: 1.5rem;
}

.footer-info h3 { 
  margin: 0 0 0.5rem; 
  color: var(--brand); 
  font-size: 1.2rem;
}

.footer-info p { 
  margin: 0 0 1rem; 
  color: #5a6c69; 
  font-size: 0.95rem;
}

.footer-contact { 
  margin-bottom: 1rem; 
}

.footer-contact p { 
  margin: 0.25rem 0; 
}

.footer-contact a { 
  color: var(--brand); 
  text-decoration: none; 
  font-weight: 500;
}

.footer-contact a:hover { 
  text-decoration: underline; 
}

.footer-nav { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap;
}

.footer-nav a { 
  color: var(--brand); 
  text-decoration: none; 
  font-size: 0.95rem;
}

.footer-nav a:hover { 
  text-decoration: underline; 
}

.footer-map h4 { 
  margin: 0 0 0.75rem; 
  color: var(--ink); 
  font-size: 1.1rem;
}

.map-container { 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-bottom { 
  border-top: 1px solid #e6eeec; 
  padding-top: 1rem; 
  text-align: center; 
  color: #5a6c69; 
  font-size: 0.9rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social {
  display: inline-flex;
  gap: .6rem;
}

.footer-social a {
  color: #0d7b6e;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f6f3;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.footer-social a:hover { 
  transform: translateY(-2px);
  background: #d9f0ec;
}

@media (max-width: 640px) {
  .footer-bottom { text-align: left; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .footer-content { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  
  .footer-map iframe {
    height: 180px;
  }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .grid.cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .header-inner { 
    justify-content: space-between; 
    position: relative;
  }
  .header-cta { display: inline-flex; }
  .site-nav { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e6eeec;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    width: 100%;
  }
  .site-nav.is-open { display: block; }
  .mobile-menu-toggle { display: flex; }
  .grid.cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .benefits { grid-template-columns: 1fr; }
  
  .logo img { max-height: 50px; }
  
  /* Mobile Menu Active State */
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Mobile Menu Styles */
  .site-nav {
    padding: 1rem;
    width: 100%;
    left: 0;
    right: 0;
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .site-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--ink);
    background: transparent;
  }
  
  .site-nav .btn {
    margin-top: 0.5rem;
    text-align: center;
  }
  
  /* Mobile Image Layouts */
  .coverage-content,
  .capacities-content,
  .process-content,
  .about-content,
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .specialized-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
    .specialized-service img {
    height: 180px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 640px) {
  /* Hero Banner Mobile */
  .hero-banner { min-height: 400px; }
  .hero-content { padding: 2rem 0; }
  .hero h1 { font-size: clamp(2rem, 6vw, 2.5rem); margin-bottom: 1rem; }
  .hero .lead { font-size: 1.1rem; margin-bottom: 1.5rem; }
  .cta-row { flex-direction: column; align-items: center; gap: 0.5rem; }
  .btn--lg { width: 100%; max-width: 280px; }

  /* Testimonials Mobile */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonials-header { margin-bottom: 2rem; }
  .testimonial-text::before { left: -8px; top: -3px; font-size: 1.8rem; }
  .author-avatar { width: 45px; height: 45px; }
  .avatar-initial { font-size: 1.1rem; }
}


/* Floating Action Buttons */
.floating-buttons {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  pointer-events: auto !important;
  /* Force positioning */
  right: auto !important;
  top: auto !important;
}

.call-float, .whatsapp-float {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

.call-float {
  background: #007bff !important;
}

.call-float:hover {
  background: #0056b3 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

.whatsapp-float {
  background: #25d366 !important;
}

.whatsapp-float:hover {
  background: #128c7e !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 640px) {
  .floating-buttons {
    display: none !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .floating-buttons {
    bottom: 70px !important;
    left: 10px !important;
    right: auto !important;
    top: auto !important;
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .call-float, .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    /* Ensure buttons are visible */
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }
  
  .call-float svg, .whatsapp-float svg {
    width: 20px !important;
    height: 20px !important;
  }
}
@media (max-width: 768px) {
  .footer-content { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  
  .footer-map iframe {
    height: 180px;
  }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .grid.cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .header-inner { 
    justify-content: space-between; 
    position: relative;
  }
  .header-cta { display: inline-flex; }
  .site-nav { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e6eeec;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    width: 100%;
  }
  .site-nav.is-open { display: block; }
  .mobile-menu-toggle { display: flex; }
  .grid.cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .benefits { grid-template-columns: 1fr; }
  
  .logo img { max-height: 50px; }
  
  /* Mobile Menu Active State */
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Mobile Menu Styles */
  .site-nav {
    padding: 1rem;
    width: 100%;
    left: 0;
    right: 0;
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .site-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--ink);
    background: transparent;
  }
  
  .site-nav .btn {
    margin-top: 0.5rem;
    text-align: center;
  }
  
  /* Mobile Image Layouts */
  .coverage-content,
  .capacities-content,
  .process-content,
  .about-content,
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .specialized-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
    .specialized-service img {
    height: 180px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 640px) {
  /* Hero Banner Mobile */
  .hero-banner { min-height: 400px; }
  .hero-content { padding: 2rem 0; }
  .hero h1 { font-size: clamp(2rem, 6vw, 2.5rem); margin-bottom: 1rem; }
  .hero .lead { font-size: 1.1rem; margin-bottom: 1.5rem; }
  .cta-row { flex-direction: column; align-items: center; gap: 0.5rem; }
  .btn--lg { width: 100%; max-width: 280px; }

  /* Testimonials Mobile */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonials-header { margin-bottom: 2rem; }
  .testimonial-text::before { left: -8px; top: -3px; font-size: 1.8rem; }
  .author-avatar { width: 45px; height: 45px; }
  .avatar-initial { font-size: 1.1rem; }
}


/* Floating Action Buttons */
.floating-buttons {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  pointer-events: auto !important;
  /* Force positioning */
  right: auto !important;
  top: auto !important;
}

.call-float, .whatsapp-float {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

.call-float {
  background: #007bff !important;
}

.call-float:hover {
  background: #0056b3 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

.whatsapp-float {
  background: #25d366 !important;
}

.whatsapp-float:hover {
  background: #128c7e !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 640px) {
  .floating-buttons {
    display: none !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .floating-buttons {
    bottom: 70px !important;
    left: 10px !important;
    right: auto !important;
    top: auto !important;
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .call-float, .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    /* Ensure buttons are visible */
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }
  
  .call-float svg, .whatsapp-float svg {
    width: 20px !important;
    height: 20px !important;
  }
}