:root {
    --bg-main: #ffffff;
    --bg-secondary: #f8fdf9;
    --text-primary: #0a0a0a;
    --text-secondary: #4a4a4a;
    --accent-color: #058c42;
    --accent-gradient: linear-gradient(135deg, #058c42 0%, #0d9f4f 100%);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(5, 140, 66, 0.1);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 56px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
}

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

/* === ANIMATIONS === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s var(--transition) forwards;
}

.animate-fade-in {
    animation: fadeIn 1s var(--transition) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.8s;
    opacity: 0;
}

.card-animate {
    transition: all 0.4s var(--transition);
}

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

/* === LAYOUT === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-full {
    height: 80px;
    width: auto;
    transition: transform 0.3s;
}

.logo-full:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 50px;
    background: white;
    padding: 12px 35px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.nav a {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

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

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

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(5, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 140, 66, 0.4);
}

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

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.4s;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-sm {
    padding: 12px 28px;
    font-size: 13px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 140, 66, 0.08) 0%, transparent 70%);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    animation: float 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite 4s;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 78px;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 45px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-img-wrapper {
    position: relative;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 10px solid white;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 32px;
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.badge-subtitle {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

/* === PAGE HERO === */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8fdf9 0%, #eef5e9 100%);
    text-align: center;
}

.page-title {
    font-size: 64px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
}

/* === SERVICES PREVIEW === */
.services-preview {
    background: white;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.service-preview-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafdfb 100%);
    padding: 50px 35px;
    border-radius: 25px;
    border: 2px solid rgba(5, 140, 66, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition);
    text-align: center;
}

.service-preview-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.service-preview-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.service-preview-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-preview-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
}

/* === WHY CHOOSE HOME === */
.why-choose-home {
    background: var(--bg-secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.benefits-list {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.why-choose-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.visual-card {
    background: white;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s;
}

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

.visual-card.card-2 {
    margin-top: 40px;
}

.visual-card h3 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.visual-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--accent-gradient);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline::before {
    background: white;
}

.cta-section .btn-outline:hover {
    color: var(--accent-color);
}

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

/* === PANCHKARMA SECTION === */
.panchkarma-intro {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    margin-bottom: 80px;
}

.intro-benefits {
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(5, 140, 66, 0.1);
}

.intro-benefits h4 {
    margin-bottom: 25px;
    color: var(--accent-color);
}

.benefits-checklist {
    list-style: none;
}

.benefits-checklist li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.benefits-checklist li:last-child {
    border-bottom: none;
}

.subsection-title {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.phase-card {
    background: white;
    border: 2px solid rgba(5, 140, 66, 0.1);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}

.phase-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.phase-number {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

.phase-content h4 {
    font-size: 32px;
    margin-bottom: 20px;
}

.phase-treatments {
    margin-top: 30px;
}

.treatment-item {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.treatment-item strong {
    color: var(--accent-color);
}

.five-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.action-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafdfb 100%);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(5, 140, 66, 0.08);
    transition: all 0.4s;
}

.action-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.action-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.action-card h5 {
    font-size: 24px;
    margin-bottom: 8px;
}

.action-subtitle {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.action-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.duration-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid rgba(5, 140, 66, 0.1);
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.duration-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.duration-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.duration-card h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* === SERVICE DETAIL CARD === */
.service-detail-card {
    background: white;
    border: 2px solid rgba(5, 140, 66, 0.1);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 48px;
}

.service-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.service-includes h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-includes li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* === ABOUT PAGE === */
.story-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
    align-items: start;
}

.story-stats {
    display: grid;
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(5, 140, 66, 0.1);
}

.stat-box h3 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.philosophy-quote-box {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.philosophy-quote-box blockquote {
    font-size: 28px;
    font-style: italic;
    color: var(--text-primary);
    padding: 40px;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-secondary);
    border-radius: 20px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(5, 140, 66, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.credential-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(5, 140, 66, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}

.credential-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.credential-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.credential-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(5, 140, 66, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

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

.form-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 15px;
    text-align: center;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #0f1210 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 40px;
    margin-top: 120px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.logo-full-footer {
    filter: invert(1) brightness(1.1);
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-column strong {
    color: white;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(5, 140, 66, 0.1) 0%, rgba(13, 159, 79, 0.05) 100%);
    border: 1px solid rgba(5, 140, 66, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
    padding: 16px 35px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 140, 66, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s;
}

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

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 44px;
    }

    .hero-title {
        font-size: 60px;
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .five-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid,
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .section {
        padding: 80px 0;
    }

    .hero .container,
    .why-choose-grid,
    .panchkarma-intro,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-img-wrapper {
        height: 400px;
    }

    .nav {
        display: none;
    }

    .services-preview-grid,
    .five-actions-grid,
    .duration-options,
    .philosophy-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .decor-leaf {
        display: none;
    }
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: whatsappRipple 2s ease-out infinite;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-button:hover .whatsapp-icon {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Tooltip CTA */
.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: white;
    color: #128C7E;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Animations */
@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}