/* ==========================================
   Kottakkal Ayurveda - Pain Management CSS
   ========================================== */

:root {
    --primary-color: #336034;
    --primary-dark: #064e45;
    --secondary-color: #97bc62;
    --text-dark: #0b1220;
    --text-muted: #6b7280;
    --bg-light: #f8fafb;
    --white: #ffffff;
    --shadow: 0 6px 22px rgba(8, 15, 20, 0.06);
    --shadow-lg: 0 10px 40px rgba(8, 15, 20, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mt-10{
    margin-top:10px;
}
.mb-30{
    margin-bottom: 30px;
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ==========================================
   Floating Insurance Banner
   ========================================== */
.floating-insurance-banner {
    position: fixed;
    bottom: 180px;
    right: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 251, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-width: 280px;
    border: 2px solid var(--primary-color);
    animation: slideInRight 0.5s ease-out;
}

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

.insurance-banner-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.insurance-banner-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.insurance-banner-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insurance-banner-content h5 i {
    font-size: 18px;
}

.insurance-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dark);
    padding: 6px 10px;
    background: rgba(51, 96, 52, 0.05);
    border-radius: 6px;
    font-weight: 600;
}

.insurance-item i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp i {
        font-size: 28px;
    }
    
    .floating-insurance-banner {
        bottom: 140px;
        right: 20px;
        max-width: 240px;
        padding: 12px 15px;
    }
    
    .insurance-banner-content h5 {
        font-size: 13px;
    }
    
    .insurance-item {
        font-size: 11px;
    }
}

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

.navbar {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.25rem;
    padding: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(15, 118, 110, 0.05));
    padding: 6px;
}

.brand-name {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.btn-cta{
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 8px;
    margin-left: 1rem;
}

.heal-cta.btn-cta{
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
}
.book-cta.btn-cta{
    color: var(--primary-color) !important;
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--primary-color)
}
.book-cta.btn-cta:hover{
    color: var(--white) !important;
    background: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.btn-cta:hover,.heal-cta.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

.hero-section {
    padding: 6rem 0;
    /* background: linear-gradient(135deg, #f8fafb 0%, #e8f5f4 100%); */
    /* background:linear-gradient(#0000008f, #0000008f), url('images/banner-image.jpg'); */
    background: linear-gradient(#6a6a6a8f, #1817178f), url(images/banner-image.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.badge-pill {
    display: inline-block;
    background: linear-gradient(135deg, #f0fffb, #e0fff7);
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.hero-subtitle span{
    color: var(--primary-dark);
    padding: 0.5px 6px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-buttons .btn.btn-hero-outline{
    border:1px solid #ffffff;
    background:transparent;
    color: #ffffff;
}
.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    background: #ffffff;
    color: #336034;
}

.hero-buttons .btn.btn-hero-outline:hover{
    border:1px solid #97bc62;
}
.hero-buttons .btn:hover{
    background: #97bc62;
    color: #ffffff;
}
.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 0.3rem 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Section Styles
   ========================================== */

section {
    padding: 6rem 0;
}

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

.bg-light {
    background-color: var(--bg-light) !important;
}

/* ==========================================
   Why Choose Section
   ========================================== */

.why-choose-section {
    background: var(--white);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

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

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(15, 118, 110, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   Conditions Section
   ========================================== */
.conditions-section {
    padding: 4rem 0;
    background:linear-gradient(#0000008f, #0000008f), url('images/22594.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.conditions-section h2{
    color: var(--bg-light);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.conditions-section {
    padding: 60px 20px;
    margin: 0 auto;
    position: relative;
    background-image: url('./images/banner-image3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* Overlay effect */
.conditions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); 
    z-index: 0;
}
/* Bring all content above overlay */
.conditions-section .container {
    position: relative;
    z-index: 1;
}

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

.section-header h1 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.condition-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.condition-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.condition-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.condition-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.condition-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.condition-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.35) 0%, rgba(74, 128, 112, 0.5) 100%);
    z-index: 0;
}


.condition-icon {
    font-size: 80px;
    color: white;
    z-index: 2;
    position: relative;
}

.condition-content {
    padding: 25px;
}

.condition-title {
    font-size: 1.4rem;
    color: #2c5f4f;
    margin-bottom: 12px;
    font-weight: 600;
}

.condition-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more {
    display: inline-block;
    color: #2c5f4f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #4a8070;
}

.learn-more::after {
    content: ' →';
}

/* Responsive Design */
@media (max-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }

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

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .condition-image {
        height: 200px;
    }

    .conditions-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.75rem;
    }

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

    .condition-content {
        padding: 20px;
    }
}

/* ==========================================
   Treatment Section
   ========================================== */

.treatment-section {
    background: var(--white);
}

.step-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

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

.step-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   Benefits Section
   ========================================== */

.benefits-section img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}
/* ==========================================
   Testimonials Video Carousel Section
   ========================================== */

.testimonials-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); */
    color: var(--white);
    padding: 5rem 0;
}

#testimonialsCarousel {
    max-width: 100%;
    margin: 0 auto;
}

.video-testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: var(--transition);
}

.video-testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.video-wrapper-full {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
    margin-bottom: 1rem;
    aspect-ratio: 1 / 1;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--border-radius);
    object-fit:contain;
    object-position: center top;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    opacity: 1;
    z-index: 10;
}

