/* ===== PROFESSIONAL CORPORATE DESIGN ===== */

/* Critical CSS - Above the fold */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Clean Professional Color Palette */
  --background: #0a1626;
  --card-background: #112233;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  
  /* Flat Action Colors */
  --blue: #3498db;
  --green: #2ecc71;
  --orange: #f39c12;
  --purple: #9b59b6;
  --red: #e74c3c;
  
  /* Surface Colors */
  --surface-light: rgba(255, 255, 255, 0.05);
  --surface-medium: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.2);
  
  /* Design System */
  --border-radius: 12px;
  --border-radius-large: 16px;
  --border-radius-small: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 80px 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}

/* Typography - Clean & Professional */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--blue);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER - CLEAN & MINIMAL ===== */
.header {
  background: rgba(10, 22, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* Navigation - Professional */
.nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
  background: var(--surface-light);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 1px;
}

/* ===== FLOATING BUTTONS - REFINED ===== */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
  will-change: transform;
  color: white;
}

.whatsapp-fab { 
  background: var(--green); 
}

.phone-fab { 
  background: var(--blue); 
}

.maps-fab {
  background: var(--purple);
  color: white;
}

.fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

/* ===== HERO SECTION - CLEAN & PROFESSIONAL ===== */
.hero {
  background: linear-gradient(rgba(10, 22, 38, 0.8), rgba(10, 22, 38, 0.8)), url('../images/main_background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: var(--section-padding);
  padding-top: 160px;
  text-align: center;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-medium);
  color: var(--green);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.badge-icon::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.gradient-text {
  color: var(--blue);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== BUTTONS - CLEAN & AESTHETIC ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  will-change: transform;
  letter-spacing: 0.01em;
}

.cta-button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.cta-button.primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.cta-button.secondary {
  background: var(--surface-medium);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.cta-button.secondary:hover {
  background: var(--surface-light);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--shadow-hover);
}

.cta-button.large {
  padding: 18px 36px;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== SECTIONS - CLEAN & SPACIOUS ===== */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--surface-medium);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SERVICES - PROFESSIONAL ===== */
.services-preview {
  padding: 100px 0;
  background: rgba(10, 22, 38, 0.3);
}

.services-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.service-card, .benefit-item {
  background: var(--card-background);
  padding: 32px 24px;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.service-card::before, .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover, .benefit-item:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px var(--shadow-hover);
  transform: translateY(-4px);
  background: var(--surface-light);
}

.service-card:hover::before, .benefit-item:hover::before {
  transform: scaleX(1);
}

.service-icon, .benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: var(--border-radius);
  background: var(--surface-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: var(--transition);
}

.service-card:hover .service-icon,
.benefit-item:hover .benefit-icon {
  background: var(--blue);
  color: white;
  transform: scale(1.05);
}

.service-card h3, .benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.service-card p, .benefit-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.feature-tag {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature tag colors - clean flat colors */
.feature-tag.primary { background: var(--blue); }
.feature-tag.secondary { background: var(--purple); }
.feature-tag.success { background: var(--green); }
.feature-tag.danger { background: var(--blue); }
.feature-tag.warning { background: var(--orange); }
.feature-tag.info { background: var(--blue); }

.whatsapp-info-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 10px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.whatsapp-info-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-info-btn svg {
  flex-shrink: 0;
}

/* Remove old price styling since we removed prices */
.service-price {
  display: none;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 100px 0;
  background: rgba(10, 22, 38, 0.2);
}

/* ===== TRUST INDICATORS ===== */
.trust-indicators {
  padding: 60px 0;
  background: rgba(34, 63, 115, 0.3);
  color: white;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 24px;
  flex-shrink: 0;
  color: var(--green);
}

.trust-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: white;
  font-weight: 600;
}

.trust-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-padding);
  background: var(--card-background);
  color: var(--text-primary);
  text-align: center;
}

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

.cta-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

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

/* ===== FOOTER - PROFESSIONAL ===== */
.footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--blue);
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  background: var(--green);
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE - PROFESSIONAL ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background);
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
  }

  .nav.nav-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 8px;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    display: block;
    padding: 16px 20px;
    text-align: center;
    border-radius: var(--border-radius-small);
    margin-bottom: 4px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

  .fab {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .services-grid, .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card, .benefit-item {
    padding: 24px 20px;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .section {
    padding: 60px 0;
  }
}

/* Focus States - Accessibility */
*:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 24px; }
.mt-4 { margin-top: 24px; }

/* Performance Optimizations */
img {
  max-width: 100%;
  height: auto;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-large);
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px var(--shadow-hover);
  transform: translateY(-4px);
  background: rgba(34, 63, 115, 0.2);
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 63, 115, 0.2);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}

.mission-card:hover .mission-icon {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

.mission-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
  margin: 0;
}

.story-image {
  position: relative;
}

