/* CSS Variables - SheCare Brand Colors */
:root {
    --bg-beige: #f9f6f1;
    --primary-coral: #FF5C8D;
    --secondary-purple: #9B5DE5;
    --accent-teal: #00C2A8;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-600: #6b7280;
    --gray-800: #1f2937;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--bg-beige);
    overflow-x: hidden;
}

/* Typography */
.heading-font {
    font-weight: 700;
    line-height: 1.2;
}

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


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


/* Base nav styles */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Logo */
  .logo img {
    height: 60px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.05);
  }
  
  /* Desktop menu */
  .main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav ul li a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  /* Fancy hover underline */
  .main-nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-teal);
    transition: width 0.3s ease;
  }
  
  .main-nav ul li a:hover {
    color: var(--accent-teal);
  }
  
  .main-nav ul li a:hover::after {
    width: 100%;
  }
  
  /* Mobile menu button */
  .mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
  }
  
  .mobile-menu-btn:hover {
    transform: scale(1.1);
  }

/* Mobile button (hidden on desktop) */
.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 50%;
    max-width: 200px;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    padding: 2rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }

  .main-nav.open {
    right: 0;
  }
}



/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.grid {
    display: grid;
    gap: 3rem;
}

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

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .section { padding: 6rem 0; }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 92, 141, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--accent-teal);
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 0.8s ease-out forwards;
}

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

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section-specific Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.whatsapp-section {
    background: var(--secondary-purple);
    color: var(--white);
}

.mission-section {
    background: var(--accent-teal);
    color: var(--white);
}

/* TESTIMONIALS SECTION FIX */
.testimonials-section {
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem 1rem;
  overflow-x: hidden; /* prevent horizontal scrolling */
}

/* CONTAINER FLEXIBLE GRID */
/*         .testimonials-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
} */

@media (min-width: 768px) {
    .testimonials-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* INDIVIDUAL CARD */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;        /* responsive width */
  max-width: 100%;    /* force fit in mobile */
  word-wrap: break-word; /* avoid long text breaking layout */
  box-sizing: border-box;
}



/* Feature Icons */
.feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 92, 141, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-coral);
}

/* Step Cards */
.steps-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-item {
    background: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: none;
    text-align: left;
    font-weight: 1000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-coral);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 92, 141, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary-coral); }
.text-gray { color: var(--gray-600); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }
.rounded { border-radius: 0.5rem; }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }