 :root {
     --gold: #D4AF37;
     --dark-gold: #B8860B;
     --black: #0A0A0A;
     --light-black: #1A1A1A;
     --spa-green: #2F4F4F;
     --light-spa: #E8F4F4;
     --water-blue: #7FB3D5;
     --deep-blue: #2C3E50;
     --white: #ffffff;
     --gray-300: #d1d5db;
 }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-100);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
  user-select: none;
}
 .gold-text {
     color: var(--gold);
 }

 .gold-bg {
     background-color: var(--gold);
 }

 .black-bg {
     background-color: var(--black);
 }

 .spa-bg {
     background-color: var(--spa-green);
 }

 .spa-light-bg {
     background-color: var(--light-spa);
 }

 .border-gold {
     border-color: var(--gold);
 }

 /* Spa Gradient */
 .spa-gradient {
     background: linear-gradient(135deg, var(--spa-green) 0%, var(--black) 100%);
 }


 /* NEW: Clean Modern Hero Section */
 .modern-hero-section {
     position: relative;
     min-height: 85vh;
     display: flex;
     align-items: center;
     overflow: hidden;
     padding: 0 20px;
     /* Background image ke sath gradient */
     background: 
         url('/images/services-banner.png') no-repeat center center;
     background-size: cover;
     /* image poori section ko cover kare */
 }

 .modern-hero-content {
     position: relative;
     z-index: 10;
     text-align: center;
     max-width: 1000px;
     margin: 0 auto;
     padding: 60px 20px;
 }

 .modern-hero-title {
     font-size: 4rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff;
     line-height: 1.2;
 }

 .modern-hero-title span {
     color: var(--gold);
     display: block;
     font-weight: 800;
     margin-top: 10px;
 }

 .modern-hero-subtitle {
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 40px;
     font-weight: 300;
     line-height: 1.6;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .modern-hero-stats {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 40px;
     margin: 50px 0;
 }

 .modern-stat-item {
     text-align: center;
     min-width: 150px;
 }

 .modern-stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: var(--gold);
     margin-bottom: 10px;
     display: block;
 }

 .modern-stat-label {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.7);
     text-transform: uppercase;
     letter-spacing: 1.5px;
     font-weight: 500;
 }

 .modern-hero-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 50px;
     flex-wrap: wrap;
 }

 .modern-hero-btn {
     padding: 16px 35px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 12px;
     min-width: 220px;
     justify-content: center;
     cursor: pointer;
 }

 .modern-primary-btn {
     background: linear-gradient(135deg, var(--gold), var(--dark-gold));
     color: var(--black);
     border: none;
     box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
 }

 .modern-primary-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
 }

 .modern-secondary-btn {
     background: transparent;
     color: var(--gold);
     border: 2px solid var(--gold);
 }

 .modern-secondary-btn:hover {
     background: rgba(212, 175, 55, 0.1);
     transform: translateY(-5px);
 }

 .hero-divider-line {
     width: 80px;
     height: 3px;
     background: var(--gold);
     margin: 40px auto;
 }

 /* Floating Elements */
 .floating-dots {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 1;
 }

 .dot {
     position: absolute;
     width: 10px;
     height: 10px;
     background: rgba(212, 175, 55, 0.2);
     border-radius: 50%;
     animation: floatDot 15s infinite ease-in-out;
 }

 .dot:nth-child(1) {
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .dot:nth-child(2) {
     top: 40%;
     right: 15%;
     animation-delay: 2s;
 }

 .dot:nth-child(3) {
     bottom: 30%;
     left: 20%;
     animation-delay: 4s;
 }

 .dot:nth-child(4) {
     bottom: 40%;
     right: 10%;
     animation-delay: 6s;
 }

 .dot:nth-child(5) {
     top: 60%;
     left: 15%;
     animation-delay: 8s;
 }

 @keyframes floatDot {

     0%,
     100% {
         transform: translateY(0) scale(1);
         opacity: 0.3;
     }

     50% {
         transform: translateY(-20px) scale(1.2);
         opacity: 0.6;
     }
 }

 /* Service Categories */
 .service-category-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     border: 1px solid rgba(229, 231, 235, 0.5);
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .service-category-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     border-color: var(--gold);
 }

 .service-icon-wrapper {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 30px auto 25px;
     background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
     color: var(--black);
     font-size: 2rem;
     box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
     transition: all 0.3s ease;
 }

 .service-category-card:hover .service-icon-wrapper {
     transform: scale(1.1);
     box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
 }

 /* Service Detail Cards */
 .service-detail-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border: 1px solid rgba(229, 231, 235, 0.8);
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .service-detail-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
     border-color: var(--gold);
 }

 .service-image {
     height: 220px;
     width: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .service-detail-card:hover .service-image {
     transform: scale(1.05);
 }

 .price-tag {
     background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
     color: var(--black);
     padding: 8px 20px;
     border-radius: 25px;
     font-weight: bold;
     font-size: 1.1rem;
     box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
     display: inline-block;
 }

 .duration-badge {
     background: var(--spa-green);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 500;
 }

 .benefit-item {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
     padding: 10px;
     border-radius: 10px;
     transition: all 0.3s ease;
     background: rgba(248, 248, 248, 0.5);
 }

 .benefit-item:hover {
     background: rgba(212, 175, 55, 0.1);
     transform: translateX(5px);
 }

 .benefit-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     background: linear-gradient(135deg, var(--spa-green) 0%, var(--black) 100%);
     color: white;
     font-size: 0.9rem;
     flex-shrink: 0;
 }

 /* FAQ Section */
 .faq-item {
     background: white;
     border-radius: 12px;
     margin-bottom: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(229, 231, 235, 0.8);
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     border-color: rgba(212, 175, 55, 0.3);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 }

 .faq-question {
     padding: 25px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     transition: all 0.3s ease;
     background: white;
 }

 .faq-question:hover {
     background-color: #f9fafb;
 }

 .faq-answer {
     padding: 0 25px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
     padding: 0 25px 25px 25px;
     max-height: 500px;
 }

 .faq-item.active .faq-question {
     color: var(--gold);
     border-bottom: 1px solid rgba(229, 231, 235, 0.8);
 }

 .faq-icon {
     transition: transform 0.3s ease;
     color: var(--spa-green);
 }

 .faq-item.active .faq-icon {
     transform: rotate(180deg);
     color: var(--gold);
 }

 /* Booking Modal */
 .booking-modal {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.85);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     backdrop-filter: blur(10px);
 }

 .booking-modal.active {
     opacity: 1;
     visibility: visible;
 }

 .modal-content {
     background: white;
     border-radius: 20px;
     padding: 40px;
     max-width: 500px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     transform: translateY(30px);
     transition: transform 0.4s ease;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
 }

 .booking-modal.active .modal-content {
     transform: translateY(0);
 }

 /* Section Divider */
 .section-divider {
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
     margin: 80px 0;
 }

