/* ========================================
   Varsha's Ayurvedic Clinic - Stitch Design
   ======================================== */


/* CSS Variables - Matching Stitch Design System */

:root {
    /* Colors from Stitch Design */
    --color-primary-teal: #056256;
    --color-orange-accent: #fb8e28;
    --color-pure-white: #ffffff;
    --color-off-white: #fffffe;
    --color-sage-gray: #565555;
    --color-deep-earth: #000000;
    --color-light-gray: #f9f9f9;
    --color-medium-gray: #222222;
    --color-healing-light: #e8f5e8;
    --color-warm-light: #fff8e1;
    /* Semantic Tokens */
    --color-bg-primary: var(--color-light-gray);
    --color-bg-secondary: var(--color-pure-white);
    --color-bg-accent: var(--color-healing-light);
    --color-text-primary: var(--color-sage-gray);
    --color-text-secondary: var(--color-deep-earth);
    --color-text-on-primary: var(--color-pure-white);
    --color-text-on-accent: var(--color-deep-earth);
    --color-border: var(--color-light-gray);
    --color-shadow: rgba(0, 0, 0, 0.15);
    --color-btn-primary: var(--color-primary-teal);
    --color-btn-primary-hover: #084d42;
    --color-btn-secondary: var(--color-orange-accent);
    --color-btn-secondary-hover: #e07b1f;
    /* Typography */
    --font-headline: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-label: 'Public Sans', sans-serif;
    /* Spacing - 4px base grid */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 38px;
    --spacing-3xl: 100px;
    --spacing-4xl: 120px;
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0px 2px 6px 0px var(--color-shadow);
    --shadow-md: 0px 4px 12px 0px var(--color-shadow);
    --shadow-lg: 0px 8px 24px 0px var(--color-shadow);
    /* Transitions */
    --transition-base: 250ms ease;
}


/* Reset & Base */

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}


/* Container */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headline);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text-secondary);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}


/* Section Header */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-4xl);
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--color-primary-teal);
    color: var(--color-pure-white);
    border-radius: var(--radius-full);
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-sage-gray);
}


/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-primary-teal);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}

.navbar.contact-bar {
    background: var(--color-deep-earth);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Contact Info Bar */

.contact-info-bar {
    display: flex;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-pure-white);
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--color-pure-white);
}

.contact-icon {
    font-size: 1rem;
}


/* Main Navigation */

.nav-main {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-headline);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-pure-white);
}

.nav-logo .logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-pure-white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange-accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange-accent);
}

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

.nav-cta {
    display: inline-flex;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-pure-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}


/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-pure-white) 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary-teal);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-orange-accent);
    bottom: 10%;
    left: -150px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(5, 98, 86, 0.1) 0%, rgba(251, 142, 40, 0.1) 100%);
    border: 2px solid var(--color-primary-teal);
    border-radius: var(--radius-full);
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary-teal);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badge .badge-icon {
    font-size: 1.2em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-deep-earth);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary-teal) 0%, var(--color-orange-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-sage-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}


/* ========================================
   Stats Section
   ======================================== */

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary-teal);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-label);
    font-size: 0.875rem;
    color: var(--color-sage-gray);
    font-weight: 500;
}


/* Hero Image */

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--color-primary-teal) 0%, var(--color-orange-accent) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

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


/* ========================================
   Services Section
   ======================================== */

.services {
    padding: 120px 0;
    background: var(--color-bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    position: relative;
    background: var(--color-pure-white);
    border-radius: 20px;
    padding: 48px 32px;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.service-card.featured {
    border-color: var(--color-primary-teal);
    background: linear-gradient(135deg, rgba(5, 98, 86, 0.05) 0%, rgba(251, 142, 40, 0.05) 100%);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--color-primary-teal) 0%, var(--color-orange-accent) 100%);
    color: var(--color-pure-white);
    border-radius: var(--radius-full);
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--color-primary-teal);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-deep-earth);
}

.service-description {
    color: var(--color-sage-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-benefits {
    margin-bottom: 32px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--color-sage-gray);
    font-weight: 400;
}

.service-benefits li::before {
    content: '\2713';
    color: var(--color-primary-teal);
    font-weight: 700;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.service-duration {
    font-family: var(--font-label);
    font-weight: 500;
    color: var(--color-sage-gray);
}

.services-cta {
    text-align: center;
}


/* ========================================
   About Section
   ======================================== */

.about {
    padding: 120px 0;
    background: var(--color-pure-white);
}

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

.about-images {
    position: relative;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.img-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 320px;
    object-fit: cover;
    border: 4px solid var(--color-pure-white);
}

.img-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.img-deco-1 {
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-primary-teal);
    top: 20px;
    left: 20px;
}

.img-deco-2 {
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-orange-accent);
    bottom: 15px;
    right: 15px;
}

.about-badge-floating {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--color-primary-teal) 0%, var(--color-orange-accent) 100%);
    color: var(--color-pure-white);
    padding: 32px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: var(--color-sage-gray);
    margin-bottom: 32px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-features {
    margin: 48px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-orange-accent);
    color: var(--color-pure-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.feature-text {
    font-weight: 500;
    color: var(--color-deep-earth);
}


/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: 120px 0;
    background: var(--color-healing-light);
}

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

