/* ============================================
   Elite Life Health Services - Main Stylesheet
   Warm, Professional Healthcare Aesthetic
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-blue: #1a5276;
  --primary-blue-dark: #154360;
  --primary-blue-light: #2980b9;
  
  /* Accent Colors */
  --accent-coral: #f8d7da;
  --accent-coral-dark: #f5c6cb;
  --accent-rose: #fdecea;
  --heart-red: #e74c3c;
  
  /* Neutrals */
  --cream: #fdfbf7;
  --cream-dark: #f9f6f0;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-medium: #5d6d7e;
  --text-light: #85929e;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(26, 82, 118, 0.08);
  --shadow-medium: 0 8px 30px rgba(26, 82, 118, 0.12);
  --shadow-strong: 0 15px 50px rgba(26, 82, 118, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-blue);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-top {
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.875rem;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.header-top a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top a:hover {
  color: var(--accent-coral);
}

.header-social {
  display: flex;
  gap: 15px;
}

.header-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.header-social a:hover {
  background: var(--heart-red);
}

.header-main {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--heart-red);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-coral {
  background: var(--heart-red);
  color: var(--white);
}

.btn-coral:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128C7E;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--accent-rose) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, var(--accent-coral) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: var(--shadow-soft);
  margin-bottom: 25px;
}

.hero-badge svg {
  color: var(--heart-red);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.hero h1 span {
  color: var(--heart-red);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 35px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--primary-blue);
}

.hero-feature-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-main {
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-image-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heart-red);
}

.hero-image-badge-text {
  font-weight: 700;
  color: var(--primary-blue);
}

.hero-image-badge-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-medium);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-cream {
  background: var(--cream);
}

.section-coral {
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-coral) 100%);
}

.section-blue {
  background: var(--primary-blue);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue p {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heart-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--heart-red);
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Payment Options - Two-Card Layout */
.payment-options-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.payment-card {
  flex: 1;
  max-width: 380px;
  padding: 50px 35px;
}

.payment-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  position: relative;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
}

.payment-divider::before {
  top: 30px;
  bottom: calc(50% + 28px);
}

.payment-divider::after {
  top: calc(50% + 28px);
  bottom: 30px;
}

.payment-divider span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

@media (max-width: 768px) {
  .payment-options-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .payment-card {
    max-width: 100%;
    width: 100%;
  }

  .payment-divider {
    padding: 20px 0;
  }

  .payment-divider::before,
  .payment-divider::after {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
    height: 2px;
  }

  .payment-divider::before {
    top: 50%;
    bottom: auto;
    left: 20px;
    right: calc(50% + 28px);
    width: auto;
    height: 2px;
    transform: none;
  }

  .payment-divider::after {
    top: 50%;
    bottom: auto;
    left: calc(50% + 28px);
    right: 20px;
    width: auto;
    height: 2px;
    transform: none;
  }
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--heart-red));
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

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

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Service List Items */
.service-list {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.service-list li svg {
  color: var(--heart-red);
  flex-shrink: 0;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.why-choose-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--accent-coral);
  border-radius: 24px;
  z-index: -1;
}

.why-choose-content h2 {
  margin-bottom: 20px;
}

.why-choose-content > p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.why-choose-list {
  display: grid;
  gap: 20px;
}

.why-choose-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.why-choose-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.why-choose-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.why-choose-item h4 {
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.why-choose-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--heart-red));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

.step-card h4 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.step-card p {
  font-size: 0.9rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--accent-coral);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-coral);
}

.testimonial-author-info h5 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: #f39c12;
  margin-bottom: 20px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

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

.cta-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  justify-content: center;
}

/* ============================================
   About Page Styles
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent-rose) 100%);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-blue);
}

.breadcrumb span {
  color: var(--text-light);
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--heart-red));
}

.mission-card h3,
.vision-card h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mission-card h3 svg,
.vision-card h3 svg {
  color: var(--heart-red);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.value-card h4 {
  margin-bottom: 10px;
}

/* ============================================
   Services Page Styles
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--accent-coral);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-content h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-detail-content h3 svg {
  color: var(--heart-red);
}

.service-detail-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-feature svg {
  color: var(--heart-red);
  flex-shrink: 0;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  gap: 25px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--accent-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.contact-info-card p {
  margin: 0;
  font-size: 0.95rem;
}

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

.contact-info-card a:hover {
  color: var(--heart-red);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.contact-form-wrapper h3 {
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid var(--accent-coral);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Map */
.map-section {
  margin-top: 60px;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--primary-blue-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo-name {
  color: var(--white);
}

.footer-about p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

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

.footer-social a:hover {
  background: var(--heart-red);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--heart-red);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer-contact svg {
  color: var(--heart-red);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   Floating Buttons
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: #25D366;
}

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

/* ============================================
   Image Gallery Section
   ============================================ */
.gallery-section {
  padding: var(--section-padding) 0;
  background: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================
   Hero Background Video
   ============================================ */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.85) 0%, rgba(26, 58, 74, 0.75) 100%);
}

/* ============================================
   CTA Section with Background Image
   ============================================ */
.cta-section-img {
  background-image: url('../images/contact-consultation.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.92) 0%, rgba(26, 58, 74, 0.88) 100%);
}

/* ============================================
   About Page - Image Cards
   ============================================ */
.value-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  margin: -30px -30px 20px -30px;
  width: calc(100% + 60px);
}

.serve-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* ============================================
   Video Feature Section
   ============================================ */
.video-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-text h2 {
  margin-bottom: 20px;
}

.video-text p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ============================================
   Contact Page Image Panel
   ============================================ */
.contact-image-panel {
  grid-column: 1 / -1;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  position: relative;
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(26, 82, 118, 0.9) 0%, transparent 100%);
  color: var(--white);
}

.contact-image-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-image-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-it-works-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .how-it-works-steps::before {
    display: none;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 35px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-image-badge {
    left: 10px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-image-panel {
    height: 250px;
  }

  .why-choose-grid,
  .service-detail,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail:nth-child(even) {
    direction: ltr;
  }
  
  .why-choose-image::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }
  
  .header-top {
    display: none;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta .btn {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .how-it-works-steps {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 9999;
  padding: 100px 30px 30px;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-blue);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-blue);
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid var(--accent-coral);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--heart-red);
}

.mobile-nav-contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--accent-coral);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}