.video-wrapper-full:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-overlay i {
    font-size: 4rem;
    color: var(--white);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.video-wrapper-full:hover .video-overlay i {
    transform: scale(1.15);
    color: var(--secondary-color);
}

/* Hide overlay when video is playing */
.video-playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-caption {
    text-align: center;
    padding: 0.75rem 0;
}

.video-caption strong {
    display: block;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-caption small {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
    top: 40%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: -2.5rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 8px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--secondary-color);
    width: 40px;
    border-radius: 6px;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Carousel Item Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Desktop: Show 3 videos */
@media (min-width: 992px) {
    .carousel-inner .row {
        display: flex;
        align-items: stretch;
    }
}

/* Tablet: Show 2 videos per slide on medium screens */
@media (max-width: 991.98px) and (min-width: 768px) {
    /* Hide third video on tablet */
    .carousel-item .col-lg-4:nth-child(3) {
        display: none;
    }
    
    .video-overlay i {
        font-size: 3.5rem;
    }
}

/* Mobile: Show 1 video per slide */
@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    /* Hide second and third videos on mobile */
    .carousel-item .col-lg-4:nth-child(2),
    .carousel-item .col-lg-4:nth-child(3) {
        display: none;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        top: 35%;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
    
    .video-overlay i {
        font-size: 3rem;
    }
    
    .video-testimonial-box {
        padding: 1rem;
    }
    
    .video-caption strong {
        font-size: 1rem;
    }
    
    .video-caption small {
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
        margin-bottom: -2rem;
    }
}

@media (max-width: 575.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .video-overlay i {
        font-size: 2.5rem;
    }
}

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

/* .testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
} */

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author small {
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-section {
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e6eef0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

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

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
}
.btn-primary:active{
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
}

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

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

.footer-section strong {
    color: var(--white);
} */

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

.footer-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 0;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li strong {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-links li p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.working-hours {
    margin-bottom: 1.5rem;
}

.working-hours a{
    text-decoration: none;
}

.hour-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.hour-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hour-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.hour-item strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hour-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.open-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.open-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 3rem 0 0;
    }
    
    .footer-title::after {
        width: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        padding: 2.5rem 0 0;
    }
    
    .footer-logo img {
        width: 100px;
    }
    
    .hour-item {
        padding: 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        text-align: center;
    }
}

/* ==========================================
   Success Modal
   ========================================== */

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon i {
    font-size: 3rem;
    color: #155724;
}

#successModal .modal-content {
    border: none;
    border-radius: var(--border-radius);
}

#successModal h3 {
    color: var(--text-dark);
    font-weight: 700;
}

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

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-link.btn-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .feature-card,
    .step-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   Animations
   ========================================== */

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

.hero-section,
.feature-card,
.step-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================
   Smooth Scrolling
   ========================================== */

html {
    scroll-behavior: smooth;
}

/* ==========================================
   Loading State
   ========================================== */

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   Utilities
   ========================================== */

.text-muted {
    color: var(--text-muted) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* =======Modal style start========== */
 
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1021;
}

.popup-container {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    max-width: 650px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(90, 107, 93, 0.1);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(90, 107, 93, 0.6) 0%, rgba(125, 142, 128, 0.75) 100%), url(../pain/images/1.JPG);
    background-size: cover;
    background-position: center;
}

.popup-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
    background: #fff;
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.popup-content {
    position: relative;
    padding: 60px 50px 50px;
    text-align: center;
}

.popup-content h1{
    padding-top: 30px;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    /* background: linear-gradient(135deg, #336034 0%, #064e45 100%); */
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(90, 107, 93, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.icon-wrapper img {
    width: 70px;
    height: 70px;
    fill: white;
}

h1 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #336034 0%, #064e45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.feature {
    padding: 20px;
    background: rgba(90, 107, 93, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #336034;
}

.feature:hover {
    background: rgba(90, 107, 93, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #336034 0%, #064e45 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(90, 107, 93, 0.4);
    position: relative;
    overflow: hidden;
}
.cta-button a{
    color: white;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 107, 93, 0.5);
}

.trust-badge {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-badge::before {
    content: '✓';
    background: linear-gradient(135deg, #336034 0%, #064e45 100%);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .popup-content {
        padding: 40px 30px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}


/* =======Modal style end========== */   

/* =======FAQ Start========== */   

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-header p {
    font-size: 18px;
    color: #5a7c3e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: var(--primary-color);
}

.faq-question h3 {
    font-size: 18px;
    color: #2d5016;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-icon {
    width: 32px;
    height: 32px;
    /* background: #4caf50; */
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: #2d5016;
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    border-left: 4px solid transparent;
}

.faq-item.active .faq-answer-content {
    border-left-color: #c8e6c9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 40px 15px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 15px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-right: 12px;
    }

    .faq-answer-content {
        padding: 0 16px 16px 16px;
        font-size: 14px;
    }
}

/* Animation for opening */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer-content {
    animation: slideDown 0.4s ease;
}

/* =======FAQ end=========== */

/* =======carousal start=========== */

.carousel-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 33.333%;
    padding: 0 10px;
    position: relative;
    background: #f8fafb;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 8px 8px;
}

.carousel-caption h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 14px;
    opacity: 0.9;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Tablet - 2 images */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: 50%;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-caption h3 {
        font-size: 20px;
    }
}

/* Mobile - 1 image */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-caption h3 {
        font-size: 18px;
    }

    .carousel-caption p {
        font-size: 13px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        height: 250px;
    }

    .carousel-caption {
        padding: 15px;
    }

    .carousel-caption h3 {
        font-size: 16px;
    }

    .carousel-caption p {
        font-size: 12px;
    }
}

/* =======carousal end=========== */