/* Main CSS for WellPharma Pharmacy - Static Site */
/* WordPress Forhers-Inspired Green Wellness Color Palette */
:root {
    /* Primary Green Palette - From WordPress */
    --primary-color: rgb(77, 123, 107); /* Forest Green - Trust & Health */
    --secondary-color: rgb(144, 173, 114); /* Sage Green - Vitality */
    --accent-color: rgb(154, 189, 177); /* Mint Green - Freshness */
    --success-color: rgb(114, 150, 147); /* Muted Teal - Wellness */
    
    /* Supporting Colors */
    --text-color: #2e2e2e; /* Dark Gray for readability */
    --text-light: #5a5a5a; /* Medium Gray */
    --light-bg: rgb(235, 243, 237); /* Very Light Green Background */
    --white: #ffffff;
    --border-color: rgb(154, 189, 177); /* Mint Green Border */
    
    /* WordPress Green Variations */
    --green-50: rgb(235, 243, 237); /* Background sections */
    --green-100: rgb(226, 236, 231); /* Hover states */
    --green-200: rgb(180, 205, 196); /* Buttons secondary */
    --green-300: rgb(154, 189, 177); /* Active states */
    --green-400: rgb(144, 173, 114); /* Primary buttons */
    --green-500: rgb(133, 149, 118); /* Main brand color - matching button */
    --green-600: rgb(121, 137, 106); /* Button hover - matching button */
    --green-700: rgb(102, 116, 82); /* Active/pressed */
    --green-800: rgb(77, 123, 107); /* Headers/emphasis */
    --green-900: rgb(70, 78, 61); /* Strong emphasis */
    
    /* Updated Gradient Variables - Matching olive-green CTA button colors from images */
    --gradient-primary: linear-gradient(92deg, rgb(133, 149, 118) 3.77%, rgb(149, 166, 131) 99.37%);
    --gradient-secondary: linear-gradient(35deg, rgb(121, 137, 106) -20.21%, rgb(149, 166, 131) 99.95%);
    --gradient-accent: linear-gradient(285deg, rgb(146, 217, 193) -2.74%, rgb(113, 189, 185) 37.36%, rgb(82, 143, 177) 65.94%);

    /* Legacy variables for compatibility */
    --primary-green: var(--green-800);
    --secondary-green: var(--green-600);
    --accent-green: var(--green-300);
    --light-green: var(--green-50);
    --text-dark: var(--text-color);
    --light-gray: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-out;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    /* Transitions - WordPress smooth animations */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    --transition-all: color 0.3s ease-out, background-color 0.3s ease-out, box-shadow 0.3s ease-out, transform 0.3s ease-out;
    
    /* Typography - WordPress Font Stack */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
/* Typography - WordPress Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--green-800);
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--green-600);
}

ul, ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

/* Stripe-Style Header Navigation - Mobile First */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

/* Mobile Navigation - Hidden by default */
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 0 0 12px 12px;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 999;
}

.nav-menu.active {
    display: block;
}

/* Navigation Items */
.nav-item {
    margin: 0;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    border-radius: 6px;
    margin: 0 0.75rem;
}

.nav-link:hover {
    background: var(--green-50);
    color: var(--green-800);
}

/* Dropdown Styling - Mobile */
.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
    color: var(--green-600);
}

.nav-item.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    padding: 0.5rem 0;
    margin-left: 1.5rem;
    border-left: 2px solid var(--green-100);
    background: transparent;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.nav-item.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-radius: 4px;
    margin: 0.125rem 0.5rem;
    background: white;
}

.dropdown-link:hover {
    background: var(--green-50);
    color: var(--green-700);
}

/* Coming Soon Badge */
.coming-soon-badge {
    font-size: 0.7rem;
    background: var(--green-200);
    color: var(--green-800);
    padding: 0.125rem 0.375rem;
    border-radius: 12px;
    font-weight: 500;
}

.dropdown-link.coming-soon {
    cursor: default;
}

.dropdown-link.coming-soon:hover {
    background: transparent;
    color: var(--text-light);
}

/* Hamburger Menu */
.hamburger {
    display: block;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: var(--primary-green);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
/* WordPress-Style CTA Buttons with Neon Hover Effects */
.btn, .cta-button-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--green-500);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    text-align: center;
    transition: var(--transition-all);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before, .cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease-out;
    z-index: -1;
}

.btn:hover::before, .cta-button-primary:hover::before {
    left: 0;
}

.btn:hover, .cta-button-primary:hover {
    border-color: var(--green-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--green-500);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    transition: var(--transition-all);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease-out;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

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

.btn-secondary, .cta-button-secondary {
    background: transparent;
    color: var(--green-600);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--green-400);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    transition: var(--transition-all);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before, .cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease-out;
    z-index: -1;
    opacity: 0.9;
}

.btn-secondary:hover::before, .cta-button-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover, .cta-button-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgb(77, 123, 107) 0%, rgb(144, 173, 114) 50%, rgb(154, 189, 177) 100%) !important;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 243, 237, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--green-900);
    font-weight: 700;
}

