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

/* Success Notification Styles */
.success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    width: 90%;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.success-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-notification .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

.success-notification .success-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Abril Fatface', serif;
}

.success-notification .success-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.success-notification .success-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-notification .close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.success-notification .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

/* Overlay for success notification */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --soft-green: #E8F5E8;
    --primary-orange: #FF6F00;
    --light-orange: #FFB74D;
    --soft-orange: #FFF3E0;
    --primary-blue: #0288D1;
    --light-blue: #42A5F5;
    --soft-blue: #E3F2FD;
    --white: #FFFFFF;
    --cream: #F9FAFB;
    --light-cream: #FFFDE7;
    --light-gray: #FAFAFA;
    --medium-gray: #757575;
    --dark-gray: #212121;
    --text-dark: #212121;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.2s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

body {
    font-family: 'Bitter', 'Poppins', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Allow About section to break out of default container padding */
.about .container {
    padding-left: 0;
    padding-right: 0;
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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


.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 0.3rem;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: 0.2px;
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.nav-link:hover {
    color: var(--light-orange);
}

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

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

.nav-link.active {
    color: var(--light-orange);
    font-weight: 600;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-orange);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-green) 50%, var(--soft-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.brand-name {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.omgva-o {
    color: var(--primary-orange);
    animation: bounceIn 1s ease-out 0.2s both;
}

.omgva-m {
    color: var(--primary-orange);
    animation: bounceIn 1s ease-out 0.4s both;
}

.omgva-g {
    color: var(--primary-green);
    animation: bounceIn 1s ease-out 0.6s both;
}

.omgva-v {
    color: var(--primary-blue);
    animation: bounceIn 1s ease-out 0.8s both;
}

.omgva-a {
    color: var(--primary-blue);
    animation: bounceIn 1s ease-out 1s both;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 1.2s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title i {
    color: var(--primary-orange);
    font-size: 2.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle-hindi {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: italic;
    animation: fadeInUp 1s ease-out 1.3s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle-hindi i {
    color: var(--primary-green);
    font-size: 1.1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 1);
}

.service-item i {
    font-size: 1.2rem;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.service-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-info {
    animation: fadeInUp 1s ease-out 1.8s both;
}

/* Director Info Styles */
.director-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    animation: fadeInUp 1s ease-out 1.4s both;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.director-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-green);
}

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

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

.director-content {
    flex-grow: 1;
    text-align: left;
}

.director-title {
    font-family: 'Abril Fatface', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
}

.director-title::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.director-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.director-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-link:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.director-link i {
    transition: transform 0.3s ease;
}

.director-link:hover i {
    transform: translateX(3px);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.address {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.address i {
    color: var(--primary-green);
    font-size: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wellness-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.1), rgba(66, 165, 245, 0.1));
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-decoration {
    font-size: 1.5rem;
    opacity: 0.6;
    color: var(--primary-green);
    margin-top: var(--spacing-sm);
}

/* About Section */
.about {
    background: var(--white);
    animation: fadeIn 1s ease-out;
    padding: 0; /* full-bleed slider */
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Make About slider truly full width */
.about .about-content {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.about-text {
    width: 100%;
    text-align: center;
}

.about-text .section-header {
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.about-text .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text .section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Image Slider - full-bleed */
.about-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* force edge-to-edge */
.about, .about .container, .about-slider, .slides, .slide img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about .container {
    padding: 0;
    max-width: 100%;
}

.slides {
    position: relative;
    width: 100%;
    margin-top: 80px;
    height: calc(100vh - 80px); /* fill viewport minus fixed header */
    background: var(--light-gray);
    margin-left: 0;
    margin-right: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    margin-top: 80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.slider-controls { display: none !important; }

.prev-btn, .next-btn { display: none !important; }

.prev-btn:hover, .next-btn:hover { display: none !important; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #D2B48C;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 16px;
        width: 85%;
        padding: 0 7.5%;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 12px;
        width: 90%;
        padding: 0 5%;
    }
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D4AF37;
    border: 2px solid #B8860B;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-dots .dot:hover {
    background: #FFD700;
    border-color: #DAA520;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots .dot.active {
    background: #FFD700;
    border-color: #DAA520;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.4);
}

/* overlay content */
.about-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0,0,0,0.3) 100%);
}

.overlay-inner {
    margin-top: 0;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    animation: fadeInUp 0.8s ease both;
    padding: 1.5rem 2rem;
    border-radius: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    color: #d4af37;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.overlay-title {
    font-family: 'Abril Fatface', 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ffeb99;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.overlay-subtitle {
    font-family: 'Bitter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(0.9rem, 2.1vw, 1.2rem);
    font-weight: 500;
    opacity: 0.98;
    margin-bottom: 1.8rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
    color: #f6e7b0;
    line-height: 1.4;
}

.about-overlay .btn {
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    padding: 0.9rem 1.8rem;
    font-weight: 700;
    width: auto;
    min-width: 200px;
    height: auto;
    border-radius: 100px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.book-appointment-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2E1A47;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.book-appointment-btn i {
    font-size: 1.1rem;
    color: #FFD43B;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.book-appointment-btn:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

.book-appointment-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.book-appointment-btn:active i {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .slides { height: calc(100vh - 80px); }
}

@media (max-width: 768px) {
    .slides { 
        height: 85vh; 
        margin: 0;
    }
    
    .about-overlay {
        padding: 1rem;
    }
    
    .overlay-inner {
        padding: 1rem 1.5rem;
        max-width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 0.5rem;
    }
    
    .overlay-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
    }
    
    .about-overlay .btn {
        padding: 0.8rem 1.5rem;
        min-width: 180px;
        font-size: 0.9rem;
    }
    
    .book-appointment-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }
    
    .book-appointment-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slides { 
        height: 78vh; 
        margin: 0;
    }
    
    .about-overlay {
        padding: 0.8rem;
    }
    
    .overlay-inner {
        padding: 0.8rem 1rem;
        max-width: 98%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .overlay-title {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
        margin-bottom: 0.4rem;
        line-height: 1.1;
    }
    
    .overlay-subtitle {
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .about-overlay .btn {
        padding: 0.7rem 1.2rem;
        min-width: 160px;
        font-size: 0.8rem;
    }
    
    .book-appointment-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    .book-appointment-btn i {
        font-size: 0.9rem;
    }
    
    .prev-btn, .next-btn { width: 40px; height: 40px; }
}

@media (max-width: 400px) {
    .slides { 
        height: 100vh; 
        margin-top: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    
    .about {
        margin-top: 0;
        padding: 0;
    }
    
    .about .container {
        padding: 0;
        margin: 0;
    }
    
    .about-slider {
        height: 100vh;
        margin-top: 0;
    }
    
    .slide img {
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }
    
    .about-overlay {
        padding: 0.5rem;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .overlay-inner {
        padding: 0.5rem 0.7rem;
        max-width: 95%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-kicker {
        font-size: 0.6rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.1em;
    }
    
    .overlay-title {
        font-size: clamp(1rem, 8vw, 1.5rem);
        margin-bottom: 0.2rem;
        line-height: 1.1;
    }
    
    .overlay-subtitle {
        font-size: clamp(0.6rem, 3.5vw, 0.75rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .about-overlay .btn {
        padding: 0.5rem 0.8rem;
        min-width: 120px;
        font-size: 0.7rem;
        border-radius: 25px;
    }
    
    .book-appointment-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        margin-top: 0.8rem;
        border-radius: 25px;
    }
    
    .book-appointment-btn i {
        font-size: 0.8rem;
    }
    
    .slider-dots {
        width: calc(100% - 8px);
        bottom: 8px;
        z-index: 10;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .prev-btn, .next-btn { width: 30px; height: 30px; }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Navbar specific breakpoint */
@media (max-width: 950px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .brand-name {
        font-size: 3rem;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        justify-content: center;
    }

    .hero-subtitle-hindi {
        font-size: 1.1rem;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-item {
        justify-content: center;
    }

    .image-container {
        height: 350px;
        margin: 0 auto;
        max-width: 90%;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.5rem;
    }

    .about-content {
        padding: 0 1rem;
    }
    
    .director-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 1.2rem;
    }
    
    .director-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .director-title {
        font-size: 1.2rem;
    }
    
    .director-description {
        font-size: 0.9rem;
    }
    
    .director-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .about-text .section-header h2 {
        font-size: 2rem;
    }

    .about-text .section-header p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-title i {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle-hindi {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-services {
        gap: 0.6rem;
    }

    .service-item {
        padding: 0.6rem 0.8rem;
    }

    .service-item i {
        font-size: 1rem;
    }

    .service-item span {
        font-size: 0.8rem;
    }

    .image-container {
        height: 100%;
        margin: 0 auto;
        max-width: 95%;
        border-radius: 15px;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }

    .image-overlay {
        border-radius: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .image-container {
        height: 400px;
        max-width: 85%;
        margin: 0 auto;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 320px) {
    .image-container {
        height: 250px;
        max-width: 98%;
        border-radius: 12px;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1rem;
        width: 35px;
        height: 35px;
    }

    .image-overlay {
        border-radius: 12px;
    }
    
    .director-info {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .director-image {
        width: 80px;
        height: 80px;
    }
    
    .director-title {
        font-size: 1.1rem;
    }
    
    .director-description {
        font-size: 0.85rem;
    }
    
    .director-link {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

/* Appointment Modal */
.appointment-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
    padding: 1rem;
}

.appointment-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 900px;
    max-height: 95vh;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    position: relative;
}

.appointment-modal-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50, #66BB6A);
    color: var(--white);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.appointment-modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Abril Fatface', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.appointment-close {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    backdrop-filter: blur(10px);
}

.appointment-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.appointment-modal-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

#appointmentForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

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

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group input[required]:invalid,
.form-group select[required]:invalid {
    border-color: #e8e8e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-green);
    color: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    background: linear-gradient(90deg, transparent 0%, #fafafa 50%, transparent 100%);
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 140px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.form-actions .btn-secondary {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
}

.form-actions .btn-secondary:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

/* Responsive Design for Modal */
@media (max-width: 1024px) {
    .appointment-modal {
        padding: 0.5rem;
    }
    
    .appointment-modal-content {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .appointment-modal {
        padding: 0.25rem;
    }
    
    .appointment-modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: 98vh;
        border-radius: 16px;
    }
    
    .appointment-modal-header {
        padding: 1.5rem 2rem;
        border-radius: 16px 16px 0 0;
    }
    
    .appointment-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .appointment-modal-body {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .appointment-modal {
        padding: 0;
    }
    
    .appointment-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .appointment-modal-header {
        padding: 1.25rem 1.5rem;
        border-radius: 0;
    }
    
    .appointment-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .appointment-modal-body {
        padding: 1.5rem;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-actions {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 2px solid #f0f0f0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    #appointmentForm {
        gap: 1.5rem;
    }
}

/* Form Section Styling */
.form-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Required field indicator */
.form-group label[for*="fullName"],
.form-group label[for*="phone"],
.form-group label[for*="service"],
.form-group label[for*="preferredDate"],
.form-group label[for*="preferredTime"] {
    position: relative;
}

.form-group label[for*="fullName"]::after,
.form-group label[for*="phone"]::after,
.form-group label[for*="service"]::after,
.form-group label[for*="preferredDate"]::after,
.form-group label[for*="preferredTime"]::after {
    content: ' *';
    
    font-weight: 700;
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3) !important;
}

/* Form validation styles */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #4CAF50;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #e8e8e8;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===== Blogs Section ===== */
.blogs {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.blogs-content {
    margin-top: 3rem;
}

.blog-hero {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
}

.blog-hero-content {
    padding: 2rem 0;
}

.blog-hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.blog-hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.blog-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.wellness-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ffb84d, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.pillar-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-item:hover::before {
    transform: scaleX(1);
}

.pillar-item:hover::after {
    opacity: 1;
}

.pillar-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.pillar-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.2) rotate(15deg);
}

.pillar-item:hover .pillar-icon::before {
    opacity: 0.3;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon i {
    transform: scale(1.1);
}

.pillar-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Abril Fatface', serif;
    position: relative;
    line-height: 1.3;
}

.pillar-text::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, #ffb84d);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover .pillar-text::after {
    opacity: 1;
}

/* Blog Card Image Styles */
.pillar-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.pillar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(76, 175, 80, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover .pillar-overlay {
    opacity: 1;
}

.pillar-item:hover .pillar-img {
    transform: scale(1.1);
}

/* Blog Card Content Styles */
.pillar-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.pillar-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-cta {
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
        font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.read-more:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* ===== Guidance Section Styles ===== */
.guidance-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.guidance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guidance-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.guidance-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.guidance-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

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

.expert-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ffb84d, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.expert-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.8), rgba(255, 184, 77, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.expert-card:hover .expert-img {
    transform: scale(1.1);
}

.expert-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expert-icon i {
    font-size: 2rem;
    color: #ffa500;
}

.expert-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1.3;
}

.expert-specialty {
    color: #ffa500;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.expert-credentials {
    margin-top: auto;
}

.credential {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ffb84d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-hero-image {
    position: relative;
}

.wellness-retreat-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.blog-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(15deg);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-family: 'Abril Fatface', serif;
    position: relative;
    line-height: 1.3;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover h4::after {
    opacity: 1;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
}

.feature-card p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1;
}

.feature-card p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1;
}

/* Responsive Design for Blogs */
@media (max-width: 1024px) {
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-image {
        height: 180px;
    }
    
    .pillar-title {
        font-size: 1.2rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .pillar-content {
        padding: 1.2rem;
    }
    
    .pillar-image {
        height: 160px;
    }
    
    .pillar-title {
        font-size: 1.1rem;
    }
    
    .pillar-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .blogs {
        padding: 4rem 0;
    }
    
    .blog-hero {
        text-align: center;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-image {
        height: 180px;
    }
    
    .pillar-title {
        font-size: 1.2rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
    
    .guidance-title {
        font-size: 2.2rem;
    }
    
    .expert-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expert-content {
        padding: 1.5rem;
    }
    
    .expert-image {
        height: 220px;
    }
    
    .wellness-retreat-image {
        height: 300px;
    }
    
    .blog-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wellness-pillars {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-image {
        height: 200px;
    }
    
    .pillar-title {
        font-size: 1.3rem;
    }
    
    .pillar-description {
        font-size: 0.95rem;
    }
    
    .guidance-title {
        font-size: 2rem;
    }
    
    .guidance-subtitle {
        font-size: 1rem;
    }
    
    .expert-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expert-content {
        padding: 1.5rem;
    }
    
    .expert-image {
        height: 200px;
    }
    
    .expert-name {
        font-size: 1.2rem;
    }
    
    .expert-description {
        font-size: 0.9rem;
    }
    
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .wellness-retreat-image {
        height: 250px;
    }
}

/* ===== Blog Pages Styles ===== */
.blog-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
        font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--light-green);
}

.blog-breadcrumb span {
    color: #ccc;
}

.blog-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-title {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-green);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-content-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-article {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article h2 {
    font-family: 'Abril Fatface', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem;
    position: relative;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.blog-article h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-article h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.blog-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Dosha Cards */
.dosha-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dosha-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dosha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.dosha-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.dosha-icon.vata {
    background: linear-gradient(135deg, #42A5F5, #1E88E5);
}

.dosha-icon.pitta {
    background: linear-gradient(135deg, #FF7043, #F57C00);
}

.dosha-icon.kapha {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
}

/* Principle Cards */
.principle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.treatment-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.treatment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.principle-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.principle-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}


/* Lists */
.principle-list, .steps-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.principle-list li, .steps-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.principle-list li::before, .steps-list li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--soft-green), #f0f8f0);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-topics {
    list-style: none;
    padding: 0;
}

.related-topics li {
    margin-bottom: 0.75rem;
}

.related-topics a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-topics a:hover {
    background: var(--soft-green);
    color: var(--primary-green);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tip-item i {
    color: var(--primary-green);
    margin-top: 0.25rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive Design for Blog Pages */
@media (max-width: 768px) {
    .blog-hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .dosha-cards, .principle-cards, .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .principle-cards {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .principle-item i {
        align-self: center;
    }
}

/* ===== Footer Styles ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Abril Fatface', serif;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-green);
    border-color: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-column a i {
    width: 16px;
    text-align: center;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item span:first-child {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
}

.contact-item a:hover {
    color: var(--primary-green);
    transform: none;
}

/* Map Container Styles */
.map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.google-map {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

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

.footer-copyright p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .map-container {
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .google-map {
        height: 180px;
        border-radius: 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


*** Begin Patch *** Update File: /Users/divyanshsingh/Desktop/OmgvaWellNess/styles.css @@ html {
    scroll-behavior: smooth;
}

++

/* Floating WhatsApp Button */
+.whatsapp-float {
    +position: fixed;
    +right: 18px;
    +bottom: 18px;
    +width: 56px;
    +height: 56px;
    +border-radius: 50%;
    +background: #25D366;
    +color: #fff;
    +display: flex;
    +align-items: center;
    +justify-content: center;
    +box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    +z-index: 10050;
    +text-decoration: none;
    +transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    +
}

++.whatsapp-float i {
    +font-size: 28px;
    +
}

++.whatsapp-float:hover {
    +transform: translateY(-3px) scale(1.03);
    +box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    +background: #1ebe5d;
    +
}

++@media (max-width: 480px) {
    +.whatsapp-float {
        +right: 14px;
        +bottom: 14px;
        +width: 52px;
        +height: 52px;
        +
    }

    ++.whatsapp-float i {
        +font-size: 26px;
        +
    }

    +
}

*** End Patch-family: 'Abril Fatface',
serif;
}

.success-notification .success-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.success-notification .success-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-notification .close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.success-notification .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Overlay for success notification */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --soft-green: #E8F5E8;
    --primary-orange: #FF6F00;
    --light-orange: #FFB74D;
    --soft-orange: #FFF3E0;
    --primary-blue: #0288D1;
    --light-blue: #42A5F5;
    --soft-blue: #E3F2FD;
    --white: #FFFFFF;
    --cream: #F9FAFB;
    --light-cream: #FFFDE7;
    --light-gray: #FAFAFA;
    --medium-gray: #757575;
    --dark-gray: #212121;
    --text-dark: #212121;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.2s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

body {
    font-family: 'Bitter', 'Poppins', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Allow About section to break out of default container padding */
.about .container {
    padding-left: 0;
    padding-right: 0;
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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


.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 0.3rem;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: 0.2px;
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.nav-link:hover {
    color: var(--light-orange);
}

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

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

.nav-link.active {
    color: var(--light-orange);
    font-weight: 600;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-orange);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-green) 50%, var(--soft-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.brand-name {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.omgva-o {
    color: var(--primary-orange);
    animation: bounceIn 1s ease-out 0.2s both;
}

.omgva-m {
    color: var(--primary-orange);
    animation: bounceIn 1s ease-out 0.4s both;
}

.omgva-g {
    color: var(--primary-green);
    animation: bounceIn 1s ease-out 0.6s both;
}

.omgva-v {
    color: var(--primary-blue);
    animation: bounceIn 1s ease-out 0.8s both;
}

.omgva-a {
    color: var(--primary-blue);
    animation: bounceIn 1s ease-out 1s both;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 1.2s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title i {
    color: var(--primary-orange);
    font-size: 2.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle-hindi {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: italic;
    animation: fadeInUp 1s ease-out 1.3s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle-hindi i {
    color: var(--primary-green);
    font-size: 1.1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 1);
}

.service-item i {
    font-size: 1.2rem;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.service-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-info {
    animation: fadeInUp 1s ease-out 1.8s both;
}

/* Director Info Styles */
.director-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    animation: fadeInUp 1s ease-out 1.4s both;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.director-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-green);
}

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

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

.director-content {
    flex-grow: 1;
    text-align: left;
}

.director-title {
    font-family: 'Abril Fatface', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
}

.director-title::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.director-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.director-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-link:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.director-link i {
    transition: transform 0.3s ease;
}

.director-link:hover i {
    transform: translateX(3px);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.address {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.address i {
    color: var(--primary-green);
    font-size: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wellness-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.1), rgba(66, 165, 245, 0.1));
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-decoration {
    font-size: 1.5rem;
    opacity: 0.6;
    color: var(--primary-green);
    margin-top: var(--spacing-sm);
}

/* About Section */
.about {
    background: var(--white);
    animation: fadeIn 1s ease-out;
    padding: 0;
    /* full-bleed slider */
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Make About slider truly full width */
.about .about-content {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.about-text {
    width: 100%;
    text-align: center;
}

.about-text .section-header {
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.about-text .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text .section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Image Slider - full-bleed */
.about-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* force edge-to-edge */
.about,
.about .container,
.about-slider,
.slides,
.slide img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about .container {
    padding: 0;
    max-width: 100%;
}

.slides {
    position: relative;
    width: 100%;
    margin-top: 80px;
    height: calc(100vh - 80px);
    /* fill viewport minus fixed header */
    background: var(--light-gray);
    margin-left: 0;
    margin-right: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    margin-top: 80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.slider-controls {
    display: none !important;
}

.prev-btn,
.next-btn {
    display: none !important;
}

.prev-btn:hover,
.next-btn:hover {
    display: none !important;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #D2B48C;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 16px;
        width: 85%;
        padding: 0 7.5%;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 12px;
        width: 90%;
        padding: 0 5%;
    }
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D4AF37;
    border: 2px solid #B8860B;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-dots .dot:hover {
    background: #FFD700;
    border-color: #DAA520;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots .dot.active {
    background: #FFD700;
    border-color: #DAA520;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.4);
}

/* overlay content */
.about-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.3) 100%);
}

.overlay-inner {
    margin-top: 0;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    animation: fadeInUp 0.8s ease both;
    padding: 1.5rem 2rem;
    border-radius: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    color: #d4af37;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.overlay-title {
    font-family: 'Abril Fatface', 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ffeb99;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.overlay-subtitle {
    font-family: 'Bitter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(0.9rem, 2.1vw, 1.2rem);
    font-weight: 500;
    opacity: 0.98;
    margin-bottom: 1.8rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    color: #f6e7b0;
    line-height: 1.4;
}

.about-overlay .btn {
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    padding: 0.9rem 1.8rem;
    font-weight: 700;
    width: auto;
    min-width: 200px;
    height: auto;
    border-radius: 100px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.book-appointment-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2E1A47;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.book-appointment-btn i {
    font-size: 1.1rem;
    color: #FFD43B;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.book-appointment-btn:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

.book-appointment-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.book-appointment-btn:active i {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .slides {
        height: calc(100vh - 80px);
    }
}

@media (max-width: 768px) {
    .slides {
        height: 85vh;
        margin: 0;
    }

    .about-overlay {
        padding: 1rem;
    }

    .overlay-inner {
        padding: 1rem 1.5rem;
        max-width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .overlay-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 0.5rem;
    }

    .overlay-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
    }

    .about-overlay .btn {
        padding: 0.8rem 1.5rem;
        min-width: 180px;
        font-size: 0.9rem;
    }

    .book-appointment-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }

    .book-appointment-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slides {
        height: 78vh;
        margin: 0;
    }

    .about-overlay {
        padding: 0.8rem;
    }

    .overlay-inner {
        padding: 0.8rem 1rem;
        max-width: 98%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .overlay-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .overlay-title {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
        margin-bottom: 0.4rem;
        line-height: 1.1;
    }

    .overlay-subtitle {
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .about-overlay .btn {
        padding: 0.7rem 1.2rem;
        min-width: 160px;
        font-size: 0.8rem;
    }

    .book-appointment-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .book-appointment-btn i {
        font-size: 0.9rem;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .slides {
        height: 100vh;
        margin-top: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }

    .about {
        margin-top: 0;
        padding: 0;
    }

    .about .container {
        padding: 0;
        margin: 0;
    }

    .about-slider {
        height: 100vh;
        margin-top: 0;
    }

    .slide img {
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .about-overlay {
        padding: 0.5rem;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .overlay-inner {
        padding: 0.5rem 0.7rem;
        max-width: 95%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .overlay-kicker {
        font-size: 0.6rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.1em;
    }

    .overlay-title {
        font-size: clamp(1rem, 8vw, 1.5rem);
        margin-bottom: 0.2rem;
        line-height: 1.1;
    }

    .overlay-subtitle {
        font-size: clamp(0.6rem, 3.5vw, 0.75rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .about-overlay .btn {
        padding: 0.5rem 0.8rem;
        min-width: 120px;
        font-size: 0.7rem;
        border-radius: 25px;
    }

    .book-appointment-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        margin-top: 0.8rem;
        border-radius: 25px;
    }

    .book-appointment-btn i {
        font-size: 0.8rem;
    }

    .slider-dots {
        width: calc(100% - 8px);
        bottom: 8px;
        z-index: 10;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .prev-btn,
    .next-btn {
        width: 30px;
        height: 30px;
    }
}

/* Animations */
@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

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

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoBounce {

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Design */
/* Navbar specific breakpoint */
@media (max-width: 950px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .brand-name {
        font-size: 3rem;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        justify-content: center;
    }

    .hero-subtitle-hindi {
        font-size: 1.1rem;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-item {
        justify-content: center;
    }

    .image-container {
        height: 350px;
        margin: 0 auto;
        max-width: 90%;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.5rem;
    }

    .about-content {
        padding: 0 1rem;
    }

    .director-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 1.2rem;
    }

    .director-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .director-title {
        font-size: 1.2rem;
    }

    .director-description {
        font-size: 0.9rem;
    }

    .director-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .about-text .section-header h2 {
        font-size: 2rem;
    }

    .about-text .section-header p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-title i {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle-hindi {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-services {
        gap: 0.6rem;
    }

    .service-item {
        padding: 0.6rem 0.8rem;
    }

    .service-item i {
        font-size: 1rem;
    }

    .service-item span {
        font-size: 0.8rem;
    }

    .image-container {
        height: 100%;
        margin: 0 auto;
        max-width: 95%;
        border-radius: 15px;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }

    .image-overlay {
        border-radius: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .image-container {
        height: 400px;
        max-width: 85%;
        margin: 0 auto;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 320px) {
    .image-container {
        height: 250px;
        max-width: 98%;
        border-radius: 12px;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1rem;
        width: 35px;
        height: 35px;
    }

    .image-overlay {
        border-radius: 12px;
    }

    .director-info {
        margin: 1rem 0;
        padding: 1rem;
    }

    .director-image {
        width: 80px;
        height: 80px;
    }

    .director-title {
        font-size: 1.1rem;
    }

    .director-description {
        font-size: 0.85rem;
    }

    .director-link {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

/* Appointment Modal */
.appointment-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
    padding: 1rem;
}

.appointment-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 900px;
    max-height: 95vh;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    position: relative;
}

.appointment-modal-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50, #66BB6A);
    color: var(--white);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.appointment-modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Abril Fatface', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.appointment-close {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    backdrop-filter: blur(10px);
}

.appointment-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.appointment-modal-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

#appointmentForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

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

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group input[required]:invalid,
.form-group select[required]:invalid {
    border-color: #e8e8e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-green);
    color: var(--white);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    background: linear-gradient(90deg, transparent 0%, #fafafa 50%, transparent 100%);
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 140px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.form-actions .btn-secondary {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
}

.form-actions .btn-secondary:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

/* Responsive Design for Modal */
@media (max-width: 1024px) {
    .appointment-modal {
        padding: 0.5rem;
    }

    .appointment-modal-content {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .appointment-modal {
        padding: 0.25rem;
    }

    .appointment-modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: 98vh;
        border-radius: 16px;
    }

    .appointment-modal-header {
        padding: 1.5rem 2rem;
        border-radius: 16px 16px 0 0;
    }

    .appointment-modal-header h3 {
        font-size: 1.5rem;
    }

    .appointment-modal-body {
        padding: 2rem;
    }

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

    .form-actions {
        flex-direction: column;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .form-actions .btn {
        width: 100%;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .appointment-modal {
        padding: 0;
    }

    .appointment-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .appointment-modal-header {
        padding: 1.25rem 1.5rem;
        border-radius: 0;
    }

    .appointment-modal-header h3 {
        font-size: 1.3rem;
    }

    .appointment-modal-body {
        padding: 1.5rem;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .form-actions {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 2px solid #f0f0f0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    #appointmentForm {
        gap: 1.5rem;
    }
}

/* Form Section Styling */
.form-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Required field indicator */
.form-group label[for*="fullName"],
.form-group label[for*="phone"],
.form-group label[for*="service"],
.form-group label[for*="preferredDate"],
.form-group label[for*="preferredTime"] {
    position: relative;
}

.form-group label[for*="fullName"]::after,
.form-group label[for*="phone"]::after,
.form-group label[for*="service"]::after,
.form-group label[for*="preferredDate"]::after,
.form-group label[for*="preferredTime"]::after {
    content: ' *';

    font-weight: 700;
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3) !important;
}

/* Form validation styles */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #4CAF50;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #e8e8e8;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* ===== Blogs Section ===== */
.blogs {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.blogs-content {
    margin-top: 3rem;
}

.blog-hero {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
}

.blog-hero-content {
    padding: 2rem 0;
}

.blog-hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.blog-hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.blog-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.wellness-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ffb84d, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.pillar-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-item:hover::before {
    transform: scaleX(1);
}

.pillar-item:hover::after {
    opacity: 1;
}

.pillar-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.pillar-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.2) rotate(15deg);
}

.pillar-item:hover .pillar-icon::before {
    opacity: 0.3;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon i {
    transform: scale(1.1);
}

.pillar-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Abril Fatface', serif;
    position: relative;
    line-height: 1.3;
}

.pillar-text::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, #ffb84d);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover .pillar-text::after {
    opacity: 1;
}

/* Blog Card Image Styles */
.pillar-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.pillar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(76, 175, 80, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover .pillar-overlay {
    opacity: 1;
}

.pillar-item:hover .pillar-img {
    transform: scale(1.1);
}

/* Blog Card Content Styles */
.pillar-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.pillar-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-cta {
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.read-more:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* ===== Guidance Section Styles ===== */
.guidance-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.guidance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guidance-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.guidance-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.guidance-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

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

.expert-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ffb84d, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.expert-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.8), rgba(255, 184, 77, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.expert-card:hover .expert-img {
    transform: scale(1.1);
}

.expert-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expert-icon i {
    font-size: 2rem;
    color: #ffa500;
}

.expert-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1.3;
}

.expert-specialty {
    color: #ffa500;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.expert-credentials {
    margin-top: auto;
}

.credential {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ffb84d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-hero-image {
    position: relative;
}

.wellness-retreat-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.blog-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(15deg);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-family: 'Abril Fatface', serif;
    position: relative;
    line-height: 1.3;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover h4::after {
    opacity: 1;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
}

.feature-card p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1;
}

.feature-card p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1;
}

/* Responsive Design for Blogs */
@media (max-width: 1024px) {
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pillar-content {
        padding: 1.5rem;
    }

    .pillar-image {
        height: 180px;
    }

    .pillar-title {
        font-size: 1.2rem;
    }

    .pillar-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .pillar-content {
        padding: 1.2rem;
    }

    .pillar-image {
        height: 160px;
    }

    .pillar-title {
        font-size: 1.1rem;
    }

    .pillar-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .blogs {
        padding: 4rem 0;
    }

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

    .blog-hero-title {
        font-size: 2rem;
    }

    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .pillar-content {
        padding: 1.5rem;
    }

    .pillar-image {
        height: 180px;
    }

    .pillar-title {
        font-size: 1.2rem;
    }

    .pillar-description {
        font-size: 0.9rem;
    }

    .guidance-title {
        font-size: 2.2rem;
    }

    .expert-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .expert-content {
        padding: 1.5rem;
    }

    .expert-image {
        height: 220px;
    }

    .wellness-retreat-image {
        height: 300px;
    }

    .blog-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-card h4 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

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

    .pillar-content {
        padding: 1.5rem;
    }

    .pillar-image {
        height: 200px;
    }

    .pillar-title {
        font-size: 1.3rem;
    }

    .pillar-description {
        font-size: 0.95rem;
    }

    .guidance-title {
        font-size: 2rem;
    }

    .guidance-subtitle {
        font-size: 1rem;
    }

    .expert-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expert-content {
        padding: 1.5rem;
    }

    .expert-image {
        height: 200px;
    }

    .expert-name {
        font-size: 1.2rem;
    }

    .expert-description {
        font-size: 0.9rem;
    }

    .blog-hero-title {
        font-size: 1.8rem;
    }

    .wellness-retreat-image {
        height: 250px;
    }
}

/* ===== Blog Pages Styles ===== */
.blog-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--light-green);
}

.blog-breadcrumb span {
    color: #ccc;
}

.blog-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-title {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-green);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-content-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-article {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article h2 {
    font-family: 'Abril Fatface', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem;
    position: relative;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.blog-article h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-article h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.blog-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Dosha Cards */
.dosha-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dosha-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dosha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.dosha-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.dosha-icon.vata {
    background: linear-gradient(135deg, #42A5F5, #1E88E5);
}

.dosha-icon.pitta {
    background: linear-gradient(135deg, #FF7043, #F57C00);
}

.dosha-icon.kapha {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
}

/* Principle Cards */
.principle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.treatment-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.treatment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.principle-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.principle-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}


/* Lists */
.principle-list,
.steps-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.principle-list li,
.steps-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.principle-list li::before,
.steps-list li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--soft-green), #f0f8f0);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-topics {
    list-style: none;
    padding: 0;
}

.related-topics li {
    margin-bottom: 0.75rem;
}

.related-topics a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-topics a:hover {
    background: var(--soft-green);
    color: var(--primary-green);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tip-item i {
    color: var(--primary-green);
    margin-top: 0.25rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive Design for Blog Pages */
@media (max-width: 768px) {
    .blog-hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .blog-title {
        font-size: 2.2rem;
    }

    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
    }

    .dosha-cards,
    .principle-cards,
    .treatment-grid {
        grid-template-columns: 1fr;
    }

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

    .principle-cards {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        align-self: center;
    }

    .principle-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .principle-item i {
        align-self: center;
    }
}

/* ===== Footer Styles ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Abril Fatface', serif;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-green);
    border-color: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-column a i {
    width: 16px;
    text-align: center;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item span:first-child {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
}

.contact-item a:hover {
    color: var(--primary-green);
    transform: none;
}

/* Map Container Styles */
.map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.google-map {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

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

.footer-copyright p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 1.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .map-container {
        margin-top: 1rem;
        border-radius: 8px;
    }

    .google-map {
        height: 180px;
        border-radius: 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

*** Begin Patch
*** Update File: /Users/divyanshsingh/Desktop/OmgvaWellNess/styles.css
@@
 html {
     scroll-behavior: smooth;
 }
+
+/* Floating WhatsApp Button */
+.whatsapp-float {
+    position: fixed;
+    right: 18px;
+    bottom: 18px;
+    width: 56px;
+    height: 56px;
+    border-radius: 50%;
+    background: #25D366;
+    color: #fff;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
+    z-index: 10050;
+    text-decoration: none;
+    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
+}
+
+.whatsapp-float i {
+    font-size: 28px;
+}
+
+.whatsapp-float:hover {
+    transform: translateY(-3px) scale(1.03);
+    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
+    background: #1ebe5d;
+}
+
+@media (max-width: 480px) {
+    .whatsapp-float {
+        right: 14px;
+        bottom: 14px;
+        width: 52px;
+        height: 52px;
+    }
+
+    .whatsapp-float i {
+        font-size: 26px;
+    }
+}
*** End Patch-family: 'Abril Fatface', serif;
}

.success-notification .success-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.success-notification .success-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-notification .close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.success-notification .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

/* Overlay for success notification */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --soft-green: #E8F5E8;
    --primary-orange: #FF6F00;
    --light-orange: #FFB74D;
    --soft-orange: #FFF3E0;
    --primary-blue: #0288D1;
    --light-blue: #42A5F5;
    --soft-blue: #E3F2FD;
    --white: #FFFFFF;
    --cream: #F9FAFB;
    --light-cream: #FFFDE7;
    --light-gray: #FAFAFA;
    --medium-gray: #757575;
    --dark-gray: #212121;
    --text-dark: #212121;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.2s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

body {
    font-family: 'Bitter', 'Poppins', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Allow About section to break out of default container padding */
.about .container {
    padding-left: 0;
    padding-right: 0;
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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


.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 0.3rem;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: 0.2px;
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.nav-link:hover {
    color: var(--light-orange);
}

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

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

.nav-link.active {
    color: var(--light-orange);
    font-weight: 600;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-orange);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-green) 50%, var(--soft-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.brand-name {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.omgva-o {
    color: var(--primary-orange);
    animation: bounceIn 1s ease-out 0.2s both;
}

.omgva-m {
    color: var(--primary-orange);
    animation: bounceIn 1s ease-out 0.4s both;
}

.omgva-g {
    color: var(--primary-green);
    animation: bounceIn 1s ease-out 0.6s both;
}

.omgva-v {
    color: var(--primary-blue);
    animation: bounceIn 1s ease-out 0.8s both;
}

.omgva-a {
    color: var(--primary-blue);
    animation: bounceIn 1s ease-out 1s both;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 1.2s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title i {
    color: var(--primary-orange);
    font-size: 2.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle-hindi {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: italic;
    animation: fadeInUp 1s ease-out 1.3s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle-hindi i {
    color: var(--primary-green);
    font-size: 1.1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 1);
}

.service-item i {
    font-size: 1.2rem;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.service-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-info {
    animation: fadeInUp 1s ease-out 1.8s both;
}

/* Director Info Styles */
.director-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    animation: fadeInUp 1s ease-out 1.4s both;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.director-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-green);
}

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

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

.director-content {
    flex-grow: 1;
    text-align: left;
}

.director-title {
    font-family: 'Abril Fatface', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
}

.director-title::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.director-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.director-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-link:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.director-link i {
    transition: transform 0.3s ease;
}

.director-link:hover i {
    transform: translateX(3px);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.address {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.address i {
    color: var(--primary-green);
    font-size: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wellness-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.1), rgba(66, 165, 245, 0.1));
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-decoration {
    font-size: 1.5rem;
    opacity: 0.6;
    color: var(--primary-green);
    margin-top: var(--spacing-sm);
}

/* About Section */
.about {
    background: var(--white);
    animation: fadeIn 1s ease-out;
    padding: 0; /* full-bleed slider */
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Make About slider truly full width */
.about .about-content {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.about-text {
    width: 100%;
    text-align: center;
}

.about-text .section-header {
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.about-text .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text .section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Image Slider - full-bleed */
.about-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* force edge-to-edge */
.about, .about .container, .about-slider, .slides, .slide img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about .container {
    padding: 0;
    max-width: 100%;
}

.slides {
    position: relative;
    width: 100%;
    margin-top: 80px;
    height: calc(100vh - 80px); /* fill viewport minus fixed header */
    background: var(--light-gray);
    margin-left: 0;
    margin-right: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    margin-top: 80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.slider-controls { display: none !important; }

.prev-btn, .next-btn { display: none !important; }

.prev-btn:hover, .next-btn:hover { display: none !important; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #D2B48C;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 16px;
        width: 85%;
        padding: 0 7.5%;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 12px;
        width: 90%;
        padding: 0 5%;
    }
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D4AF37;
    border: 2px solid #B8860B;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-dots .dot:hover {
    background: #FFD700;
    border-color: #DAA520;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots .dot.active {
    background: #FFD700;
    border-color: #DAA520;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.4);
}

/* overlay content */
.about-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0,0,0,0.3) 100%);
}

.overlay-inner {
    margin-top: 0;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    animation: fadeInUp 0.8s ease both;
    padding: 1.5rem 2rem;
    border-radius: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    color: #d4af37;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.overlay-title {
    font-family: 'Abril Fatface', 'Montserrat', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ffeb99;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.overlay-subtitle {
    font-family: 'Bitter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(0.9rem, 2.1vw, 1.2rem);
    font-weight: 500;
    opacity: 0.98;
    margin-bottom: 1.8rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
    color: #f6e7b0;
    line-height: 1.4;
}

.about-overlay .btn {
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    padding: 0.9rem 1.8rem;
    font-weight: 700;
    width: auto;
    min-width: 200px;
    height: auto;
    border-radius: 100px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.book-appointment-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2E1A47;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.book-appointment-btn i {
    font-size: 1.1rem;
    color: #FFD43B;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.book-appointment-btn:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

.book-appointment-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.book-appointment-btn:active i {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .slides { height: calc(100vh - 80px); }
}

@media (max-width: 768px) {
    .slides { 
        height: 85vh; 
        margin: 0;
    }
    
    .about-overlay {
        padding: 1rem;
    }
    
    .overlay-inner {
        padding: 1rem 1.5rem;
        max-width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 0.5rem;
    }
    
    .overlay-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
    }
    
    .about-overlay .btn {
        padding: 0.8rem 1.5rem;
        min-width: 180px;
        font-size: 0.9rem;
    }
    
    .book-appointment-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }
    
    .book-appointment-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slides { 
        height: 78vh; 
        margin: 0;
    }
    
    .about-overlay {
        padding: 0.8rem;
    }
    
    .overlay-inner {
        padding: 0.8rem 1rem;
        max-width: 98%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .overlay-title {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
        margin-bottom: 0.4rem;
        line-height: 1.1;
    }
    
    .overlay-subtitle {
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .about-overlay .btn {
        padding: 0.7rem 1.2rem;
        min-width: 160px;
        font-size: 0.8rem;
    }
    
    .book-appointment-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    .book-appointment-btn i {
        font-size: 0.9rem;
    }
    
    .prev-btn, .next-btn { width: 40px; height: 40px; }
}

@media (max-width: 400px) {
    .slides { 
        height: 100vh; 
        margin-top: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    
    .about {
        margin-top: 0;
        padding: 0;
    }
    
    .about .container {
        padding: 0;
        margin: 0;
    }
    
    .about-slider {
        height: 100vh;
        margin-top: 0;
    }
    
    .slide img {
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }
    
    .about-overlay {
        padding: 0.5rem;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .overlay-inner {
        padding: 0.5rem 0.7rem;
        max-width: 95%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-kicker {
        font-size: 0.6rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.1em;
    }
    
    .overlay-title {
        font-size: clamp(1rem, 8vw, 1.5rem);
        margin-bottom: 0.2rem;
        line-height: 1.1;
    }
    
    .overlay-subtitle {
        font-size: clamp(0.6rem, 3.5vw, 0.75rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .about-overlay .btn {
        padding: 0.5rem 0.8rem;
        min-width: 120px;
        font-size: 0.7rem;
        border-radius: 25px;
    }
    
    .book-appointment-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        margin-top: 0.8rem;
        border-radius: 25px;
    }
    
    .book-appointment-btn i {
        font-size: 0.8rem;
    }
    
    .slider-dots {
        width: calc(100% - 8px);
        bottom: 8px;
        z-index: 10;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .prev-btn, .next-btn { width: 30px; height: 30px; }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Navbar specific breakpoint */
@media (max-width: 950px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .brand-name {
        font-size: 3rem;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        justify-content: center;
    }

    .hero-subtitle-hindi {
        font-size: 1.1rem;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-item {
        justify-content: center;
    }

    .image-container {
        height: 350px;
        margin: 0 auto;
        max-width: 90%;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.5rem;
    }

    .about-content {
        padding: 0 1rem;
    }
    
    .director-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 1.2rem;
    }
    
    .director-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .director-title {
        font-size: 1.2rem;
    }
    
    .director-description {
        font-size: 0.9rem;
    }
    
    .director-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .about-text .section-header h2 {
        font-size: 2rem;
    }

    .about-text .section-header p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-title i {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle-hindi {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-services {
        gap: 0.6rem;
    }

    .service-item {
        padding: 0.6rem 0.8rem;
    }

    .service-item i {
        font-size: 1rem;
    }

    .service-item span {
        font-size: 0.8rem;
    }

    .image-container {
        height: 100%;
        margin: 0 auto;
        max-width: 95%;
        border-radius: 15px;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }

    .image-overlay {
        border-radius: 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .image-container {
        height: 400px;
        max-width: 85%;
        margin: 0 auto;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 320px) {
    .image-container {
        height: 250px;
        max-width: 98%;
        border-radius: 12px;
    }

    .wellness-image {
        object-position: center;
    }

    .floating-icon {
        font-size: 1rem;
        width: 35px;
        height: 35px;
    }

    .image-overlay {
        border-radius: 12px;
    }
    
    .director-info {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .director-image {
        width: 80px;
        height: 80px;
    }
    
    .director-title {
        font-size: 1.1rem;
    }
    
    .director-description {
        font-size: 0.85rem;
    }
    
    .director-link {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

/* Appointment Modal */
.appointment-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
    padding: 1rem;
}

.appointment-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 900px;
    max-height: 95vh;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    position: relative;
}

.appointment-modal-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50, #66BB6A);
    color: var(--white);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.appointment-modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Abril Fatface', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.appointment-close {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    backdrop-filter: blur(10px);
}

.appointment-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.appointment-modal-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

#appointmentForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

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

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group input[required]:invalid,
.form-group select[required]:invalid {
    border-color: #e8e8e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-green);
    color: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    background: linear-gradient(90deg, transparent 0%, #fafafa 50%, transparent 100%);
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 140px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.form-actions .btn-secondary {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
}

.form-actions .btn-secondary:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

/* Responsive Design for Modal */
@media (max-width: 1024px) {
    .appointment-modal {
        padding: 0.5rem;
    }
    
    .appointment-modal-content {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .appointment-modal {
        padding: 0.25rem;
    }
    
    .appointment-modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: 98vh;
        border-radius: 16px;
    }
    
    .appointment-modal-header {
        padding: 1.5rem 2rem;
        border-radius: 16px 16px 0 0;
    }
    
    .appointment-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .appointment-modal-body {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .appointment-modal {
        padding: 0;
    }
    
    .appointment-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .appointment-modal-header {
        padding: 1.25rem 1.5rem;
        border-radius: 0;
    }
    
    .appointment-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .appointment-modal-body {
        padding: 1.5rem;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-actions {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 2px solid #f0f0f0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    #appointmentForm {
        gap: 1.5rem;
    }
}

/* Form Section Styling */
.form-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Required field indicator */
.form-group label[for*="fullName"],
.form-group label[for*="phone"],
.form-group label[for*="service"],
.form-group label[for*="preferredDate"],
.form-group label[for*="preferredTime"] {
    position: relative;
}

.form-group label[for*="fullName"]::after,
.form-group label[for*="phone"]::after,
.form-group label[for*="service"]::after,
.form-group label[for*="preferredDate"]::after,
.form-group label[for*="preferredTime"]::after {
    content: ' *';
    
    font-weight: 700;
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3) !important;
}

/* Form validation styles */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #4CAF50;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #e8e8e8;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===== Blogs Section ===== */
.blogs {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.blogs-content {
    margin-top: 3rem;
}

.blog-hero {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
}

.blog-hero-content {
    padding: 2rem 0;
}

.blog-hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.blog-hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.blog-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.wellness-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ffb84d, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.pillar-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-item:hover::before {
    transform: scaleX(1);
}

.pillar-item:hover::after {
    opacity: 1;
}

.pillar-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.pillar-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.2) rotate(15deg);
}

.pillar-item:hover .pillar-icon::before {
    opacity: 0.3;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon i {
    transform: scale(1.1);
}

.pillar-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Abril Fatface', serif;
    position: relative;
    line-height: 1.3;
}

.pillar-text::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, #ffb84d);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover .pillar-text::after {
    opacity: 1;
}

/* Blog Card Image Styles */
.pillar-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.pillar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(76, 175, 80, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover .pillar-overlay {
    opacity: 1;
}

.pillar-item:hover .pillar-img {
    transform: scale(1.1);
}

/* Blog Card Content Styles */
.pillar-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.pillar-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-cta {
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
        font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.read-more:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* ===== Guidance Section Styles ===== */
.guidance-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.guidance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guidance-title {
    font-family: 'Abril Fatface', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.guidance-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.guidance-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

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

.expert-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ffb84d, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.expert-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.8), rgba(255, 184, 77, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.expert-card:hover .expert-img {
    transform: scale(1.1);
}

.expert-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expert-icon i {
    font-size: 2rem;
    color: #ffa500;
}

.expert-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1.3;
}

.expert-specialty {
    color: #ffa500;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.expert-credentials {
    margin-top: auto;
}

.credential {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ffb84d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-hero-image {
    position: relative;
}

.wellness-retreat-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.blog-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(15deg);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-family: 'Abril Fatface', serif;
    position: relative;
    line-height: 1.3;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover h4::after {
    opacity: 1;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
}

.feature-card p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1;
}

.feature-card p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    font-family: 'Abril Fatface', serif;
    line-height: 1;
}

/* Responsive Design for Blogs */
@media (max-width: 1024px) {
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-image {
        height: 180px;
    }
    
    .pillar-title {
        font-size: 1.2rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .pillar-content {
        padding: 1.2rem;
    }
    
    .pillar-image {
        height: 160px;
    }
    
    .pillar-title {
        font-size: 1.1rem;
    }
    
    .pillar-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .blogs {
        padding: 4rem 0;
    }
    
    .blog-hero {
        text-align: center;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .wellness-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-image {
        height: 180px;
    }
    
    .pillar-title {
        font-size: 1.2rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
    
    .guidance-title {
        font-size: 2.2rem;
    }
    
    .expert-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expert-content {
        padding: 1.5rem;
    }
    
    .expert-image {
        height: 220px;
    }
    
    .wellness-retreat-image {
        height: 300px;
    }
    
    .blog-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wellness-pillars {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-image {
        height: 200px;
    }
    
    .pillar-title {
        font-size: 1.3rem;
    }
    
    .pillar-description {
        font-size: 0.95rem;
    }
    
    .guidance-title {
        font-size: 2rem;
    }
    
    .guidance-subtitle {
        font-size: 1rem;
    }
    
    .expert-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expert-content {
        padding: 1.5rem;
    }
    
    .expert-image {
        height: 200px;
    }
    
    .expert-name {
        font-size: 1.2rem;
    }
    
    .expert-description {
        font-size: 0.9rem;
    }
    
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .wellness-retreat-image {
        height: 250px;
    }
}

/* ===== Blog Pages Styles ===== */
.blog-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
        font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--light-green);
}

.blog-breadcrumb span {
    color: #ccc;
}

.blog-hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-title {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-green);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-content-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-article {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article h2 {
    font-family: 'Abril Fatface', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem;
    position: relative;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.blog-article h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-article h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.blog-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Dosha Cards */
.dosha-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dosha-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dosha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.dosha-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.dosha-icon.vata {
    background: linear-gradient(135deg, #42A5F5, #1E88E5);
}

.dosha-icon.pitta {
    background: linear-gradient(135deg, #FF7043, #F57C00);
}

.dosha-icon.kapha {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
}

/* Principle Cards */
.principle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.treatment-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.treatment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.principle-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.principle-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}


/* Lists */
.principle-list, .steps-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.principle-list li, .steps-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.principle-list li::before, .steps-list li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--soft-green), #f0f8f0);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-topics {
    list-style: none;
    padding: 0;
}

.related-topics li {
    margin-bottom: 0.75rem;
}

.related-topics a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-topics a:hover {
    background: var(--soft-green);
    color: var(--primary-green);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tip-item i {
    color: var(--primary-green);
    margin-top: 0.25rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive Design for Blog Pages */
@media (max-width: 768px) {
    .blog-hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .dosha-cards, .principle-cards, .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .principle-cards {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .principle-item i {
        align-self: center;
    }
}

/* ===== Footer Styles ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Abril Fatface', serif;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-green);
    border-color: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-column a i {
    width: 16px;
    text-align: center;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item span:first-child {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
}

.contact-item a:hover {
    color: var(--primary-green);
    transform: none;
}

/* Map Container Styles */
.map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.google-map {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

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

.footer-copyright p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .map-container {
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .google-map {
        height: 180px;
        border-radius: 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
    z-index: 10050;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
    background: #1ebe5d;
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
}