.image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-hover);
  position: relative;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue);
  opacity: 0.1;
  z-index: 1;
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .mission-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
  }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form, .contact-info {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-large);
}

.contact-form h2, .contact-info h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
  background: rgba(34, 63, 115, 0.1);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(156, 16, 6, 0.1);
  background: rgba(34, 63, 115, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.contact-info-section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-info-section:last-child {
  border-bottom: none;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.info-icon {
  font-size: 20px;
  color: var(--blue);
}

.info-header h3 {
  margin: 0;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}

.info-content {
  padding-left: 32px;
}

.info-content p {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-secondary);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25d366;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin-top: 8px;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 12px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Success Message */
.success-message {
  background: rgba(39, 174, 96, 0.2);
  color: #27ae60;
  padding: 16px;
  border-radius: var(--border-radius);
  margin-top: 16px;
  text-align: center;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.success-icon {
  font-size: 24px;
}

.success-content h3 {
  font-size: 16px;
  margin: 0;
  color: #27ae60;
}

.success-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-quick-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .info-content {
    padding-left: 0;
  }
  
  .info-header {
    justify-content: center;
  }
}

/* ===== MODERN CONTACT PAGE STYLES ===== */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-large);
  box-shadow: 0 8px 32px var(--shadow);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-header h3 {
  font-size: 20px;
  margin: 0 0 4px 0;
  color: var(--white);
}

.form-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quick-contact-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quick-contact-section h3 {
  font-size: 20px;
  margin: 0;
  color: var(--white);
}

.quick-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-hover);
  background: rgba(34, 63, 115, 0.2);
}

.whatsapp-card {
  border-left: 4px solid #25d366;
}

.whatsapp-card:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.1);
}

.phone-card {
  border-left: 4px solid var(--blue);
}

.phone-card:hover {
  border-color: var(--blue);
  background: rgba(156, 16, 6, 0.1);
}

.email-card {
  border-left: 4px solid var(--yellow);
}

.email-card:hover {
  border-color: var(--yellow);
  background: rgba(243, 156, 18, 0.1);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(34, 63, 115, 0.2);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.whatsapp-card .contact-card-icon {
  background: #25d366;
  color: white;
}

.phone-card .contact-card-icon {
  background: var(--blue);
  color: white;
}

.email-card .contact-card-icon {
  background: var(--yellow);
  color: white;
}

.contact-card-content {
  flex: 1;
}

.contact-card-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: var(--white);
}

.contact-card-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-card-arrow {
  font-size: 18px;
  color: var(--blue);
  font-weight: bold;
}

.contact-details {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--border-radius);
}

.contact-details h4 {
  margin: 0 0 16px 0;
  color: var(--white);
  font-size: 16px;
}

.contact-detail-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-item svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-detail-item p,
.contact-detail-item address {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  font-style: normal;
}

.map-section h4 {
  margin: 0 0 12px 0;
  color: var(--white);
  font-size: 16px;
}

.map-container-modern {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
}

@media (max-width: 968px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .modern-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== FORM MESSAGES ===== */
.form-error, .success-message {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--border-radius);
  animation: slideInDown 0.3s ease-out;
}

.form-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  color: var(--blue);
}

.success-message {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.2);
  color: #27ae60;
}

.error-content, .success-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.error-icon, .success-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.error-content p, .success-content p {
  margin: 0;
  font-weight: 500;
}

.success-content h3 {
  margin: 0 0 4px 0;
  color: #27ae60;
  font-size: 18px;
}

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

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: var(--blue);
}

.form-group input:focus:invalid,
.form-group select:focus:invalid,
.form-group textarea:focus:invalid {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* ===== WHATSAPP APPOINTMENT SECTION ===== */
.whatsapp-appointment-section {
  padding: 80px 0;
  background: rgba(34, 63, 115, 0.2);
  border-radius: var(--border-radius-large);
  margin: 40px 0;
}

.whatsapp-appointment-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.whatsapp-appointment-icon {
  margin-bottom: 32px;
  color: #25D366;
  animation: pulse 2s infinite;
}

.whatsapp-appointment-icon svg {
  filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.3));
}

.whatsapp-appointment-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.whatsapp-appointment-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-appointment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 20px 40px;
  border-radius: var(--border-radius-large);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  min-width: 280px;
}

.whatsapp-appointment-button:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-appointment-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-appointment-section {
    padding: 60px 0;
    margin: 20px 0;
  }
  
  .whatsapp-appointment-title {
    font-size: 2rem;
  }
  
  .whatsapp-appointment-description {
    font-size: 1rem;
  }
  
  .whatsapp-appointment-button {
    padding: 18px 32px;
    font-size: 1.125rem;
    min-width: 240px;
  }
}

@media (max-width: 480px) {
  .whatsapp-appointment-title {
    font-size: 1.75rem;
  }
  
  .whatsapp-appointment-button {
    padding: 16px 24px;
    font-size: 1rem;
    min-width: 200px;
  }
}

