/* =====================================================
   Dream Team Solutions — style.css
   Brand: Red #df281f | Blue #083897 | Black #202228 | White #ffffff
   Stack: Tailwind + Vanilla CSS (animations, custom components)
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --brand-red:   #df281f;
  --brand-blue:  #083897;
  --brand-black: #202228;
  --brand-white: #ffffff;
  --font-heading: 'Montserrat', 'Lexend', sans-serif;
  --font-display: 'Archivo Black', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --transition-fast:   150ms ease-out;
  --transition-normal: 250ms ease-out;
  --transition-slow:   350ms ease-out;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--brand-black); background: #fff; line-height: 1.6; }
img { display: block; max-width: 100%; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-inner {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  transition: all var(--transition-normal);
}

/*#navbar.scrolled .navbar-inner {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
#navbar.transparent .navbar-inner {
  background: rgba(8,56,151,0.10);
  border-bottom-color: rgba(255,255,255,0.10);
}*/

/* Nav links */
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--brand-black);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
  border-radius: 2px;
}
.nav-link:hover { color: var(--brand-red); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--brand-red); }
.nav-link.active::after { transform: scaleX(1); }
.nav-link:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 4px; border-radius: 2px; }

/* Mobile nav */
.mobile-menu-panel {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--brand-black);
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}
.mobile-nav-link:hover { background: #f3f4f6; color: var(--brand-red); }
.mobile-nav-link:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(223,40,31,0.3);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #c42018;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(223,40,31,0.4);
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary:focus-visible { outline: 3px solid rgba(223,40,31,0.5); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  border: 2px solid var(--brand-blue);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--brand-blue); color: #fff; transform: translateY(-1px); }
.btn-outline:focus-visible { outline: 3px solid rgba(8,56,151,0.4); outline-offset: 3px; }

.hero-h1-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 24px rgba(223,40,31,0.4);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: #c42018;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(223,40,31,0.5);
}
.btn-hero-primary:active { transform: scale(0.97); }
.btn-hero-primary:focus-visible { outline: 3px solid rgba(255,255,255,0.7); outline-offset: 3px; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-hero-secondary:focus-visible { outline: 3px solid rgba(255,255,255,0.7); outline-offset: 3px; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 3px 12px rgba(223,40,31,0.25);
}
.btn-service:hover { background: #c42018; transform: translateY(-1px); }
.btn-service:focus-visible { outline: 3px solid rgba(223,40,31,0.4); outline-offset: 3px; }

.btn-service-blue { background: var(--brand-blue); box-shadow: 0 3px 12px rgba(8,56,151,0.25); }
.btn-service-blue:hover { background: #062d7a; }
.btn-service-blue:focus-visible { outline: 3px solid rgba(8,56,151,0.4); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section { background: var(--brand-blue); }

.hero-bg {
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(223,40,31,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 70%),
    linear-gradient(135deg, #083897 0%, #062d7a 40%, #041f55 100%);
}
.hero-overlay {
  background: linear-gradient(to bottom, rgba(8,56,151,0) 0%, rgba(8,56,151,0.35) 100%);
}

.hero-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffae00 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: sparkle-float 4s ease-in-out infinite;
  pointer-events: none;
}
.sparkle-1 { top: 15%; left: 8%;  animation-delay: 0s;    width: 6px;  height: 6px;  }
.sparkle-2 { top: 30%; right: 12%; animation-delay: 1.2s; width: 10px; height: 10px; }
.sparkle-3 { bottom: 25%; left: 15%; animation-delay: 2.1s; width: 5px; height: 5px; }
.sparkle-4 { top: 60%; right: 5%;  animation-delay: 0.7s; width: 8px; height: 8px; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50%       { transform: translateY(-16px) scale(1.4); opacity: 1; }
}

/* Trust badges */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Hero logo glow */
.hero-logo-wrapper { display: flex; align-items: center; justify-content: center; }
.hero-logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.1); opacity: 1; }
}

/* Hero Logo Card container for high contrast */
.hero-logo-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.hero-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.3);
}

