/* ============================================
   The IV Element Project - Modern CSS Stylesheet
   ============================================ */

:root {
    /* Color Palette */
    --primary: #4A7C59;
    --primary-dark: #3A6548;
    --primary-light: #6B9F7A;
    --secondary: #D4A574;
    --accent: #8B6F47;
    --text-dark: #2C3E2D;
    --text-light: #6B7C6D;
    --bg-light: #F8F9F8;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #4A7C59 0%, #6B9F7A 100%);
    --border-color: #E5E8E6;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.btn-primary-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary-nav::after {
    display: none;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A7C59 0%, #6B9F7A 50%, #D4A574 100%);
    color: white;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 45, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Sections */
.intro-section,
.services-overview,
.about-preview,
.elements-section,
.awards-section {
    padding: var(--section-padding);
}

.intro-section {
    background: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-link {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

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

/* About Preview */
.about-preview {
    background: white;
}

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

.highlight-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 7 Elements Grid */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.element-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.element-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.element-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.element-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-gradient);
    color: white;
    padding: var(--section-padding);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Page Header */
.page-header {
    background: var(--bg-gradient);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Page */
.about-main {
    padding: var(--section-padding);
}

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

.about-intro {
    margin-bottom: 4rem;
}

.credentials-section,
.story-section,
.approach-section,
.experience-section,
.mission-section {
    margin-bottom: 4rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}

.experience-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.experience-item {
    text-align: center;
}

.experience-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.specialties-list {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.specialties-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    list-style: disc;
    list-style-position: inside;
}

.mission-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.mission-attribution {
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

/* Services Page */
.services-main {
    padding: var(--section-padding);
}

.service-detail-section {
    margin-bottom: 4rem;
}

.alt-bg {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.service-features h4,
.service-conditions h4 {
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1rem;
}

.service-features li {
    margin-bottom: 0.75rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.conditions-grid span {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.service-link-p {
    margin-top: 2rem;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* IV Menu Page */
.iv-menu-main {
    padding: var(--section-padding);
}

.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.iv-drips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.iv-drip-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

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

.iv-drip-card.featured {
    border-top-color: var(--secondary);
    background: linear-gradient(to bottom, #FFF9F0, white);
}

.drip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.drip-tag {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.drip-tag.energy { background: #FFF4E6; color: #E67E22; }
.drip-tag.recovery { background: #E8F5E9; color: #2E7D32; }
.drip-tag.beauty { background: #FCE4EC; color: #C2185B; }
.drip-tag.performance { background: #E3F2FD; color: #1976D2; }
.drip-tag.immunity { background: #FFF3E0; color: #F57C00; }
.drip-tag.hydration { background: #E0F2F1; color: #00796B; }
.drip-tag.wellness { background: #F3E5F5; color: #7B1FA2; }
.drip-tag.signature { background: #FFE0B2; color: #E65100; }

.drip-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.drip-benefits h4,
.drip-addons h4 {
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.drip-benefits ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1rem;
}

.drip-benefits li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.addons-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.addon-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.addon-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.custom-iv-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.custom-iv-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.custom-iv-section .lead-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Vitamin Shots Page */
.vitamin-shots-main {
    padding: var(--section-padding);
}

.shots-section {
    margin-bottom: 4rem;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shot-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.shot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shot-tag {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.shot-tag.energy { background: #FFF4E6; color: #E67E22; }
.shot-tag.beauty { background: #FCE4EC; color: #C2185B; }
.shot-tag.metabolism { background: #E8F5E9; color: #2E7D32; }
.shot-tag.immunity { background: #FFF3E0; color: #F57C00; }
.shot-tag.detox { background: #E0F2F1; color: #00796B; }

.shot-benefits,
.shot-ingredients {
    margin-top: 1.5rem;
}

.shot-benefits h4,
.shot-ingredients h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.shots-benefits-section,
.frequency-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.frequency-list {
    list-style: disc;
    list-style-position: inside;
    margin-top: 1rem;
    margin-left: 1rem;
}

.frequency-list li {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-main {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-method.highlight {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F2 100%);
    border: 2px solid var(--primary);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.phone-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.text-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.keyword {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #F44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.field-error {
    color: #F44336;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.map-note {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
}

.contact-faq {
    padding: var(--section-padding);
}

.contact-faq h2 {
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

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

/* Skip to Content Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    font-weight: 600;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.3);
}

.sticky-cta svg {
    flex-shrink: 0;
}

/* Service Icons (SVG) */
.service-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating .star {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

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

.testimonials-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Testimonials Page */
.testimonials-page {
    padding: var(--section-padding);
}

.testimonials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.overall-rating {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars .star {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-text {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.testimonials-cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
    margin-top: 4rem;
}

.testimonials-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.testimonials-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom .footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .footer-links a:hover {
    color: white;
}

/* FAQ Page */
.faq-page {
    padding: var(--section-padding);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

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

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 4rem;
}

/* Form Improvements */
.form-messages {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-messages.show {
    display: block;
}

.form-messages.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 2px solid #4CAF50;
}

.form-messages.error {
    background: #FFEBEE;
    color: #C62828;
    border: 2px solid #F44336;
}

.button-loader {
    display: inline-block;
}

/* Award Icons (SVG) */
.award-icon svg {
    width: 48px;
    height: 48px;
    color: var(--secondary);
}

/* Legal Pages */
.legal-page {
    padding: var(--section-padding);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        gap: 2rem;
    }
    
    .services-grid,
    .elements-grid,
    .iv-drips-grid,
    .shots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .sticky-cta span {
        display: none;
    }
    
    .testimonials-carousel,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