.testimonial-card {
    background: var(--color-pure-white);
    border-radius: 20px;
    padding: 48px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.testimonial-rating {
    font-size: 1.5rem;
    color: var(--color-orange-accent);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--color-sage-gray);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-teal);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-deep-earth);
    font-family: var(--font-headline);
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-sage-gray);
    font-family: var(--font-label);
}


/* ========================================
   CTA Section
   ======================================== */

.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary-teal) 0%, var(--color-deep-earth) 100%);
}

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

.cta-title {
    color: var(--color-pure-white);
    margin-bottom: 24px;
    font-size: 3rem;
    font-weight: 600;
}

.cta-title span {
    background: linear-gradient(135deg, var(--color-orange-accent) 0%, var(--color-pure-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

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


/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: 120px 0;
    background: var(--color-bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-badge {
    background: var(--color-orange-accent);
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--color-sage-gray);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--color-primary-teal);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-deep-earth);
}

.contact-item p {
    color: var(--color-sage-gray);
}

.contact-form-wrapper {
    background: var(--color-pure-white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-pure-white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-teal);
    box-shadow: 0 0 0 4px rgba(5, 98, 86, 0.1);
}

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


/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-label);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--color-btn-primary);
    color: var(--color-pure-white);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background: var(--color-orange-accent);
    color: var(--color-deep-earth);
    box-shadow: var(--shadow-sm);
}

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

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

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

.btn-white {
    background: var(--color-pure-white);
    color: var(--color-deep-earth);
    box-shadow: var(--shadow-sm);
}

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

.btn-full {
    width: 100%;
}


/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--color-deep-earth);
    padding: 100px 0 48px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-headline);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-pure-white);
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-pure-white);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary-teal);
    transform: translateY(-4px);
}

.footer-links h4 {
    color: var(--color-pure-white);
    font-size: 1.125rem;
    margin-bottom: 24px;
}

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

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

.footer-links a:hover {
    color: var(--color-primary-teal);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-form input {
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-pure-white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.newsletter-form .btn {
    width: 100%;
}

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

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

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-primary-teal);
}


/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image {
        order: -1;
    }
    .hero-img {
        height: 400px;
    }
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        padding-top: 100px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        gap: 24px;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .about-img {
        height: 350px;
    }
    .img-2 {
        display: none;
    }
    .about-badge-floating {
        left: 0;
        transform: translateY(-50%) scale(0.9);
    }
    .cta-buttons {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn-lg {
        width: 100%;
    }
    .service-card {
        padding: 32px 24px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-header {
        margin-bottom: 64px;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ========================================
   About Page Specific Styles
   ======================================== */

/* About Hero Section */
.hero-about {
    background: linear-gradient(180deg, var(--color-healing-light) 0%, var(--color-pure-white) 100%);
}

.hero-about .hero-title span {
    color: var(--color-primary-teal);
    background: none;
    -webkit-text-fill-color: inherit;
}

/* Mission Section */
.about-mission {
    padding: 120px 0;
    background: var(--color-pure-white);
}

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

.mission-text h2 .section-title {
    text-align: left;
}

.mission-values {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-item {
    padding: 32px;
    background: var(--color-healing-light);
    border-radius: var(--radius-lg);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-deep-earth);
}

.value-desc {
    color: var(--color-sage-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(5, 98, 86, 0.03) 0%, rgba(251, 142, 40, 0.03) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.mission-icon {
    width: 60px;
    height: 60px;
    color: var(--color-primary-teal);
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    margin: 0 auto;
}

.mission-number {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-deep-earth);
    line-height: 1.1;
}

.mission-label {
    font-family: var(--font-label);
    font-size: 0.875rem;
    color: var(--color-sage-gray);
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: var(--color-bg-primary);
}

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

.team-card {
    background: var(--color-pure-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 400ms ease;
}

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 0 32px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-pure-white);
    color: var(--color-deep-earth);
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin: 0 auto;
    transition: all var(--transition-base);
}

.team-btn:hover {
    background: var(--color-orange-accent);
    color: var(--color-deep-earth);
    transform: translateY(-2px);
}

.team-content {
    padding: 32px;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--color-deep-earth);
}

.team-credential {
    font-family: var(--font-label);
    font-size: 0.875rem;
    color: var(--color-primary-teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-description {
    color: var(--color-sage-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.team-spec {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-tag {
    padding: 6px 16px;
    background: var(--color-healing-light);
    color: var(--color-primary-teal);
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Values Section */
.values {
    padding: 120px 0;
    background: var(--color-bg-primary);
}

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

.value-card {
    background: var(--color-pure-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

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

.value-number {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(5, 98, 86, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.value-title {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--color-deep-earth);
}

.value-desc {
    color: var(--color-sage-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .mission-values {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-visual {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }
    .mission-card {
        flex-direction: row;
        padding: 16px;
    }
    .mission-number {
        font-size: 1.5rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mission-visual {
        flex-direction: column;
    }
}
