/* CSS/style.css */

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --black: #0A0A0A;
    --light-black: #1A1A1A;
    --spa-green: #2F4F4F;
    --light-spa: #E8F4F4;
    --white: #ffffff;
    --gray-100: #f8f8f8;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #33383f;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}




/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========== UTILITY CLASSES ========== */
.gold-text {
    color: var(--gold) !important;
}

.gold-bg {
    background-color: var(--gold) !important;
}

.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) !important;
}

.spa-gradient {
    background: linear-gradient(135deg, var(--black), var(--spa-green));
}

.contact-info {
    background: url('/images/banner.png') no-repeat center center;
    background-size: cover;
    padding-top: 4%;
    padding-bottom: 5%;
}


/* ========== HEADING AND PARAGRAPH STYLES ========== */

/* Main Heading (h1) */
.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

/* Section Headings (h2) */
.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    padding-top: 20px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--gold);
}

.Testimonial-heading{
      font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.package-heading {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-top: 15px;
    position: relative;
    display: inline-block;
    color: var(--gold);
}

/* .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
} */

/* Feature Titles (h4) */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

/* Treatment Titles (h3) */
.treatment-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

/* Package Titles (h4) */
.package-title {
    font-size: 1.75rem;
    margin-top: 10px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}


/* Testimonial Names (h5) */
.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}


.w-24 {
    width: 30rem;  /* Already set as per your code */
}

.h-24 {
    height: 14rem;  /* Tumne yahi chaha */
}
/* Footer Headings (h5) */
.footer-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    padding-bottom: 0.75rem;
}

/* .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gold);
} */

