/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: #0a1628;
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

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

.contact-info {
  display: flex;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience {
  font-size: 0.75rem;
}

.main-header {
  background: white;
}

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

.logo img {
  height: 3rem;
  width: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  color: #52525b;
  text-decoration: none;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #1e6fd9;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #52525b;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e4e4e7;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #52525b;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #1e6fd9;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-nav {
    display: none !important;
  }
}

/* Button Styles */
.btn-primary {
  background: #1e6fd9;
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.btn-primary:hover {
  background: #3b9eff;
  box-shadow: 0 10px 25px rgba(30, 111, 217, 0.3);
}

.btn-primary.btn-large {
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1.25rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #3b9eff;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bc5a;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  transform: scale(1.05);
}

.btn-whatsapp-white {
  background: white;
  color: #25d366;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-white:hover {
  background: #f9fafb;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://s3-alpha-sig.figma.com/img/6e18/dfd7/6c51028dc8ea6f767bed1b2e95dc53f3');
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(26, 58, 107, 0.92), rgba(13, 34, 68, 0.95));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 111, 217, 0.2);
  border: 1px solid rgba(59, 158, 255, 0.3);
  color: #3b9eff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero h1 .highlight {
  color: #3b9eff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d4d4d8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: white;
}

.hero-location {
  font-size: 1.125rem;
  color: #a1a1aa;
  margin-bottom: 3rem;
}

.hero-location strong {
  color: #3b9eff;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature-card svg {
  color: #3b9eff;
}

.feature-card span {
  font-size: 0.875rem;
  color: #d4d4d8;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.stat {
  text-align: center;
}

.stat.stat-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  color: #3b9eff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .stat-value {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 0;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: #e8f4ff;
  color: #1e6fd9;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-badge.light {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-badge.dark {
  background: rgba(30, 111, 217, 0.2);
  border: 1px solid rgba(59, 158, 255, 0.3);
  color: #3b9eff;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0a1628;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-header h2.white {
  color: white;
}

.section-header h2 .highlight {
  color: #1e6fd9;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #52525b;
  max-width: 42rem;
  margin: 0 auto;
}

.section-subtitle.white {
  color: #d4d4d8;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3.75rem;
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: #e8f4ff;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}

.services::before {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.services::after {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.services .container {
  position: relative;
  z-index: 10;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: white;
  border: 2px solid #f4f4f5;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(30, 111, 217, 0.3);
  box-shadow: 0 20px 40px rgba(30, 111, 217, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #e8f4ff, #d1e9ff);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  color: #1e6fd9;
}

.service-content h3 {
  font-size: 1.25rem;
  color: #0a1628;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-content h3 {
  color: #1e6fd9;
}

.service-content p {
  color: #52525b;
  line-height: 1.6;
}

.cta-card {
  background: linear-gradient(135deg, #0a1628, #1a3a6b, #0d2244);
  border: 1px solid rgba(59, 158, 255, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 158, 255, 0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59, 158, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.cta-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon svg {
  color: #3b9eff;
}

.cta-text h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-card {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cta-text h3 {
    font-size: 1.875rem;
  }
}

/* About Section */
.about {
  padding: 6rem 0;
  background: white;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text {
  order: 2;
}

.about-intro {
  font-size: 1.25rem;
  color: #3f3f46;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-intro strong {
  color: #0a1628;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #e8f4ff, #d1e9ff);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
}

.value-icon svg {
  color: #1e6fd9;
}

.value-item span {
  font-size: 1.125rem;
  color: #3f3f46;
  padding-top: 0.5rem;
}

.about-image {
  order: 1;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.2), rgba(59, 158, 255, 0.2));
  border-radius: 1.5rem;
  filter: blur(40px);
  z-index: 0;
}

.about-image img {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
  border: 4px solid white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 158, 255, 0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59, 158, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.stat-card svg {
  color: #3b9eff;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.stat-card-value {
  font-size: 2.5rem;
  color: #3b9eff;
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.stat-card-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-text {
    order: 1;
  }
  
  .about-image {
    order: 2;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .stat-card-value {
    font-size: 3rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fafafa, rgba(232, 244, 255, 0.3));
  position: relative;
  overflow: hidden;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(30, 111, 217, 0.1);
  border-radius: 50%;
}

.testimonials::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonials::after {
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(30, 111, 217, 0.05);
}

.testimonials .container {
  position: relative;
  z-index: 10;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f4f4f5;
  margin-bottom: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #f59e0b;
  font-size: 1.25rem;
}

.divider {
  width: 1px;
  height: 2rem;
  background: #e4e4e7;
}

.rating-info {
  text-align: left;
}

.rating-value {
  font-size: 1.875rem;
  color: #0a1628;
  line-height: 1;
}

.rating-source {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: -0.25rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(30, 111, 217, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-0.5rem);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0), rgba(30, 111, 217, 0.05), rgba(59, 158, 255, 0.1));
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.stars-small {
  display: flex;
  gap: 0.25rem;
}

.stars-small .star {
  color: #f59e0b;
  font-size: 1.25rem;
}

.quote-icon {
  color: #e8f4ff;
  opacity: 0.5;
}

.testimonial-text {
  color: #3f3f46;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f4f4f5;
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #1e6fd9, #3b9eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(30, 111, 217, 0.3);
}

.author-name {
  color: #0a1628;
  font-weight: 500;
}

.author-source {
  font-size: 0.875rem;
  color: #71717a;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1628, #1a3a6b, #0d2244);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 158, 255, 0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59, 158, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.05;
}

.contact .container {
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 158, 255, 0.3);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #1e6fd9, #3b9eff);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
  box-shadow: 0 10px 25px rgba(30, 111, 217, 0.3);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon svg {
  color: white;
}

.contact-label {
  font-size: 0.75rem;
  color: #3b9eff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.contact-bottom {
  display: grid;
  gap: 2rem;
}

.hours-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hours-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 111, 217, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-icon svg {
  color: #3b9eff;
}

.hours-header h3 {
  font-size: 1.5rem;
  color: white;
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  color: #d4d4d8;
  font-size: 1.125rem;
}

.hours-time {
  color: #3b9eff;
  text-align: right;
}

.whatsapp-cta-card {
  background: linear-gradient(135deg, #25d366, #20bc5a);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
  transition: box-shadow 0.3s;
}

.whatsapp-cta-card:hover {
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon-large {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.whatsapp-icon-large svg {
  color: white;
}

.whatsapp-cta-card h3 {
  font-size: 1.875rem;
  color: white;
  margin-bottom: 0.75rem;
}

.whatsapp-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  background: #0a1628;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-content p {
  color: #a1a1aa;
  font-size: 0.875rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  color: white;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
}

/* Utility Classes */
.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: block;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
