:root {
  --primary: #f472b6; /* Pink 400 */
  --primary-dark: #db2777; /* Pink 600 */
  --primary-light: #fbcfe8; /* Pink 200 */
  --bg-color: #ffffff;
  --text-color: #1f2937; /* Gray 800 */
  --text-muted: #6b7280; /* Gray 500 */
  --surface: #f9fafb; /* Gray 50 */
  --border-radius: 16px;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 15px 30px -5px rgba(244, 114, 182, 0.15), 0 8px 16px -5px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

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

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

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.nav-phone-center {
  position: absolute;
  left: 43%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.nav-phone-center:hover {
  transform: translateX(-50%) translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a.home-btn {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: white;
}

.nav-links a.home-btn:hover {
  background: var(--surface);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

.nav-links a.btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: var(--shadow-sm);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-line {
  background: #06C755;
  color: white;
}

.btn-line:hover {
  background: #05b04b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(6, 199, 85, 0.3);
  color: white;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 114, 182, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  animation: float 6s ease-in-out infinite;
  background: white;
}

.hero-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Feature Grid Section */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244, 114, 182, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-media {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: #fdf2f8;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(244, 114, 182, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(5deg);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Accordion FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid rgba(244, 114, 182, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: none;
  border: none;
  text-align: left;
  outline: none;
}

.faq-question:hover {
  background-color: #fff5f8;
}

.faq-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: #fafafa;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 1.25rem 1.5rem;
  max-height: 200px;
  border-top: 1px solid rgba(244, 114, 182, 0.05);
}

/* Contact / Call-to-Action Section */
.contact {
  background-color: #111827; /* Deep charcoal matching footer */
  color: white;
  padding: 5rem 0;
}

.contact h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-sub {
  text-align: center;
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-item h3 {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p, .contact-item a {
  font-size: 1.05rem;
  color: #cbd5e1;
}

.contact-item a {
  font-weight: 700;
}

.contact-item a:hover {
  color: white;
}

.contact-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05);
}

/* Footer Section */
.footer {
  background-color: #0b0f19; /* Deeper Indigo-Black */
  color: #9ca3af;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(244, 114, 182, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.footer-logo .logo-text {
  color: var(--primary);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-contact-info a {
  color: var(--primary);
  font-weight: 600;
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

.footer-links-group {
  text-align: left;
}

.footer-links-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-group h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.footer-links-list li a {
  font-size: 0.9rem;
  color: #9ca3af;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.highlight-link {
  color: var(--primary) !important;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

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

  .hero-cta {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 48px;
  }

  .nav-phone-center {
    position: static;
    transform: none;
    font-size: 1.1rem;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .nav-links .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }
}
