/* ═══════════════════════════════════════════════════════════════════════════
   SALINAS CLEANING SOLUTIONS — Design System (Blue/Orange Theme)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Color Palette - Azul Oscuro & Celeste */
  --primary: #00a8e8;
  --primary-hover: #0090c8;
  --primary-light: rgba(0, 168, 232, 0.15);
  --secondary: #0d1b2a;
  --secondary-dark: #080f18;
  --secondary-light: #1b3a5a;
  
  /* Accent Colors */
  --accent-green: #00d4aa;
  --green-whatsapp: #25d366;
  --white: #ffffff;
  --black: #000000;
  
  /* Text */
  --text-dark: #0d1b2a;
  --text-light: #ffffff;
  --text-muted: #8892a0;
  --text-muted-light: rgba(255, 255, 255, 0.75);
  
  /* Backgrounds */
  --bg-dark: #0d1b2a;
  --bg-darker: #060d14;
  --bg-light: #0d1b2a;
  --bg-gray: #131f30;
  --bg-card: rgba(255, 255, 255, 0.05);
  
  /* Borders & Effects */
  --border-light: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
  --glow: 0 0 30px rgba(0, 168, 232, 0.3);
  
  /* Layout */
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1400px;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE & RESET
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

/* Improve touch targets */
@media (hover: none) and (pointer: coarse) {
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.muted { color: var(--text-muted); }
.tiny { font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--secondary-dark);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 80px;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: transparent;
  margin-left: -16px;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 80px;
}

/* Logo responsive sizes */
@media (min-width: 1200px) {
  .brand-logo {
    height: 70px;
  }
  .footer-logo {
    height: 90px;
  }
}

@media (max-width: 900px) {
  .brand-logo {
    height: 50px;
  }
  .footer-logo {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 45px;
  }
  .footer-logo {
    height: 60px;
  }
}

.brand-icon {
  font-size: 32px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 28px 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--secondary-light);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--secondary-dark);
  border: 1px solid var(--border-light);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted-light);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.dropdown-menu a:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.dropdown-menu a:hover {
  background: var(--bg-card);
  color: var(--primary);
  padding-left: 28px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-right: -16px;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.btn-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 168, 232, 0.4);
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
}

.btn-phone:hover {
  background: var(--primary);
  color: var(--white);
}

.phone-icon {
  font-size: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 80px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.95) 0%,
    rgba(13, 27, 42, 0.8) 50%,
    rgba(0, 168, 232, 0.2) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted-light);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.text-highlight {
  color: var(--accent-green);
}

.hero-copy .lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted-light);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: var(--green-whatsapp);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.btn-cta-large:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Quote Card */
.hero-card {
  position: relative;
}

.quote-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 168, 232, 0.3);
}

.quote-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.quote-card label {
  color: var(--text-dark);
}

.quote-card .checkbox-label span {
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════════ */

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.checkbox-field {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.link-orange {
  color: var(--primary);
  text-decoration: underline;
}

.link-orange:hover {
  color: var(--primary-hover);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-whatsapp-form {
  width: 100%;
  padding: 16px;
  background: var(--green-whatsapp);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-whatsapp-form:hover {
  background: #1da851;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS GENERAL
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary);
  color: var(--white);
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--secondary);
}

.btn-small {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.trust {
  padding: 40px 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  color: var(--white);
}

.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--text-muted-light);
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service.card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.service.card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.service.card h3 {
  color: var(--primary);
}

.list {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--text-muted-light);
  font-size: 15px;
}

.list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE AREAS / PILLS
   ═══════════════════════════════════════════════════════════════════════════ */

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.pill {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--glow);
}

.note {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
}

.note h3 {
  color: var(--primary);
  margin-bottom: 4px;
}

.note p {
  color: var(--text-muted-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════════════════════ */

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 232, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* Show overlay on mobile always */
@media (max-width: 768px) {
  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.95) 100%);
  }
  
  .portfolio-overlay h4 {
    font-size: 16px;
  }
  
  .portfolio-overlay p {
    font-size: 13px;
  }
}

.portfolio-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
  text-transform: uppercase;
}

