/* ========================================
   SARVIZA HVAC - Complete Stylesheet
   ======================================== */
/* CSS Variables */
:root {
  /* Navy Blue Primary */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 50%, 15%);
  /* Navy Blue */
  --primary: hsl(215, 70%, 14%);
  --primary-foreground: hsl(0, 0%, 100%);
  /* Steel Blue */
  --secondary: hsl(218, 55%, 24%);
  --secondary-foreground: hsl(0, 0%, 100%);
  /* Cool Blue Accent */
  --accent: hsl(214, 84%, 56%);
  --accent-foreground: hsl(0, 0%, 100%);
  /* Yellow CTA */
  --cta: hsl(45, 100%, 51%);
  --cta-foreground: hsl(215, 50%, 15%);
  --muted: hsl(210, 20%, 96%);
  --muted-foreground: hsl(215, 20%, 45%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(214, 84%, 56%);
  --radius: 0.5rem;
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(215, 70%, 14%), hsl(218, 55%, 24%));
  --gradient-accent: linear-gradient(135deg, hsl(214, 84%, 56%), hsl(215, 70%, 14%));
  --gradient-hero: linear-gradient(135deg, hsla(215, 70%, 14%, 0.95), hsla(218, 55%, 24%, 0.85));
  --gradient-cta: linear-gradient(135deg, hsl(45, 100%, 51%), hsl(40, 100%, 45%));
  /* Shadows */
  --shadow-card: 0 4px 20px -4px hsla(215, 70%, 14%, 0.1);
  --shadow-card-hover: 0 12px 32px -8px hsla(215, 70%, 14%, 0.2);
  --shadow-cta: 0 4px 20px -4px hsla(45, 100%, 51%, 0.4);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Utility Classes */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 4rem 1rem;
}

.bg-background {
  background: var(--background);
}

.bg-muted {
  background: var(--muted);
}

.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-accent {
  background: var(--gradient-accent);
}

.text-accent {
  color: var(--accent);
}

.text-cta {
  color: var(--cta);
}

.text-white {
  color: white;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.w-full {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/*Logo csss*/
.logo-image {
  max-height: 100px;
  /* adjust as needed */
  width: auto;
  display: block;
}

.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #0B1F3A;
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
}

.btn-cta {
  background: var(--gradient-cta);
  color: var(--cta-foreground);
  box-shadow: var(--shadow-cta);
  font-weight: 700;
}

.btn-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 25px -4px hsla(45, 100%, 51%, 0.5);
}

.btn-hero {
  background: var(--gradient-cta);
  color: var(--cta-foreground);
  box-shadow: var(--shadow-cta);
  font-weight: 700;
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-hero:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 25px -4px hsla(45, 100%, 51%, 0.5);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  color: white;
  transition: color 0.3s ease;
}

.header.scrolled .logo-title {
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.header.scrolled .logo-subtitle {
  color: var(--muted-foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--gradient-hero);
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--foreground);
}

.nav-link:hover {
  color: var(--accent);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gradient-hero);
  transition: color 0.3s ease;
}

.phone-link svg {
  color: var(--cta);
}

.header.scrolled .phone-link {
  color: var(--foreground);
}

.header.scrolled .phone-link svg {
  color: var(--accent);
}

.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: white;
  transition: color 0.3s ease;
}

.header.scrolled .mobile-toggle {
  color: var(--foreground);
}

.mobile-menu {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card-hover);
  padding: 1.5rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.3s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav hr {
  border: none;
  border-top: 1px solid var(--border);
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.5rem 0;
}

.mobile-phone-link svg {
  color: var(--accent);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.hero-inner {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(47, 128, 237, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(47, 128, 237, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cta);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  margin-top: 42px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  margin-bottom: 20px;
  padding: 0.75rem 1rem;
}

.trust-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 199, 7, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
}

.trust-badge span:last-child {
  font-weight: 500;
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-padding {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.features-grid {
  display: grid;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background: rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.highlight-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.highlight-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
}

.stat-primary {
  background: var(--primary);
}

.stat-secondary {
  background: var(--secondary);
}

.stat-accent {
  background: var(--accent);
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: var(--card);
  color: var(--muted-foreground);
  box-shadow: var(--shadow-card);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.3);
}

.tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
}

.service-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.service-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.8), transparent);
}

.service-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.service-image-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.service-image-desc {
  color: rgba(255, 255, 255, 0.8);
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-item {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.service-item:hover .service-item-icon {
  background: var(--accent);
}

.service-item:hover .service-item-icon svg {
  color: white;
}

.service-item:hover .service-item-title {
  color: var(--accent);
}

.service-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.service-item-title {
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.service-cta {
  margin-top: 2rem;
  display: flex !important;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-item-icon {
    margin-bottom: 0;
  }

  .service-cta {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* ========================================
   WHY US SECTION
   ======================================== */
.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

.reason-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.reason-card:hover {
  border-color: rgba(47, 128, 237, 0.2);
}

.reason-card:hover .reason-icon {
  background: var(--accent);
}

.reason-card:hover .reason-icon svg {
  color: white;
}

.reason-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.reason-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.reason-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-grid {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  position: relative;
}

.process-connector {
  display: none;
}

.process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.process-card:hover .process-icon {
  background: var(--cta);
}

.process-card:hover .process-icon svg {
  color: var(--cta-foreground);
}

.process-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cta-foreground);
}

.process-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  transition: all 0.3s ease;
}

.process-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.5rem;
}

.process-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-connector {
    display: block;
    position: absolute;
    top: 3rem;
    left: 60%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
  }

  .process-step:last-child .process-connector {
    display: none;
  }
}

/* ========================================
   INDUSTRY SHOWCASE
   ======================================== */
.industry-grid {
  display: grid;
  gap: 1.5rem;
}

.industry-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.industry-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-image {
  transform: scale(1.05);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), rgba(11, 31, 58, 0.5), transparent);
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.industry-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.25rem;
}

.industry-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2rem;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: white;
  border-radius: 50%;
  filter: blur(48px);
}

.cta-circle-1 {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.cta-circle-2 {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s ease;
}

.cta-phone:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cta-phone svg {
  color: var(--cta);
}

.cta-phone span {
  font-weight: 600;
  color: white;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-location {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .cta-phones {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .cta-box {
    padding: 3rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 4rem;
  }

  .cta-title {
    font-size: 3rem;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-card-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-card-detail {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.map-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 16rem;
}

.contact-form-wrapper {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(47, 128, 237, 0.2);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  height: auto;
  padding: 0.75rem;
  resize: none;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  color: white;
}

.footer-padding {
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  max-height: 80px;
  width: auto;
  display: block;
  scale: 2.5;
  padding-left: 40px;
}

.footer-logo .logo-icon {
  background: var(--accent);
}

.footer-logo-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  line-height: 1.2;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list li,
.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--cta);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-icon {
  color: var(--cta);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-list li div {
  display: flex;
  flex-direction: column;
}

.footer-contact-list li a,
.footer-contact-list li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--cta);
}

.footer-copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: white;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.25;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card-hover);
  padding: 1rem 1.5rem;
  animation: fadeUp 0.3s ease;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-icon {
  color: #22c55e;
  flex-shrink: 0;
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.toast-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 640px) {
  .container-custom {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-badge {
    width: 100%;
  }
}