/* Large screens: 1600px and above */
@media (min-width: 1600px) {
    .modern-hero-title {
        font-size: 5rem; /* thoda bada font */
    }
    .modern-hero-subtitle {
        font-size: 1.5rem;
    }
    .modern-stat-number {
        font-size: 3.5rem;
    }
    .service-icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    .service-image {
        height: 260px;
    }
}

/* Medium to large screens: 1025px – 1599px */
@media (min-width: 1025px) and (max-width: 1599px) {
    .modern-hero-title {
        font-size: 4.5rem;
    }
    .modern-hero-subtitle {
        font-size: 1.4rem;
    }
    .modern-stat-number {
        font-size: 3.2rem;
    }
    .service-icon-wrapper {
        width: 90px;
        height: 90px;
        font-size: 2.3rem;
    }
    .service-image {
        height: 240px;
    }
}

/* Default medium screens: 768px – 1024px (existing tweaks) */
@media (max-width: 1024px) and (min-width: 768px) {
    .modern-hero-title {
        font-size: 3.5rem;
    }
    .modern-hero-subtitle {
        font-size: 1.3rem;
    }
    .modern-stat-number {
        font-size: 2.8rem;
    }
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    .service-image {
        height: 220px;
    }
    
}

/* Tablets: 375px – 767px */
@media (max-width: 767px) and (min-width: 375px) {
    .modern-hero-title {
        font-size: 28px;
    }
    .price-tag {
        font-size: 13px;
    }
    .text-2xl {
    font-size: 17px !important;
    }
    .heal-head{
        font-size: 24px !important;
    }
    .ther-heading{
        font-size: 22px !important;
    }
    .book-btn {
    display: inline !important;
 }
 .spa-head{
     font-size: 24px !important;
 }
 
 .faq-heading{
     font-size: 24px !important;
 }
    .modern-hero-subtitle {
        font-size: 1.1rem;
    }
    .modern-stat-number {
        font-size: 2.2rem;
    }
    .modern-stat-label {
        font-size: 0.85rem;
    }
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    .service-image {
        height: 180px;
    }
}

/* Small mobile: 320px – 374px */
@media (max-width: 374px) and (min-width: 321px) {
    .modern-hero-title {
        font-size: 2.2rem;
    }
    .modern-hero-subtitle {
        font-size: 1rem;
    }
    .modern-stat-number {
        font-size: 2rem;
    }
    .modern-stat-label {
        font-size: 0.8rem;
    }
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    .service-image {
        height: 160px;
    }
}

/* Extra small mobile: 320px and below */
@media (max-width: 320px) {
    .modern-hero-title {
        font-size: 2rem;
    }
    .modern-hero-subtitle {
        font-size: 0.95rem;
    }
    .modern-stat-number {
        font-size: 1.8rem;
    }
    .modern-stat-label {
        font-size: 0.75rem;
    }
    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    .service-image {
        height: 140px;
    }
}