.hero-description, .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle-custom {
    font-size: 43px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.feature-icon {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta .btn {
    width: 100%;
    max-width: 300px;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Birth Control Section Image - Match Hero Dimensions */
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}

/* Service Cards */
.services-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-align: center;
    width: 100px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-green);
}

/* Scroll padding for service cards */
#hormone-kits-card,
#pharmacy-care-at-home-card {
    scroll-margin-top: 100px;
}

/* Action buttons (Refill/Transfer) - Blue gradient */
.service-link.action-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-link.action-btn:hover {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6), 0 0 40px rgba(74, 144, 226, 0.4);
}

/* Health service buttons (Immunizations/Testing) - Green gradient */
.service-link.health-btn,
.service-link.schedule-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-link.health-btn:hover,
.service-link.schedule-btn:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(120, 180, 89, 0.6), 0 0 40px rgba(120, 180, 89, 0.4);
}

/* External/Shop buttons (Hormone Kits) - Olive gradient */
.service-link.order-btn {
    background: linear-gradient(135deg, #8B956D, #6B7355);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-link.order-btn:hover {
    background: linear-gradient(135deg, #6B7355, #8B956D);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(139, 149, 109, 0.6), 0 0 40px rgba(139, 149, 109, 0.4);
}

/* Blog Section with Slider */
.blog-slider-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #2d5016;
    line-height: 1.1;
    margin: 0;
}

/* Slider Container */
.blog-slider-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.blog-slider-container {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.blog-slider-track {
    display: flex;
    gap: 24px;
    animation: slideLeft 50s linear infinite;
    will-change: transform;
}

.blog-slider-track:hover {
    animation-play-state: paused;
}

/* Blog Cards */
.blog-card {
    flex: 0 0 480px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.blog-card-overlay h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: white;
}

/* Explore Button */
.blog-explore-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    color: #2d5016;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-explore-btn:hover {
    background: #7fc8a9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.blog-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #a7d8c3;
    color: #5a8a73;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-slider-arrow:hover {
    background: #7fc8a9;
    color: white;
    border-color: #7fc8a9;
    transform: translateY(-50%) scale(1.1);
}

.blog-slider-prev {
    left: 20px;
}

.blog-slider-next {
    right: 20px;
}

/* Category Pills */
.blog-categories {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-pill {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.category-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Category Colors */
.category-compounding {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-birth-control {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-weight-loss {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-vaccines {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-hormonal-imbalance {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-diabetes-prevention {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-hormone-testing {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* New category pills using same gradient colors */
.category-bmi {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-bp-monitor {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-pill-id {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-med-review {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-risk-test {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.category-pill:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: popGrow 0.3s ease-out;
}

@keyframes popGrow {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.08);
    }
    100% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-504px * 4));
    }
}

/* About Section */
.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--light-bg);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-feature h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* About Text Section */
.about-text {
    flex: 1;
}

/* Pharmacist Section Styles */
.about-pharmacist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.pharmacist-image {
    flex-shrink: 0;
}

.pharmacist-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: 6px solid var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.pharmacist-info h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.pharmacist-info .pharmacist-title {
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .about-pharmacist {
        width: 100%;
        position: static;
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .pharmacist-image img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .about-pharmacist {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pharmacist-image img {
        width: 140px;
        height: 140px;
    }
}

/* Birth Control Section Layout - Image Left, Text Right */
.birth-control-section .section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.birth-control-section .content-left {
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1;
    order: 2;
}

.birth-control-section .content-right {
    flex: 1;
    order: 1;
}

/* Birth Control Bottom Section */
.birth-control-bottom {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.birth-control-bottom .bottom-left {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.birth-control-bottom .bottom-left h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.birth-control-bottom .bottom-left ul,
.birth-control-bottom .bottom-left ol {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.birth-control-bottom .bottom-left ul li,
.birth-control-bottom .bottom-left ol li {
    margin: 0.8rem 0;
}

.birth-control-bottom .bottom-spacer {
    flex: 1;
}

@media (max-width: 768px) {
    .birth-control-section .section-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .birth-control-section .content-left,
    .birth-control-section .content-right {
        order: unset;
    }
    
    .birth-control-bottom {
        flex-direction: column;
        gap: 2rem;
    }
    
    .birth-control-bottom .bottom-spacer {
        display: none;
    }
}

.birth-control-section .content-left h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.birth-control-section .content-left ul,
.birth-control-section .content-left ol {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.birth-control-section .content-left ul li,
.birth-control-section .content-left ol li {
    margin: 0.8rem 0;
}

/* Birth Control Options Section */
.birth-control-options {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.birth-control-options h3 {
    color: var(--green-800);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.options-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.options-list li:last-child {
    border-bottom: none;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.how-it-works h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

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

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .birth-control-options,
    .how-it-works {
        padding: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Contact Section */
/* Contact Section - Matching WordPress Design */
.contact-section {
    padding: 4rem 0;
    background: rgb(235, 243, 237); /* Light green background from WordPress */
}

.contact-section h2 {
    text-align: center;
    color: rgb(70, 78, 61); /* Dark green from WordPress --green-900 */
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* WordPress layout: left 1fr, right 2fr */
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    color: rgb(77, 123, 107); /* WordPress --green-800 */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-card li {
    padding: 0.5rem 0;
    color: rgb(90, 90, 90); /* WordPress --text-light */
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-card strong {
    color: rgb(46, 46, 46); /* WordPress --text-color */
}

.contact-card a {
    color: rgb(114, 150, 147); /* WordPress --green-600 */
    font-weight: 500;
    text-decoration: none;
}

.contact-card a:hover {
    color: rgb(77, 123, 107); /* WordPress --green-800 */
    text-decoration: underline;
}

.contact-card em {
    font-style: italic;
    color: rgb(90, 90, 90);
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: rgb(77, 123, 107); /* WordPress --green-800 */
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgb(46, 46, 46); /* WordPress --text-color */
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgb(154, 189, 177); /* WordPress --border-color */
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease-out;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgb(123, 158, 146); /* WordPress --green-500 */
    outline: none;
}

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

.contact-form .btn-primary {
    background: rgb(144, 173, 114); /* WordPress --secondary-color */
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.contact-form .btn-primary:hover {
    background: rgb(77, 123, 107); /* WordPress --primary-color */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--accent-green);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-dark);
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: white;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 300px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    scroll-snap-align: start;
}

.testimonial .stars {
    color: gold;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    font-style: italic;
    margin: 1rem 0;
    color: var(--text-dark);
}

.testimonial cite {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2d5016; /* Dark forest green matching WordPress footer */
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* All Footer Text - Consistent White Color */
.footer-section h3,
.footer-section p,
.footer-section li,
.footer-contact p {
    color: white;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a,
.footer-contact a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover,
.footer-contact a:hover {
    color: rgba(255,255,255,0.8);
}

/* Footer Social Media */
.footer-social {
    margin-top: 1.5rem;
}

.footer-social h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--green-400);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
    color: white;
}

.footer-bottom a:hover {
    color: rgba(255,255,255,0.8);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-top: 1rem;
}

.legal-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    /* Desktop Stripe-Style Navigation */
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        margin: 0;
        border-radius: 6px;
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--text-color);
        background: transparent;
    }
    
    .nav-link:hover {
        background: var(--green-50);
        color: var(--green-800);
    }
    
    /* Desktop Dropdown Menus */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.05);
        padding: 0.75rem 0;
        margin: 0;
        margin-top: 0.5rem;
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition-fast);
        z-index: 1000;
    }
    
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-link {
        padding: 0.625rem 1rem;
        margin: 0;
        color: var(--text-light);
        background: transparent;
        border-radius: 4px;
        font-size: 0.875rem;
        font-weight: 400;
    }
    
    .dropdown-link:hover {
        background: var(--green-50);
        color: var(--green-700);
    }
    
    /* Desktop Dropdown Arrow */
    .dropdown-arrow {
        font-size: 0.7rem;
        margin-left: 0.5rem;
        transition: transform var(--transition-fast);
    }
    
    .nav-item.dropdown:hover .dropdown-arrow,
    .nav-item.dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .hamburger {
        display: none;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    /* Desktop Birth Control Section Layout - Alternate from Hero */
    .section-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .content-left {
        flex: 1;
        order: 2;
    }
    
    .content-right {
        flex: 1;
        order: 1;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-cta .btn {
        width: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    /* Blog Slider Responsive */
    .blog-card {
        flex: 0 0 400px;
    }
    
    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-424px * 4));
        }
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .blog-header h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    /* WordPress Responsive Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle-custom {
        font-size: 28px;
    }

    .hero-description, .hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-card {
        flex: 0 0 280px;
    }
    
    .blog-card-image {
        height: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .blog-card-overlay h3 {
        font-size: 1.2rem;
    }
    
    .blog-explore-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
        bottom: 12px;
        right: 12px;
    }
    
    .blog-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .category-pill {
        min-width: 180px;
        padding: 20px 30px;
    }
    
    /* Top row: 2 buttons side by side */
    .category-pill:nth-child(1) { grid-column: 1; grid-row: 1; }
    .category-pill:nth-child(2) { grid-column: 2; grid-row: 1; }
    
    /* Middle row: 1 button centered */
    .category-pill:nth-child(3) { 
        grid-column: 1 / -1; 
        grid-row: 2; 
        max-width: 220px;
        margin: 0 auto;
    }
    
    /* Bottom row: 2 buttons side by side */
    .category-pill:nth-child(4) { grid-column: 1; grid-row: 3; }
    .category-pill:nth-child(5) { grid-column: 2; grid-row: 3; }
    
    /* Mobile-specific animations */
    .category-pill:active {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        animation: popGrow 0.3s ease-out;
    }
    
    /* Ensure smooth transitions on mobile */
    .category-pill {
        transition: all 0.3s ease-out;
        -webkit-tap-highlight-color: transparent;
    }
    
    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-304px * 4));
        }
    }
}