/* GSutton Plumbing - Modern Premium Theme
   Clean, professional, conversion-focused design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --gsp-accent: #0ea5a4;
  --gsp-accent-dark: #0b7f7f;
  --gsp-accent-light: #14d4d4;
  --gsp-ink: #0f172a;
  --gsp-ink-light: #334155;
  --gsp-warm: #f97316;
  --gsp-warm-dark: #ea580c;
  --gsp-gradient: linear-gradient(135deg, #0ea5a4 0%, #0b7f7f 100%);
  --gsp-gradient-warm: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gsp-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --gsp-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.1);
  --gsp-shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
  --gsp-shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  --gsp-radius: 1rem;
  --gsp-radius-lg: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gsp-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   TOP BAR
   ============================================ */

.gsp-topbar {
  font-size: 0.875rem;
  background: linear-gradient(90deg, var(--gsp-ink) 0%, #1e293b 100%);
  color: #fff;
}

.gsp-topbar a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.gsp-topbar a:hover {
  color: var(--gsp-accent-light);
}

.gsp-topbar .fw-semibold {
  color: #fff;
}

.gsp-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(14, 165, 164, 0.2);
  border: 1px solid rgba(14, 165, 164, 0.3);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gsp-accent-light);
}

/* ============================================
   NAVIGATION
   ============================================ */

.gsp-brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  background: var(--gsp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95) !important;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--gsp-shadow);
}

.nav-link {
  font-weight: 500;
  color: var(--gsp-ink-light) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gsp-accent) !important;
  background: rgba(14, 165, 164, 0.08);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  transition: all 0.3s ease;
}

.btn-gsp {
  background: var(--gsp-gradient);
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 165, 164, 0.35);
}

