/* ================================================
   CONTACT PAGE PREMIUM DESIGN
   ================================================ */

/* Page Hero Enhanced (coerente con about.css) */
.page-hero {
  padding: 100px 0 80px;
  background: 
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #f8fafc 100%),
    radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(34, 197, 94, 0.02) 50%, transparent 52%);
  animation: backgroundShift 15s ease-in-out infinite;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-intro {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 4rem;
  color: var(--text);
  margin: 0 0 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.3rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  position: relative;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  border-radius: 2px;
  transform-origin: center;
  animation: statLineGrow 1s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.2s + 0.5s);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 8px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Hero Animations */
@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

@keyframes statLineGrow {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  100% {
    transform: translateX(-50%) scaleX(1);
  }
}

/* Contact Showcase Section */
.contact-showcase {
  padding: 80px 0;
  background: 
    linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e6ffed 100%);
  position: relative;
  overflow: hidden;
}

.contact-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
  animation: showcaseFloat 25s linear infinite;
}

@keyframes showcaseFloat {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ================================================
   SHOWCASE INTRO SECTION (coerente con annunci.css)
   ================================================ */

.showcase-intro {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.intro-badge {
  margin-bottom: 30px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 
    0 20px 40px rgba(34, 197, 94, 0.25),
    0 8px 16px rgba(34, 197, 94, 0.15);
}

.showcase-intro h2 {
  font-size: 2.8rem;
  color: var(--text);
  margin: 0 0 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.showcase-intro p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ================================================
   CONTACT CONTENT GRID
   ================================================ */

.contact-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.content-card {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 35px;
  padding: 0;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-600) 50%, var(--brand) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 45px 100px rgba(0, 0, 0, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.content-card:hover::before {
  transform: scaleX(1);
}

.content-card.featured {
  grid-row: span 1;
  background: 
    linear-gradient(145deg, rgba(34, 197, 94, 0.02) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(248, 250, 252, 0.9) 100%);
}

.card-visual {
  position: relative;
  padding: 45px 50px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  ;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: 
    radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: cardGlow 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.card-content {
  padding: 0 50px 50px;
  position: relative;
  z-index: 1;
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 15px;
  letter-spacing: -0.5px;
}

.card-badge {
  display: inline-block;
}

.badge-featured,
.badge-special {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 
    0 8px 20px rgba(34, 197, 94, 0.3),
    0 3px 8px rgba(34, 197, 94, 0.2);
}

.card-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 35px;
  font-weight: 400;
  text-align: center;
}

/* ================================================
   PREMIUM CONTACT FORM DESIGN
   ================================================ */

.contact-form-card {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(34, 197, 94, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.contact-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 80px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Form Header */
.form-header {
  padding: 40px 45px 35px;
  background: 
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%),
    radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  position: relative;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 45px;
  right: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
}

.form-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 2px solid rgba(34, 197, 94, 0.15);
  border-radius: 24px;
  margin: 0 auto 25px;
  position: relative;
  overflow: hidden;
}

.form-icon-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.form-icon {
  font-size: 2.2rem;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.form-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.form-title-section {
  text-align: center;
}

.form-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.form-badge-container {
  margin-bottom: 20px;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(34, 197, 94, 0.8));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 
    0 8px 25px -8px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  animation: badge-pulse 3s ease-in-out infinite;
}

.form-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 85%;
  margin: 0 auto;
}

/* Premium Form Styles */
.premium-contact-form {
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-field {
  position: relative;
}

.field-label {
  display: block;
  width: 100%;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.input-container {
  position: relative;
}

.form-input {
  width: 100%;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 2px solid rgba(34, 197, 94, 0.1);
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.02),
    inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(34, 197, 94, 0.1),
    0 0 0 4px rgba(34, 197, 94, 0.08),
    inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.form-input:focus::placeholder {
  opacity: 0.4;
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.form-input:focus + .field-focus-line {
  transform: scaleX(1);
}

/* Premium Checkbox */
.premium-checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  padding: 20px;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid rgba(34, 197, 94, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.premium-checkbox-label:hover {
  background: rgba(248, 250, 252, 0.8);
  border-color: rgba(34, 197, 94, 0.15);
}

.premium-checkbox {
  appearance: none;
  margin: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.checkbox-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand), rgba(34, 197, 94, 0.8));
  transform: scale(0);
  transition: transform 0.2s ease;
  border-radius: 6px;
}

.checkbox-check {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.premium-checkbox:checked + .checkbox-custom::before {
  transform: scale(1);
}

.premium-checkbox:checked + .checkbox-custom .checkbox-check {
  transform: scale(1);
}

.premium-checkbox:checked + .checkbox-custom {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* Submit Button */
.form-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.submit-btn-premium {
  background: linear-gradient(135deg, var(--brand) 0%, rgba(34, 197, 94, 0.9) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 8px 32px rgba(34, 197, 94, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  min-width: 200px;
  justify-content: center;
}

.submit-btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn-premium:active {
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}

.btn-text {
  font-weight: 600;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn-premium:hover .btn-shine {
  left: 100%;
}

.form-message {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 20px;
}

/* Animations */
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

/* ================================================
   PREMIUM SERVICES CARD DESIGN
   ================================================ */

.services-card-premium {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(34, 197, 94, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.services-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.services-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 80px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Services Header */
.services-header {
  padding: 40px 45px 35px;
  background: 
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%),
    radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  position: relative;
}

.services-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 45px;
  right: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
}

.services-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: 
    linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  margin: 0 auto 25px;
  position: relative;
  overflow: hidden;
}

.services-icon-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.services-icon {
  font-size: 2.2rem;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.services-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.services-title-section {
  text-align: center;
}

.services-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.services-badge-container {
  margin-bottom: 20px;
}

.consultation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.8));
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 
    0 8px 25px -8px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
  animation: badge-pulse 3s ease-in-out infinite;
}

.services-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 85%;
  margin: 0 auto;
}

/* Services Content */
.services-content {
  padding: 45px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.service-item-premium {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
  border: 1px solid rgba(34, 197, 94, 0.08);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), rgba(34, 197, 94, 0.6));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.service-item-premium:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 197, 94, 0.15);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.05);
}

.service-item-premium:hover::before {
  transform: scaleY(1);
}

.service-check-container {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brand), rgba(34, 197, 94, 0.8));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 15px rgba(34, 197, 94, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin-top: 3px;
  animation: check-pulse 3s ease-in-out infinite;
}

.service-check {
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Service Check Animation */
@keyframes check-pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 
      0 4px 15px rgba(34, 197, 94, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 
      0 6px 20px rgba(34, 197, 94, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* ================================================
   OFFICES COMPACT LAYOUT
   ================================================ */

.offices-compact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.office-compact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.office-compact:hover {
  background: rgba(34, 197, 94, 0.05);
  transform: scale(1.02);
}

.office-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.office-info strong {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.office-info span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.office-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-office {
  background: rgba(34, 197, 94, 0.1);
  color: var(--brand);
  border: 2px solid rgba(34, 197, 94, 0.2);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-office:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* ================================================
   SERVICES POINTS
   ================================================ */

.services-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.point-check {
  font-size: 1.1rem;
  color: var(--brand);
  width: 25px;
  height: 25px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

.service-point span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.2px;
}

/* ================================================
   HOURS SECTION
   ================================================ */

.hours-section {
  margin-top: 60px;
}

.hours-card {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 50px;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
  animation: hoursFloat 20s linear infinite;
}

@keyframes hoursFloat {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.hours-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
}

.hours-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: hoursGlow 4s ease-in-out infinite;
}

@keyframes hoursPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes hoursGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hours-content {
  position: relative;
  z-index: 1;
}

.hours-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 15px;
  letter-spacing: -1px;
}

.hours-content p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.hour-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.hour-premium:hover {
  background: rgba(34, 197, 94, 0.03);
  transform: scale(1.02);
}

.hour-premium.closed {
  opacity: 0.6;
  background: rgba(248, 250, 252, 0.5);
}

.hour-day {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.hour-time {
  display: flex;
  gap: 15px;
  align-items: center;
}

.morning, .afternoon {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(34, 197, 94, 0.1);
  padding: 5px 15px;
  border-radius: 12px;
}

.closed-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
}

.hours-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hours {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 12px 25px rgba(34, 197, 94, 0.3),
    0 6px 15px rgba(34, 197, 94, 0.2);
}

.btn-hours:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 18px 35px rgba(34, 197, 94, 0.4),
    0 10px 20px rgba(34, 197, 94, 0.3);
}

/* ================================================
   OFFICES SECTION PREMIUM
   ================================================ */

.offices-section-premium {
  margin-top: 80px;
  margin-bottom: 60px;
}

.offices-intro {
  text-align: center;
  margin-bottom: 60px;
}

.offices-intro h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.offices-intro p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.offices-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.office-card-premium {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 35px;
  padding: 0;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.office-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-600) 50%, var(--brand) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.office-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 45px 100px rgba(0, 0, 0, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.office-card-premium:hover::before {
  transform: scaleX(1);
}

.office-visual {
  position: relative;
  padding: 45px 50px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-icon-large {
  font-size: 4rem;
  position: relative;
  z-index: 2;
}

.office-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: 
    radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: cardGlow 3s ease-in-out infinite;
}

.office-content {
  padding: 0 50px 50px;
  position: relative;
  z-index: 1;
}

.office-header-premium {
  text-align: center;
  margin-bottom: 30px;
}

.office-header-premium h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 15px;
  letter-spacing: -0.5px;
}

.city-badge-premium {
  display: inline-block;
}

.city-badge-premium span {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 25px;
  letter-spacing: 0.5px;
  box-shadow: 
    0 8px 20px rgba(34, 197, 94, 0.3),
    0 3px 8px rgba(34, 197, 94, 0.2);
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(34, 197, 94, 0.05);
  transform: scale(1.02);
}

.detail-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-info strong {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.detail-info span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.office-actions-premium {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-office-premium {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 12px 25px rgba(34, 197, 94, 0.3),
    0 6px 15px rgba(34, 197, 94, 0.2);
  flex: 1;
  text-align: center;
  min-width: 150px;
}

.btn-office-premium:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 18px 35px rgba(34, 197, 94, 0.4),
    0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn-office-secondary {
  background: rgba(34, 197, 94, 0.1);
  color: var(--brand);
  border: 2px solid rgba(34, 197, 94, 0.2);
  padding: 13px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  flex: 1;
  text-align: center;
  min-width: 150px;
}

.btn-office-secondary:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1400px) {
  .contact-content-grid {
    gap: 25px;
  }
  
  .card-content {
    padding: 0 40px 40px;
  }
  
  .hours-card {
    padding: 50px;
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hours-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    padding: 45px;
  }
  
  .hours-icon {
    font-size: 4rem;
  }
  
  .hours-content h3 {
    font-size: 2.2rem;
  }
  
  /* Hero Responsive */
  .page-hero h1 {
    font-size: 3.2rem;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  /* Offices Section Responsive */
  .offices-grid-premium {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .offices-intro h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .contact-showcase {
    padding: 60px 0;
  }
  
  .showcase-intro {
    margin-bottom: 60px;
  }
  
  .showcase-intro h2 {
    font-size: 2.2rem;
  }
  
  .card-content {
    padding: 0 30px 35px;
  }
  
  .card-visual {
    padding: 35px 30px 20px;
  }
  
  .card-icon {
    font-size: 3.5rem;
  }
  
  .card-header h3 {
    font-size: 1.8rem;
  }
  
  .hours-card {
    padding: 40px 30px;
  }
  
  .hours-content h3 {
    font-size: 2rem;
  }
  
  .hours-content p {
    font-size: 1.1rem;
  }
  
  .hour-premium {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .office-actions,
  .hours-actions {
    justify-content: center;
  }
  
  /* Contact Form Responsive */
  .form-header {
    padding: 35px 30px 30px;
  }
  
  .form-main-title {
    font-size: 2.2rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
    max-width: 95%;
  }
  
  .premium-contact-form {
    padding: 35px 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Services Card Responsive */
  .services-header {
    padding: 35px 30px 30px;
  }
  
  .services-main-title {
    font-size: 2.2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
    max-width: 95%;
  }
  
  .services-content {
    padding: 35px 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Hero Responsive */
  .page-hero {
    padding: 80px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 2.8rem;
  }
  
  .page-hero p {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  /* Office Cards Mobile */
  .offices-section-premium {
    padding: 80px 30px;
  }
  
  .offices-intro h2 {
    font-size: 2.2rem;
  }
  
  .offices-intro p {
    font-size: 1.2rem;
  }
  
  .office-card-premium {
    padding: 35px;
  }
  
  .office-card-premium h3 {
    font-size: 1.8rem;
  }
  
  .office-details-grid {
    gap: 25px;
  }
  
  .office-detail {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .showcase-intro h2 {
    font-size: 1.6rem;
  }
  
  .showcase-intro p {
    font-size: 1rem;
  }
  
  .contact-content-grid {
    gap: 30px;
  }
  
  .card-content {
    padding: 0 25px 30px;
  }
  
  .card-visual {
    padding: 30px 25px 15px;
  }
  
  .card-icon {
    font-size: 3rem;
  }
  
  .card-header h3 {
    font-size: 1.6rem;
  }
  
  .hours-card {
    padding: 35px 20px;
    border-radius: 30px;
  }
  
  .hours-icon {
    font-size: 3.5rem;
  }
  
  .hours-content h3 {
    font-size: 1.8rem;
  }
  
  .premium-form {
    gap: 20px;
  }
  
  .btn-form-premium {
    padding: 16px 35px;
    font-size: 1rem;
  }
  
  .office-actions,
  .hours-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn-office,
  .btn-hours {
    width: 100%;
    text-align: center;
  }
  
  .offices-compact {
    gap: 15px;
  }
  
  .office-compact {
    padding: 15px;
  }
  
  .office-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  /* Hero Responsive */
  .page-hero {
    padding: 70px 0 50px;
  }
  
  .page-hero h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  
  .page-hero p {
    font-size: 1.1rem;
    margin: 0 auto 40px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Office Cards Mobile */
  .offices-section-premium {
    padding: 60px 20px;
  }
  
  .offices-intro h2 {
    font-size: 2rem;
  }
  
  .offices-intro p {
    font-size: 1.1rem;
  }
  
  .office-card-premium {
    padding: 30px 20px;
  }
  
  .office-card-premium h3 {
    font-size: 1.6rem;
  }
  
  .office-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .office-detail {
    padding: 15px;
  }
  
  .office-detail i {
    font-size: 1.4rem;
  }
  
  .office-detail .detail-text {
    font-size: 0.95rem;
  }
  
  .office-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .office-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 0.95rem;
  }
  
  /* Contact Form Mobile */
  .form-header {
    padding: 30px 25px 25px;
  }
  
  .form-icon-container {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .form-icon {
    font-size: 1.8rem;
  }
  
  .form-main-title {
    font-size: 1.9rem;
  }
  
  .form-subtitle {
    font-size: 0.95rem;
  }
  
  .response-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  .premium-contact-form {
    padding: 30px 25px;
    gap: 25px;
  }
  
  .form-input {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  
  .label-text {
    font-size: 0.9rem;
  }
  
  .premium-checkbox-label {
    padding: 18px;
  }
  
  .checkbox-text {
    font-size: 0.9rem;
  }
  
  .submit-btn-premium {
    padding: 16px 35px;
    font-size: 1rem;
    min-width: 180px;
  }
  
  /* Services Card Mobile */
  .services-header {
    padding: 30px 25px 25px;
  }
  
  .services-icon-container {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .services-icon {
    font-size: 1.8rem;
  }
  
  .services-main-title {
    font-size: 1.9rem;
  }
  
  .services-subtitle {
    font-size: 0.95rem;
  }
  
  .consultation-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  .services-content {
    padding: 30px 25px;
  }
  
  .service-item-premium {
    padding: 20px;
  }
  
  .service-title {
    font-size: 1rem;
  }
  
  .service-desc {
    font-size: 0.85rem;
  }
  
  .service-check-container {
    width: 28px;
    height: 28px;
  }
  
  .service-check {
    font-size: 1rem;
  }
}
