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

:root {
    --primary: #2d5c2a;
    --primary-light: #4a7c45;
    --secondary: #d4af37;
    --light: #f5f7f2;
    --dark: #333333;
    --text: #444444;
    --border: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    color: var(--text);
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

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

/* Header & Navigation - Fixed Height */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.4rem;
}

.logo-text h1 {
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.1;
}

.logo-text span {
    color: var(--secondary);
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--text);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
}

nav a:hover {
    color: var(--primary);
}

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

nav a:hover:after {
    width: 100%;
}

.book-now-btn {
    background-color: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
}

/* Image Slider - Fixed for Desktop Banner - HEIGHT INCREASED */
.slider-section {
    position: relative;
    height: 500px; /* Increased from 400px to 500px */
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Remove navigation buttons, keep only dots */
.slider-nav {
    display: none;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* Booking Form */
.booking-form-container {
    background-color: #f8f4e2;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 20px auto 0;
    position: relative;
    z-index: 5;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(45, 92, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-size: 14px;
}

.submit-btn {
    background-color: #2a8c2a;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: block;
    margin: 20px auto 0;
    width: 100%;
    max-width: 280px;
}

.submit-btn:hover {
    background-color: #1f6e1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(42, 140, 42, 0.2);
}

/* Professional Text Elements */
.professional-text {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Wellness Info Section */
.wellness-info-section {
    margin-top: 60px;
    padding: 30px 0;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-header h2 i {
    color: var(--secondary);
    font-size: 1.6rem;
}

.underline {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 8px auto 15px;
    border-radius: 2px;
}

.wellness-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.hindi-text, .english-text {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hindi-text p, .english-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.hindi-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Gallery Section - UPDATED TO REMOVE SIDE GAPS */
.gallery-section {
    margin-top: 60px;
    padding: 30px 0;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* REMOVED: padding: 0 20px; */
}

.gallery-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #555;
    padding: 0 20px; /* ADDED padding for text only */
}

/* ADDED: To ensure section header also has proper padding */
.gallery-section .section-header {
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer - UPDATED TO REMOVE SIDE GAPS */
footer {
    background-color: var(--primary);
    color: white;
    padding: 30px 0 15px;
    margin-top: auto;
}

footer .container {
    padding: 0; /* REMOVED: padding: 0 20px; */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    padding: 0 20px; /* ADDED padding for content only */
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

/* Phone and Email Link Styles */
.phone-link, .email-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.phone-link:hover, .email-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

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

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 15px 20px 0; /* UPDATED: Added horizontal padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.copyright p {
    margin-bottom: 5px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Floating WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slider-section {
        height: 400px; /* Increased from 350px to 400px */
        margin-top: 70px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    body {
        font-size: 13px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .form-group input, .form-group select {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    nav a {
        font-size: 13px;
    }
    
    .book-now-btn {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* WhatsApp responsive */
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-link {
        width: 65px;
        height: 65px;
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--shadow);
        padding: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        visibility: hidden;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav li {
        margin: 0 0 12px 0;
    }
    
    .slider-section {
        height: 350px; /* Increased from 300px to 350px */
        margin-top: 70px;
    }
    
    .booking-form-container {
        padding: 20px;
        margin-top: 15px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    body {
        font-size: 12px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input, .form-group select {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .submit-btn {
        font-size: 14px;
        padding: 12px 30px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .book-now-btn {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .professional-text {
        font-size: 12px;
    }
    
    .hindi-text p, .english-text p {
        font-size: 13px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    /* WhatsApp responsive */
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-link {
        width: 65px;
        height: 65px;
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .slider-section {
        height: 300px; /* Increased from 250px to 300px */
        margin-top: 70px;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .booking-form-container {
        padding: 15px;
        margin-top: 10px;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .wellness-text {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hindi-text, .english-text {
        padding: 15px;
    }
    
    body {
        font-size: 11px;
    }
    
    h1 {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .form-group input, .form-group select {
        font-size: 11px;
        padding: 7px 9px;
    }
    
    .submit-btn {
        font-size: 13px;
        padding: 10px 25px;
        max-width: 200px;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .logo-text p {
        font-size: 0.6rem;
    }
    
    nav a {
        font-size: 11px;
    }
    
    .book-now-btn {
        padding: 3px 10px;
        font-size: 10px;
    }
    
    .professional-text {
        font-size: 11px;
    }
    
    .hindi-text p, .english-text p {
        font-size: 12px;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .footer-column p, .footer-column a {
        font-size: 11px;
    }
    
    .copyright p {
        font-size: 10px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .gallery-description {
        font-size: 13px;
    }
    
    /* WhatsApp responsive */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 60px;
        height: 60px;
        font-size: 34px;
    }
}

@media (max-width: 400px) {
    .slider-section {
        height: 250px; /* Increased from 200px to 250px */
        margin-top: 70px;
    }
    
    body {
        font-size: 10px;
    }
    
    h1 {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 0.9rem;
    }
    
    .form-header h2 {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1rem;
    }
    
    .form-group input, .form-group select {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .submit-btn {
        font-size: 12px;
        padding: 8px 20px;
        max-width: 180px;
    }
    
    .logo-text h1 {
        font-size: 0.8rem;
    }
    
    .logo-icon {
        font-size: 1.2rem;
    }
    
    .booking-form-container {
        padding: 12px;
    }
    
    .wellness-content {
        padding: 0 12px;
    }
    
    .hindi-text, .english-text {
        padding: 12px;
    }
    
    .mobile-menu-btn {
        font-size: 1rem;
    }
    
    /* WhatsApp responsive */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
}