/* Footer Subheading (h6) */
.footer-subheading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* ========== PARAGRAPH STYLES ========== */

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Section Descriptions */
.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Treatment Descriptions */
.treatment-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Feature Descriptions */
.feature-description {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Package Descriptions */
.package-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Testimonial Text */
.testimonial-text {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Footer Text */
.footer-text {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 1rem;
}

/* Copyright Text */
.copyright-text {
    color: var(--gray-500);
    font-size: 0.95rem;
}



/* ========== HERO SECTION ========== */
.spa-section {
    position: relative;
    background:url('/images/main-banner.png');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    color: var(--white);
    padding: 8rem 1rem;
    text-align: center;
}

/* .spa-section .container {
    max-width: 1200px;
} */

.spa-section .flex {
    gap: 1rem;
    justify-content: center;
}

.spa-section .book-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.spa-section .bg-transparent {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spa-section .bg-transparent:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ========== MAIN CONTENT ========== */
/* main {
    padding: 4rem 0;
}

main .container {
    max-width: 1400px;
} */

/* Treatment Cards */

/* Team Section */
.team-section {
    margin-bottom: 5rem;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}


.treatment-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.massage-icon {
    background: linear-gradient(135deg, var(--spa-green), var(--black));
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.massage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.treatment-card:hover .massage-icon::before {
    transform: translateX(100%);
}

.massage-icon i {
    font-size: 4rem;
    color: var(--gold);
    z-index: 1;
}

.treatment-card>div:last-child {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-tag {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.3);
}

.treatment-card ul {
    margin-bottom: 2rem;
}

.treatment-card li {
    display: flex;
    align-items: center;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.treatment-card li i {
    color: var(--gold);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.treatment-card .book-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Why Choose Us Section */
.spa-light-bg {
    background-color: var(--light-spa);
    border-radius: 24px;
    padding: 4rem 2rem;
}

.spa-light-bg .grid>div {
    text-align: center;
    padding: 1.5rem;
}

.spa-light-bg .massage-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--spa-green), var(--black));
}

.spa-light-bg .massage-icon i {
    font-size: 2.5rem;
}

/* Packages Section */
.border-gray-300 {
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.border-gray-300:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.border-gold {
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.border-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.absolute.top-0.right-0 {
    background-color: var(--gold);
    color: var(--black);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0px 0 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* .text-4xl {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
} */

.text-lg {
    font-size: 1rem;
    color: var(--gray-600);
}

.border-gray-300 ul,
.border-gold ul {
    margin-bottom: 2rem;
}

.border-gray-300 li,
.border-gold li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.border-gray-300 li i,
.border-gold li i {
    color: var(--gold);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.border-gray-300 li.text-gray-400 {
    color: var(--gray-400);
}

.border-gray-300 li.text-gray-400 i {
    color: var(--gray-400);
}

.border-gray-300 button,
.border-gold button {
    width: 100%;
    margin-top: auto;
}

/* Testimonials Section */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: calc(33.333% - 1.34rem);
    scroll-snap-align: start;
    /* background-color: var(--white); */
    border-radius: 16px;
    padding: 2rem;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); */
}

.testimonial-card .flex.items-center {
    margin-bottom: 1.5rem;
}

.w-12.h-12.rounded-full {
    background: linear-gradient(135deg, var(--black), var(--spa-green));
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card .flex.gold-text {
    margin-bottom: 1rem;
}

.testimonial-card .flex.gold-text i {
    margin-right: 0.25rem;
    font-size: 1.1rem;
}

/* Contact CTA Section */
.py-16 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.max-w-4xl {
    max-width: 1200px;
}

.max-w-4xl .flex {
    gap: 1.5rem;
    justify-content: center;
}

.max-w-4xl .book-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.max-w-4xl .bg-transparent {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.max-w-4xl .bg-transparent:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}




/* ========== RESPONSIVE DESIGN ========== */

/* Large Desktop (1440px - 1600px) */
@media screen and (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .main-heading {
        font-size: 3.25rem;
    }

    .section-heading {
        font-size: 2.5rem;
        padding-top: 20px;

    }

    .package-heading {
        font-size: 2.5rem;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }

    .nav-list {
        gap: 0.5rem !important;
    }

    .main-heading {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .treatment-title {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 2.25rem;
    }

    .package-heading {
        font-size: 2.25rem;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .package-title {
        font-size: 1.6rem;
    }
}

/* Small Desktop (1024px - 1199px) */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .main-heading {
        font-size: 2.75rem;
    }

    .testimonial-card {
        width: calc(50% - 1rem);
    }

    .footer-heading {
        font-size: 1.3rem;
    }
}

/* Tablet Landscape (900px - 1023px) */
@media screen and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    .spa-section {
        padding: 6rem 1rem;
        background-attachment: scroll;
    }
    
    /*.massage{*/
    /*    display: block !important;*/
    /*}*/
    .main-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .package-heading {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg\:grid-cols-3>div:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        width: calc(50% - 1rem);
    }
     .contact-info {
        background-position: center top;
        background-size: cover;
        padding: 40px 20px;
    }

    footer .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-heading {
        font-size: 1.25rem;
    }
}

/* Tablet Portrait (768px - 899px) */
@media screen and (max-width: 899px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .mobile-logo-img {
        height: 45px;
    }

    .spa-section {
        padding: 5rem 1rem;
    }

    .main-heading {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .spa-section .flex {
        /*flex-direction: column;*/
        align-items: center;
    }
    
    .spa-section button {
        width: 100%;
        max-width: 300px;
    }

    .section-heading {
        font-size: 1.875rem;
    }

     .package-heading {
        font-size: 1.875rem;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        width: calc(100% - 1rem);
    }

    .max-w-4xl .flex {
        flex-direction: column;
        align-items: center;
    }
     .contact-info {
        background-position: center top;
        background-size: cover;
        padding: 40px 20px;
    }

    .max-w-4xl button {
        width: 100%;
        max-width: 300px;
    }

    .footer-heading {
        font-size: 1.2rem;
    }
}

/* Large Mobile (600px - 767px) */
@media screen and (max-width: 767px) {
    .header-container {
        padding: 0 1rem;
    }

    .mobile-logo-img {
        height: 40px;
    }

    .hamburger {
        width: 28px;
        height: 22px;
    }

    .mobile-menu {
        margin-top: 0.75rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.875rem;
    }

    .spa-section {
        background:url('/images/banner-mobile.png');
        padding: 20px 0px;
    }

    .main-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    main {
        padding: 3rem 0;
    }
    
    .banner-heading{
    margin-top: 10px;
    font-size: 17px !important;
    text-align: center;
    line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }
    
    .number-title{
        text-align: center;
        margin-bottom: 15px !important;
    }
    
    .banner-number{
        font-size: 13px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .Testimonial-heading {
    font-size: 30px;
}
    /* .section-heading{
        font-size: 20px;
    } */

    .section-heading {
        font-size: 22px;
        padding-top: 20px;
    }

     .package-heading {
        font-size: 22px;
    }
    .max-w-4xl .book-btn{
        display: none;
    }
    
     .max-w-4xl .flex {
        display: none;
    }

    .section-description {
        font-size: 14px;
       margin-bottom: 0.5rem !important;
    }

    .treatment-title {
        font-size: 17px !important;
    }

    .treatment-description {
        font-size: 0.95rem;
    }

    .price-tag {
        font-size: 12px;
        padding: 0.4rem 1rem;
    }

    .spa-light-bg {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .border-gray-300,
    .border-gold {
        padding: 2rem;
    }

    .package-title {
        padding-top: 10px;
        font-size: 24px;
    }

    .package-description {
        font-size: 0.95rem;
    }

    /* .section-heading {
        font-size: 2.5rem;
    } */

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
     .contact-info {
        padding: 0px;
    }
    
    .spa-section .book-btn {
    font-size: 18px;
    padding: 10px 40px;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 100px;
   }

    footer {
        padding: 3rem 0 1.5rem;
    }

    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-heading {
        font-size: 1.3rem;
    }

    .footer-description,
    .footer-text {
        font-size: 0.95rem;
    }

    .footer-link {
        font-size: 0.95rem;
    }

    footer .border-t {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
}

  

/* Extra Small Mobile (320px - 399px) */
@media screen and (max-width: 360px) {
    .header-container {
        padding: 0 0.5rem;
    }

    .mobile-logo-img {
        height: 28px;
    }

    .mobile-nav {
        padding: 1.25rem 0.75rem;
    }

    .mobile-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

   

    .main-heading {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .book-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    /* .section-heading {
        font-size: 1.35rem;
    }
     */
    /* .section-description {
        font-size: 0.85rem;
    } */

    .gap-8 {
        gap: 1rem;
    }

    .treatment-card>div:last-child {
        padding: 1.25rem;
    }

    /* .treatment-title {
        font-size: 1.1rem;
    } */

    .price-tag {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }

    .treatment-description {
        font-size: 0.85rem;
    }

    .treatment-card li {
        font-size: 0.85rem;
    }

    .treatment-card .book-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .spa-light-bg {
        padding: 1.5rem 0.75rem;
    }

    .spa-light-bg .massage-icon {
        width: 60px;
        height: 60px;
    }

    .spa-light-bg .massage-icon i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .border-gray-300,
    .border-gold {
        padding: 1rem;
    }

    .package-title {
        font-size: 1.1rem;
    }

    .package-description {
        font-size: 0.85rem;
    }

    /* .text-4xl {
        font-size: 1.75rem;
    }
     */
    .border-gray-300 li,
    .border-gold li {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 0.875rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-description,
    .footer-text {
        font-size: 0.85rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile (below 320px) */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }

    .mobile-logo-img {
        height: 24px;
    }

    .mobile-nav-link {
        font-size: 0.8rem;
    }

    .main-heading {
        font-size: 1.3rem;
    }

    /* .section-heading {
        font-size: 1.25rem;
    } */

    .treatment-title {
        font-size: 1rem;
    }

    .book-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .footer-heading {
        font-size: 0.95rem;
    }
}