.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-overlay p {
  color: var(--text-muted-light);
  font-size: 14px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════════════════ */

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.rating-stars {
  color: var(--primary);
  font-size: 28px;
  letter-spacing: 4px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.rating-count {
  color: var(--text-muted);
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.reviewer-location {
  font-size: 13px;
  color: var(--text-muted);
}

.review-badge {
  margin-left: auto;
  padding: 6px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
}

.review-stars {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.review-service {
  padding: 6px 12px;
  background: var(--bg-darker);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted-light);
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-photos {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.review-photos img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-photos img:hover {
  border-color: var(--primary);
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.divider {
  height: 1px;
  background: var(--border-dark);
  margin: 20px 0;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

details.card {
  cursor: pointer;
  border: 1px solid var(--border-light);
}

details.card:hover {
  border-color: var(--primary);
}

details summary {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

details summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--secondary-dark);
  color: var(--white);
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-light);
}

.footer-grid-full {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand-section .brand {
  margin-bottom: 16px;
  background: transparent;
  padding: 0;
  margin-left: 0;
}

.footer-brand-section p {
  color: var(--text-muted-light);
  max-width: 280px;
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-green);
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  color: var(--text-muted-light);
  font-size: 14px;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-nav p {
  font-size: 14px;
  color: var(--text-muted-light);
  margin: 8px 0;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GOOGLE REVIEWS BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   ELFSIGHT REVIEWS WIDGET
   ═══════════════════════════════════════════════════════════════════════════ */

.elfsight-reviews-container {
  width: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Override Elfsight styles to match site theme */
.elfsight-app-c42cbebc-862d-4c75-9f35-c5c7e0e4a4af {
  width: 100% !important;
}

.google-reviews-banner {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.google-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.google-banner-icon {
  flex-shrink: 0;
}

.google-banner-text {
  text-align: left;
}

.google-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 4px;
}

.google-banner-text p {
  color: #5f6368;
  font-size: 14px;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #4285f4;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
  transition: all 0.3s ease;
}

.google-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.4);
}

@media (max-width: 768px) {
  .google-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .google-banner-text {
    text-align: center;
  }
  
  .google-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-muted-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Instagram hover */
.social-link:first-child:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
}

/* TikTok hover */
.social-link:nth-child(2):hover {
  background: #000;
  border-color: #25f4ee;
  color: var(--white);
  box-shadow: 0 0 15px rgba(37, 244, 238, 0.4), 0 0 15px rgba(254, 44, 85, 0.4);
}

/* Google hover */
.social-link-google:hover {
  background: var(--white);
  border-color: #4285f4;
  color: #4285f4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .nav-link {
    padding: 28px 14px;
    font-size: 13px;
  }
  
  .btn-cta, .btn-phone {
    padding: 12px 16px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-copy {
    text-align: center;
  }
  
  .hero-copy .lead {
    max-width: none;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .grid.cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quote-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section {
    padding: 70px 0;
  }
  
  .trust-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .nav, .header-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .header-inner {
    min-height: 70px;
  }
  
  .nav.open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 80px;
    background: var(--secondary);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav.open .nav-link {
    padding: 18px 16px;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }
  
  .nav.open .nav-dropdown {
    width: 100%;
  }
  
  .nav.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: var(--secondary-dark);
    border-radius: 0;
    border: none;
  }
  
  .nav.open .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .nav.open .dropdown-menu a {
    color: var(--text-muted-light);
    border-bottom-color: var(--border-light);
    padding: 14px 32px;
    font-size: 14px;
  }
  
  .nav.open .dropdown-menu a:hover {
    background: var(--secondary-light);
    color: var(--primary);
  }
  
  .brand {
    margin-left: 0;
    padding: 8px 12px;
  }
  
  .brand-name {
    font-size: 16px;
  }
  
  .header-inner {
    padding: 0 8px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
    min-height: auto;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .grid.cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .portfolio-image {
    aspect-ratio: 16/10;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .two {
    grid-template-columns: 1fr;
  }
  
  .note {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
  
  .note .btn {
    width: 100%;
  }
  
  .footer-grid-full {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .footer-brand-section .brand {
    justify-content: center;
  }
  
  .footer-brand-section p {
    max-width: none;
  }
  
  .rating-summary {
    flex-direction: column;
    gap: 8px;
  }
  
  .pill-grid {
    gap: 10px;
  }
  
  .portfolio-filter,
  .reviews-filter {
    gap: 8px;
    margin-bottom: 32px;
  }
  
  .section-head {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--max-width));
  }
  
  .hero-copy h1 {
    font-size: 26px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-copy .lead {
    font-size: 15px;
  }
  
  .quote-card {
    padding: 20px;
  }
  
  .quote-card h3 {
    font-size: 20px;
  }
  
  .btn-cta-large {
    padding: 16px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  
  .section-head h2 {
    font-size: 24px;
  }
  
  .section-head p {
    font-size: 15px;
  }
  
  .card {
    padding: 20px;
  }
  
  .service.card h3 {
    font-size: 18px;
  }
  
  .pill {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-text {
    font-size: 14px;
  }
  
  .review-photos img {
    width: 60px;
    height: 45px;
  }
  
  .faq details summary {
    font-size: 15px;
  }
  
  .footer-grid-full {
    gap: 32px;
  }
  
  .footer-nav h4 {
    font-size: 14px;
  }
  
  .whatsapp-float {
    bottom: 100px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  
  .trust-item h4 {
    font-size: 18px;
  }
  
  .trust-item p {
    font-size: 14px;
  }
  
  .page-hero {
    padding: 60px 0 40px;
  }
  
  .page-tag {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .contact-icon {
    font-size: 32px;
  }
  
  .contact-value {
    font-size: 16px;
  }
  
  .rating-summary-large {
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
  }
  
  .rating-stars-large {
    font-size: 24px;
  }
  
  .rating-score-large {
    font-size: 32px;
    text-align: center;
  }
  
  .rating-count-large {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 22px;
  }
  
  .brand-icon {
    font-size: 24px;
  }
  
  .brand-name {
    font-size: 14px;
  }
  
  .mobile-action-bar a {
    font-size: 12px;
    padding: 12px 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (for subpages)
   ═══════════════════════════════════════════════════════════════════════════ */

.page-hero {
  padding: 80px 0 60px;
  background: var(--bg-darker);
  text-align: center;
  color: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: var(--glow);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.page-hero .lead {
  font-size: 18px;
  color: var(--text-muted-light);
}

/* Active nav state */
.nav-link.active {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES DETAILED (services page)
   ═══════════════════════════════════════════════════════════════════════════ */

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.service-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent-green));
  border-radius: var(--radius-lg);
  font-size: 48px;
  box-shadow: var(--glow);
}

.service-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.option-tag {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-light);
}

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-icon {
    margin: 0 auto;
  }
  
  .service-options {
    justify-content: center;
  }
  
  .service-content .btn {
    width: 100%;
  }
  
  .service-content .list {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-item:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  text-align: center;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-green);
  margin: 8px 0;
}

.hours-list {
  margin-top: 12px;
  text-align: left;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-section {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-light) 100%);
  color: var(--white);
  border-top: 1px solid var(--border-light);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-content p {
  color: var(--text-muted-light);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO GRID LARGE
   ═══════════════════════════════════════════════════════════════════════════ */

.portfolio-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .portfolio-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .portfolio-grid-large {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════════════════ */

.rating-summary-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.rating-stars-large {
  color: var(--primary);
  font-size: 32px;
  letter-spacing: 4px;
}

.rating-info {
  text-align: left;
}

.rating-score-large {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.rating-count-large {
  font-size: 14px;
  color: var(--text-muted-light);
}

.reviews-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.reviews-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .reviews-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid-full {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  background: transparent;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid.cards .card:nth-child(1) { transition-delay: 0s; }
.grid.cards .card:nth-child(2) { transition-delay: 0.1s; }
.grid.cards .card:nth-child(3) { transition-delay: 0.2s; }
.grid.cards .card:nth-child(4) { transition-delay: 0.3s; }
.grid.cards .card:nth-child(5) { transition-delay: 0.4s; }
.grid.cards .card:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE FIXED ACTION BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-dark);
  border-top: 1px solid var(--border-light);
  padding: 12px 16px;
  z-index: 1000;
  gap: 12px;
}

.mobile-action-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-action-bar .btn-call {
  background: var(--primary);
  color: var(--white);
}

.mobile-action-bar .btn-whatsapp {
  background: var(--green-whatsapp);
  color: var(--white);
}

@media (max-width: 900px) {
  .mobile-action-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .whatsapp-float {
    bottom: 90px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM SUCCESS/ERROR MESSAGES
   ═══════════════════════════════════════════════════════════════════════════ */

.form-message {
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  animation: slideDown 0.4s ease;
  transition: opacity 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 168, 232, 0.15));
  border: 1px solid var(--accent-green);
}

.form-error {
  background: rgba(255, 77, 77, 0.15);
  border: 1px solid #ff4d4d;
}

.form-message .message-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.form-message .message-icon {
  font-size: 32px;
  line-height: 1;
}

.form-message strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}

.form-success strong {
  color: var(--accent-green);
}

.form-error strong {
  color: #ff4d4d;
}

.form-message p {
  font-size: 14px;
  color: var(--text-muted-light);
  margin: 0;
  line-height: 1.5;
}

.form-message .message-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-message .msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.form-message .msg-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.form-message .msg-btn-whatsapp {
  background: var(--green-whatsapp);
}

.form-message .msg-btn-whatsapp:hover {
  background: #20bd5a;
}

@media (max-width: 480px) {
  .form-message .message-actions {
    flex-direction: column;
  }
  
  .form-message .msg-btn {
    justify-content: center;
  }
}