.btn-gsp:hover {
  background: linear-gradient(135deg, var(--gsp-accent-dark) 0%, #096666 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 164, 0.45);
}

.btn-gsp:active {
  transform: translateY(0);
}

.btn-warm {
  background: var(--gsp-gradient-warm);
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-warm:hover {
  background: linear-gradient(135deg, var(--gsp-warm-dark) 0%, #c2410c 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-outline-dark {
  border-width: 2px;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
}

.btn-outline-light {
  border-width: 2px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* ============================================
   HERO SECTION - SPLIT DESIGN
   ============================================ */

.gsp-hero-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0b1324 0%, #1a2744 50%, #0b1324 100%);
}

.gsp-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(14, 165, 164, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(14, 165, 164, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gsp-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gsp-hero-images {
  position: relative;
  z-index: 1;
}

.gsp-hero-image-wrapper {
  position: relative;
  padding-bottom: 15%;
}

.gsp-hero-image {
  border-radius: var(--gsp-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.gsp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gsp-hero-image:hover img {
  transform: scale(1.05);
}

.gsp-hero-image-primary {
  position: relative;
  z-index: 2;
}

.gsp-hero-image-secondary {
  position: absolute;
  width: 55%;
  right: 0;
  bottom: -10%;
  z-index: 3;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.gsp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 164, 0.2);
  border: 1px solid rgba(14, 165, 164, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gsp-accent-light);
  margin-bottom: 1.5rem;
}

.gsp-hero-badge-icon {
  width: 8px;
  height: 8px;
  background: var(--gsp-accent-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.gsp-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gsp-hero-title-accent {
  background: linear-gradient(135deg, var(--gsp-accent-light) 0%, var(--gsp-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gsp-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 2rem;
}

.gsp-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gsp-hero-stat {
  text-align: center;
}

.gsp-hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gsp-accent-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.gsp-hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Location badges */
.gsp-location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gsp-location-pill {
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.gsp-location-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   LEGACY HERO (for other pages)
   ============================================ */

.gsp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1324 0%, #1a2744 100%);
  color: #fff;
  border-radius: var(--gsp-radius-lg);
}

.gsp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gsp-hero, none);
  background-position: center;
  background-size: cover;
  filter: saturate(1.1) contrast(1.05);
  opacity: 0.35;
  transition: transform 0.5s ease;
}

.gsp-hero:hover::before {
  transform: scale(1.03);
}

.gsp-hero > .gsp-hero-inner {
  position: relative;
  z-index: 1;
}

.gsp-hero .badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.gsp-trust-section {
  background: linear-gradient(to bottom, #f8fafc, #fff);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.gsp-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.gsp-trust-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gsp-gradient);
  border-radius: 14px;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14, 165, 164, 0.25);
}

.gsp-trust-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
  color: var(--gsp-ink);
}

.gsp-trust-content p {
  font-size: 0.875rem;
  color: var(--gsp-ink-light);
  margin-bottom: 0;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.gsp-section {
  padding: 5rem 0;
}

.gsp-section-dark {
  background: linear-gradient(135deg, #0b1324 0%, #1a2744 100%);
  color: #fff;
}

.gsp-section-light {
  background: linear-gradient(to bottom, #f8fafc, #fff);
}

.gsp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.gsp-section-subtitle {
  font-size: 1.125rem;
  color: var(--gsp-ink-light);
  max-width: 600px;
}

.gsp-section-dark .gsp-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.gsp-section-header {
  margin-bottom: 3rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.gsp-feature-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--gsp-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gsp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gsp-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gsp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gsp-shadow-xl);
  border-color: transparent;
}

.gsp-feature-card:hover::before {
  transform: scaleX(1);
}

.gsp-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.1) 0%, rgba(14, 165, 164, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.gsp-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gsp-ink);
}

.gsp-feature-text {
  color: var(--gsp-ink-light);
  margin-bottom: 0;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.gsp-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gsp-card-link .card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--gsp-radius);
  transition: all 0.3s ease;
  overflow: hidden;
}

.gsp-card-link .card::after {
  content: '→';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  color: var(--gsp-accent);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.gsp-card-link .card {
  position: relative;
}

.gsp-card-link:hover .card {
  transform: translateY(-6px);
  box-shadow: var(--gsp-shadow-lg);
  border-color: var(--gsp-accent);
}

.gsp-card-link:hover .card::after {
  opacity: 1;
  transform: translateX(0);
}

.gsp-card-link .card-body {
  padding: 1.5rem;
}

.gsp-card-link h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.gsp-card-link:hover h3 {
  color: var(--gsp-accent);
}

/* ============================================
   SHOWCASE SECTION (with tools image)
   ============================================ */

.gsp-showcase-section {
  position: relative;
  overflow: hidden;
}

.gsp-showcase-image {
  position: relative;
  border-radius: var(--gsp-radius-lg);
  overflow: hidden;
  box-shadow: var(--gsp-shadow-xl);
}

.gsp-showcase-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gsp-showcase-image:hover img {
  transform: scale(1.03);
}

.gsp-showcase-card {
  background: #fff;
  border-radius: var(--gsp-radius);
  padding: 2rem;
  box-shadow: var(--gsp-shadow-lg);
  position: relative;
}

.gsp-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gsp-gradient);
  border-radius: var(--gsp-radius) var(--gsp-radius) 0 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.gsp-cta-section {
  background: linear-gradient(135deg, #0b1324 0%, #1a2744 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.gsp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 100%, rgba(14, 165, 164, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(14, 165, 164, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.gsp-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.gsp-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.gsp-cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gsp-cta-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gsp-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--gsp-radius);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gsp-cta-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.gsp-cta-phone-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gsp-gradient);
  border-radius: 10px;
  font-size: 1.25rem;
}

.gsp-cta-phone-number {
  font-size: 1.25rem;
  font-weight: 700;
}

.gsp-cta-phone-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gsp-gallery-item {
  position: relative;
  border-radius: var(--gsp-radius);
  overflow: hidden;
  box-shadow: var(--gsp-shadow);
}

.gsp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gsp-gallery-item:hover img {
  transform: scale(1.08);
}

.gsp-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 36, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gsp-gallery-item:hover::after {
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #0b1324 !important;
  color: #fff;
  border-top: none !important;
}

footer .fw-bold {
  font-size: 1.25rem;
  background: var(--gsp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--gsp-accent-light) !important;
}

footer .small.text-secondary {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ============================================
   MOBILE CALL BAR
   ============================================ */

.gsp-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: rgba(11, 19, 36, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
}

.gsp-callbar a {
  text-decoration: none;
}

.gsp-callbar .btn-gsp {
  animation: pulse 2s infinite;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 80px;
  }
}

/* ============================================
   CERTIFICATION LOGOS SECTION
   ============================================ */

.gsp-logos-section {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.gsp-logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gsp-ink-light);
  margin-bottom: 1.5rem;
}

.gsp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.gsp-logo-item {
  flex: 0 0 auto;
}

.gsp-logo-item img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.gsp-logo-item:hover img {
  transform: scale(1.1);
}

/* Hero Certification Logos */
.gsp-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--gsp-radius);
  box-shadow: var(--gsp-shadow);
}

.gsp-hero-logos-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gsp-ink-light);
  margin-right: 0.5rem;
}

.gsp-hero-logo img {
  height: 40px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.gsp-hero-logo:hover img {
  transform: scale(1.1);
}

/* Footer Certification Logos */
.gsp-footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--gsp-radius);
}

.gsp-footer-logos-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gsp-ink-light);
  width: 100%;
  margin-bottom: 0.25rem;
}

