@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Color System - Navy Blue & Powder Pink Palette */
:root {
  /* Brand Colors */
  --navy-blue: #2c3e50;
  --navy-dark: #1a252f;
  --navy-light: #34495e;
  --powder-pink: #ffc0cb;
  --powder-pink-light: #ffd6dd;
  --powder-pink-dark: #e6a8b5;

  /* Primary Backgrounds */
  --bg-primary: #fef7f8;
  --bg-secondary: #fff5f7;
  --bg-accent: #2c3e50;

  /* Text Hierarchy */
  --text-primary: #2c3e50;
  --text-secondary: #34495e;
  --text-light: #7f8c8d;
  --text-on-dark: #ffffff;

  /* Interactive States */
  --interactive-base: #2c3e50;
  --interactive-hover: #1a252f;
  --interactive-accent: #ffc0cb;
  --focus-outline: #ffc0cb;

  /* Borders & Separators */
  --border-light: #ffd6dd;
  --border-medium: #ffc0cb;
  --border-dark: #2c3e50;

  /* Border Radius - Rounded Design */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* Navigation */
nav {
  background: var(--bg-primary);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-blue);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--navy-blue);
}

/* Hero Section */
.hero {
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "info image"
    "actions image";
  gap: 40px 80px;
  align-items: center;
}

.hero-main-info {
  grid-area: info;
}

.hero-actions {
  grid-area: actions;
  align-self: start;
}

.hero-image-container {
  grid-area: image;
  position: relative;
  width: 100%;
}

.hero-main-info h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--navy-blue);
}

.hero-main-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.quick-links {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.quick-link:hover {
  background: var(--powder-pink-light);
  transform: translateY(-2px);
}

.quick-link span {
  font-size: 18px;
}

.quick-overview-title {
  font-size: 20px;
  color: var(--navy-blue);
  margin-bottom: 16px;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--navy-blue);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.2);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  /* Ensure square aspect ratio for consistency */
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "image"
      "actions";
    gap: 32px;
    text-align: center;
  }

  .hero-main-info h1 {
    font-size: 42px;
  }

  .quick-links {
    justify-content: center;
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.section-header h2 {
  font-size: 48px;
  color: var(--navy-blue);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--powder-pink-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 24px;
  color: var(--navy-blue);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro {
  font-size: 22px;
  color: var(--navy-blue);
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-text {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--powder-pink-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--navy-blue);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--navy-blue);
  color: white;
}

.pricing .section-header h2,
.pricing .section-header p {
  color: white;
}

.pricing-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--bg-secondary);
  padding: 8px;
  border-radius: var(--radius-md);
}

.tab-button {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: var(--navy-blue);
  color: white;
}

.tab-button:hover:not(.active) {
  background: var(--powder-pink-light);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.price-list {
  list-style: none;
  margin-bottom: 32px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:first-child {
  color: var(--text-primary);
  font-size: 16px;
}

.price-item span:last-child {
  color: var(--navy-blue);
  font-weight: 600;
  font-size: 18px;
}

.price-category-title {
  font-size: 24px;
  color: var(--navy-blue);
  margin-bottom: 24px;
  text-align: center;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
}

.price-item div {
  flex: 1;
}

.price-item strong {
  color: var(--navy-blue);
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.service-details {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.price-item .price {
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-note {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--powder-pink);
  color: var(--navy-blue);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-cta:hover {
  background: var(--powder-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 192, 203, 0.3);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateX(10px);
  border-color: var(--powder-pink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--powder-pink-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-blue);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 16px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-details p {
  color: var(--navy-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-details a {
  color: var(--navy-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--powder-pink-dark);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  color: white;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 500px;
  border: 4px solid white;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--navy-blue);
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.8;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--powder-pink);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.4);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: var(--radius-xl);
  max-width: 800px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  background: var(--navy-blue);
  color: white;
  padding: 32px 48px;
  margin: 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  font-size: 32px;
}

.modal-body {
  padding: 48px;
  color: var(--text-primary);
  max-height: 60vh;
  overflow-y: auto;
}

.modal-body h3 {
  color: var(--navy-blue);
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.modal-body ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.modal-body ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .modal-content {
    margin: 10% 20px;
    max-width: calc(100% - 40px);
  }

  .modal-content h2 {
    padding: 24px 32px;
    font-size: 28px;
  }

  .modal-body {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .quick-links {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-tabs {
    flex-wrap: wrap;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal span {
    display: none;
  }

  .modal-content {
    margin: 20px 16px;
    max-width: calc(100% - 32px);
  }

  .modal-content h2 {
    padding: 20px 24px;
    font-size: 24px;
  }

  .modal-body {
    padding: 24px;
    max-height: 70vh;
  }

  .modal-close {
    right: 16px;
    top: 16px;
    font-size: 32px;
    width: 32px;
    height: 32px;
  }
}