/* Floating animation for logo */
.floating-animation {
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Scroll indicator */
.scroll-indicator { display: flex; flex-direction: column; align-items: center; }
.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--brand-black);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(223,40,31,0.08) 0%, rgba(8,56,151,0.06) 100%);
}
.stat-item { position: relative; z-index: 1; }
.stat-number { font-family: var(--font-heading); font-weight: 800; line-height: 1; }
.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =====================================================
   SECTION TAGS & HEADINGS
   ===================================================== */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  background: rgba(223,40,31,0.08);
  border: 1px solid rgba(223,40,31,0.2);
  border-radius: 50px;
  padding: 0.3rem 1rem;
}
.section-tag-white {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.3rem 1rem;
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card-image { position: relative; overflow: hidden; }
.service-card-image img { transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  color: #fff;
}
.residential-badge { background: var(--brand-red); }
.commercial-badge  { background: var(--brand-blue); }

.service-card-body { padding: 1.75rem; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.residential-icon { background: rgba(223,40,31,0.08); color: var(--brand-red); }
.commercial-icon  { background: rgba(8,56,151,0.08); color: var(--brand-blue); }

.service-list { list-style: none; padding: 0; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.45rem 0;
  color: #4b5563;
  font-size: 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  flex-shrink: 0;
}

/* Extended Service Cards */
.extended-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 0.875rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  cursor: default;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--brand-black);
}
.extended-service-card:hover {
  border-color: var(--brand-red);
  background: rgba(223,40,31,0.03);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223,40,31,0.1);
}
.extended-icon {
  width: 52px;
  height: 52px;
  background: rgba(8,56,151,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.extended-service-card:hover .extended-icon {
  background: var(--brand-red);
  color: #fff;
}

/* =====================================================
   BEFORE & AFTER GALLERY
   ===================================================== */
.before-after-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.before-after-image-wrapper { position: relative; overflow: hidden; }
.before-after-image-wrapper img { transition: transform 0.5s ease; }
.before-after-card:hover .before-after-image-wrapper img { transform: scale(1.04); }

.before-after-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.ba-labels {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ba-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
}
.before-label { background: rgba(0,0,0,0.5); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.after-label  { background: var(--brand-red); color: #fff; }

.before-after-caption { padding: 1rem 1.25rem; }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-image-grid {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 0;
}
.about-img-main { overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-side {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(8,56,151,0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-badge {
  text-align: center;
  padding: 0.75rem;
}

/* Why Us */
.why-us-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-us-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(223,40,31,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.stars { display: flex; gap: 2px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f3f4f6;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.avatar-blue  { background: var(--brand-blue); }
.avatar-black { background: var(--brand-black); }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.contact-info-card:not(.no-hover):hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.25);
}
.contact-info-card:focus-visible { outline: 2px solid rgba(255,255,255,0.7); outline-offset: 3px; border-radius: 14px; }
.no-hover { cursor: default; }

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.red-icon       { background: var(--brand-red); color: #fff; }
.instagram-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.google-icon    { background: #fff; color: var(--brand-blue); }
.blue-icon      { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

/* Quote Form */
.quote-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brand-black);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brand-black);
  background: #fafafa;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}
.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8,56,151,0.12);
}
.form-input.error-state { border-color: var(--brand-red); }
.form-input.error-state:focus { box-shadow: 0 0 0 3px rgba(223,40,31,0.12); }

.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

.form-error-msg {
  font-size: 0.78rem;
  color: var(--brand-red);
  min-height: 1rem;
  font-family: var(--font-body);
}

/* Form messages */
.form-message {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-message.success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-message.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.form-message.hidden  { display: none; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
}
.footer-link:hover { color: #fff; }
.footer-link:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; border-radius: 2px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.social-icon:hover { background: var(--brand-red); color: #fff; transform: translateY(-2px); }
.social-icon:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }

/* =====================================================
   FLOATING CALL BUTTON
   ===================================================== */
.floating-call-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(223,40,31,0.5);
  text-decoration: none;
  transition: all var(--transition-fast);
  animation: pulse-ring 2.5s ease-out infinite;
}
.floating-call-btn:hover {
  background: #c42018;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(223,40,31,0.6);
}
.floating-call-btn:focus-visible {
  outline: 3px solid rgba(223,40,31,0.6);
  outline-offset: 3px;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(223,40,31,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(223,40,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(223,40,31,0); }
}

/* Hide on desktop (redundant with header CTA) */
@media (min-width: 768px) {
  .floating-call-btn { display: none; }
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-left {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}
.animate-fade-left {
  animation: fade-left 0.7s ease-out both;
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .floating-animation { animation: none; }
}

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */
@media (max-width: 768px) {
  .about-image-grid {
    height: 320px;
  }
  .hero-logo-wrapper img {
    width: 220px !important;
  }
}

/* Focus ring improvements for keyboard nav */
:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline-color: var(--brand-red);
}
