/* Asri Repair — single-page styles */

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #1a2332;
  --text-muted: #5c6b7f;
  --brand: #0d4f8c;
  --brand-dark: #083a68;
  --accent: #e85d04;
  --accent-hover: #c54f03;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13, 79, 140, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 79, 140, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 72px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.footer-brand .logo-mark {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-text {
  line-height: 1.2;
}

.logo-accent {
  color: var(--brand);
}

.logo:hover {
  text-decoration: none;
}

.logo:hover .logo-accent {
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-hover);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .site-header.is-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
  }
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
  background: linear-gradient(135deg, #f4f6f8 0%, #ffffff 50%, #f8f9fa 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(13, 79, 140, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 93, 4, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 79, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-hero 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-hero 25s ease-in-out infinite reverse;
}

@keyframes float-hero {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-ghost:hover {
  background: rgba(13, 79, 140, 0.08);
  text-decoration: none;
}

.btn-light {
  background: #fff;
  color: var(--brand);
  flex-shrink: 0;
}

.btn-light:hover {
  background: #f0f4f8;
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust li {
  position: relative;
  padding-left: 1.25rem;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}

.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 
    0 20px 40px rgba(13, 79, 140, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 25px 50px rgba(13, 79, 140, 0.15),
    0 15px 25px rgba(0, 0, 0, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  padding-left: 0.5rem;
  background: linear-gradient(90deg, rgba(13, 79, 140, 0.03) 0%, transparent 100%);
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 2px;
  transition: height 0.3s ease;
}

.hero-stat:hover::before {
  height: 60%;
}

.hero-stat:last-of-type {
  border-bottom: none;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: transform 0.3s ease;
}

.hero-stat:hover strong {
  transform: scale(1.05);
}

.hero-stat span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-photo {
  margin: 0;
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, rgba(13, 79, 140, 0.1), rgba(232, 93, 4, 0.1));
  border-radius: var(--radius);
  z-index: -1;
}

.hero-photo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 
    0 20px 40px rgba(13, 79, 140, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  background: var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-photo:hover .hero-photo-img {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(13, 79, 140, 0.2),
    0 15px 25px rgba(0, 0, 0, 0.15);
}

.hero-photo-caption {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Sections */

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

/* Services */

.services {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(13, 79, 140, 0.2);
}

.service-image {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1rem -1.75rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  position: relative;
  background: var(--border);
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--brand);
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.service-card > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-list {
  margin: 0 0 1.5rem 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.9rem;
  list-style: none;
}

.service-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.service-card .btn {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

/* CTA band */

.cta-band {
  background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  padding: 2.5rem 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
  max-width: 42ch;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.gallery-item {
  margin: 0;
}

.gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--border);
}

.gallery-item:nth-child(2) .gallery-img {
  filter: hue-rotate(-14deg) saturate(1.06);
}

.gallery-item:nth-child(3) .gallery-img {
  filter: hue-rotate(18deg) saturate(1.05);
}

.gallery-item:nth-child(4) .gallery-img {
  filter: hue-rotate(-22deg) saturate(0.98);
}

.gallery-item:nth-child(5) .gallery-img {
  filter: hue-rotate(8deg) saturate(1.12);
}

.gallery-item:nth-child(6) .gallery-img {
  filter: hue-rotate(-8deg) saturate(1.02);
}

.gallery-item figcaption {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Testimonials */

.testimonials {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.testimonial-card .quote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.55;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stars {
  color: #f4b942;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Contact */

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 1rem;
}

.contact-photo {
  margin: 0 0 1.25rem;
}

.contact-photo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--border);
}

.contact-photo-caption {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.contact-intro > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-details a {
  font-weight: 500;
}

.contact-form {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row.two {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: block;
  margin-bottom: 1.15rem;
}

.label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-color: var(--brand);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.error {
  display: block;
  min-height: 1.25rem;
  font-size: 0.8rem;
  color: #c41e3a;
  margin-top: 0.25rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c41e3a;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-success {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  color: #1b5e20;
  font-weight: 500;
}

/* Footer */

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: minmax(200px, 1fr) minmax(260px, 1.5fr) auto;
    text-align: left;
    align-items: start;
  }
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand .logo-accent {
  color: #7eb8ea;
}

.footer-brand .logo:hover .logo-accent {
  color: #a8d4ff;
}

.footer-company-name {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.footer-tagline {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  max-width: 280px;
  margin-inline: auto;
  opacity: 0.88;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .footer-tagline {
    margin-inline: 0;
  }
}

.footer-info {
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-address {
  font-style: normal;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.footer-details {
  margin: 0;
}

.footer-details dt {
  font-weight: 600;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-details dt:first-child {
  margin-top: 0;
}

.footer-details dd {
  margin: 0.25rem 0 0;
}

.footer-details a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  word-break: break-word;
}

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

.contact-detail-sep {
  opacity: 0.55;
  font-weight: 400;
}

.contact-address {
  display: inline-block;
  max-width: 22rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 600px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
}

@media (min-width: 900px) {
  .footer-copy {
    text-align: left;
  }
}

/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.whatsapp-float:hover {
  width: 180px;
  background: #20BA5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

.whatsapp-text {
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float:hover {
    width: 56px;
  }
  
  .whatsapp-text {
    display: none;
  }
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  animation: none;
}