.gsp-footer-logo img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.gsp-footer-logo:hover img {
  transform: scale(1.1);
}

@media (max-width: 767.98px) {
  .gsp-logos-grid {
    gap: 1.5rem;
  }
  
  .gsp-logo-item img {
    height: 36px;
    max-width: 90px;
  }
}

/* ============================================
   SPECIALTY CARDS (with images)
   ============================================ */

.gsp-specialty-card {
  background: #fff;
  border-radius: var(--gsp-radius-lg);
  overflow: hidden;
  box-shadow: var(--gsp-shadow-lg);
  height: 100%;
  transition: all 0.4s ease;
}

.gsp-specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gsp-shadow-xl);
}

.gsp-specialty-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.gsp-specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gsp-specialty-card:hover .gsp-specialty-image img {
  transform: scale(1.08);
}

.gsp-specialty-content {
  padding: 1.75rem;
}

.gsp-specialty-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gsp-ink);
}

.gsp-specialty-text {
  color: var(--gsp-ink-light);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.gsp-testimonials-section {
  background: linear-gradient(135deg, #0b1324 0%, #1a2744 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.gsp-testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 0%, rgba(14, 165, 164, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(14, 165, 164, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gsp-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--gsp-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.gsp-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.gsp-testimonial-featured {
  background: rgba(14, 165, 164, 0.15);
  border-color: rgba(14, 165, 164, 0.3);
}

.gsp-testimonial-featured:hover {
  background: rgba(14, 165, 164, 0.2);
  border-color: rgba(14, 165, 164, 0.4);
}

.gsp-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 1rem;
}

.gsp-testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.gsp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gsp-testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gsp-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.gsp-testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.gsp-testimonial-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.gsp-testimonial-summary {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
}

.gsp-testimonial-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gsp-accent);
}

.gsp-testimonial-summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: left;
}

.gsp-testimonial-highlight {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gsp-accent-light);
}

/* ============================================
   EMERGENCY SECTION
   ============================================ */

.gsp-emergency-section {
  background: linear-gradient(to right, #fef3c7, #fde68a);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.gsp-emergency-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gsp-gradient-warm);
}

.gsp-emergency-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.gsp-emergency-image {
  flex: 0 0 380px;
  border-radius: var(--gsp-radius-lg);
  overflow: hidden;
  box-shadow: var(--gsp-shadow-xl);
}

.gsp-emergency-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gsp-emergency-text {
  flex: 1;
}

.gsp-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #c2410c;
  margin-bottom: 1rem;
}

.gsp-emergency-pulse {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.gsp-emergency-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gsp-ink);
  margin-bottom: 0.75rem;
}

.gsp-emergency-subtitle {
  font-size: 1.1rem;
  color: var(--gsp-ink-light);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.gsp-emergency-btn {
  animation: pulse 2s infinite;
}

@media (max-width: 991.98px) {
  .gsp-emergency-content {
    flex-direction: column;
    text-align: center;
  }
  
  .gsp-emergency-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  
  .gsp-emergency-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .gsp-emergency-image img {
    height: 200px;
  }
  
  .gsp-testimonial-summary {
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--gsp-radius);
    gap: 0.75rem;
  }
  
  .gsp-testimonial-summary-text {
    text-align: center;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gradient {
  background: var(--gsp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gsp-divider {
  width: 60px;
  height: 4px;
  background: var(--gsp-gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.gsp-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991.98px) {
  .gsp-hero-section {
    padding: 3rem 0;
  }
  
  .gsp-hero-images {
    display: none;
  }
  
  .gsp-hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .gsp-hero-logos {
    justify-content: center;
  }
  
  .gsp-section {
    padding: 3rem 0;
  }
}

@media (max-width: 575.98px) {
  .gsp-hero-section {
    padding: 2rem 0;
  }
  
  .gsp-hero-title {
    font-size: 2rem;
  }
  
  .gsp-hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .gsp-hero-logos {
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .gsp-hero-logo img {
    height: 28px;
    max-width: 70px;
  }
  
  .gsp-cta-phones {
    flex-direction: column;
  }
  
  .gsp-cta-phone {
    justify-content: center;
  }
  
  .gsp-footer-logos {
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .gsp-footer-logo img {
    height: 28px;
    max-width: 70px;
  }
}

/* Hide scrollbar for chrome, safari and opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for ie, edge and firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
