 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
 }

 /* Navbar */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 5%;
     background: white;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     z-index: 1000;
 }

 nav .logo {
     font-size: 1.5rem;
     font-weight: bold;
     color: #009688;
     font-family: pacifico;
 }

 nav ul {
     list-style: none;
     display: flex;
     gap: 20px;
 }

 nav ul li a {
     text-decoration: none;
     color: #333;
     font-size: 1rem;
     transition: color 0.3s ease;
     font-weight: 500;
 }

 nav ul li a:hover {
     color: #009688;
 }

 nav .btn {
     padding: 8px 15px;
     background: #00c4a7;
     color: white;
     border-radius: 20px;
     text-decoration: none;
     font-weight: 500;
     transition: background 0.3s ease;
 }



 nav .btn:hover {
     background: #009688;
 }

 /* Hamburger */
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 5px;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: #333;
     border-radius: 2px;
     transition: 0.3s;
 }

 /* Hero Section */
 .hero {
     height: 100vh;
     background: url('spa\ date.jpg') no-repeat center center/cover;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: white;
     padding: 0 20px;
 }

 .hero h1 {
     font-size: 5rem;
     margin-bottom: 15px;
     font-weight: 300;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .hero h1 span {
     color: #00c4a7;
     font-style: italic;
     font-family: pacifico;
     font-weight: 300;
 }

 .hero p {
     font-size: 1.5rem;
     margin-bottom: 20px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     font-weight: lighter;
 }

 .hero .btn {
     padding: 15px 25px;
     background: linear-gradient(135deg, #00b894, #009688);
     border-radius: 25px;
     font-size: 1rem;
     font-weight: 500;
     color: white;
     text-decoration: none;
     margin: 20px auto 0;
     transition: background 0.3s ease;
 }

 .hero .btn:hover {
     background: #009688;
 }


 /* Mobile Menu */
 @media(max-width: 768px) {
     nav ul {
         flex-direction: column;
         position: absolute;
         top: 65px;
         left: 0;
         width: 100%;
         background: white;
         text-align: center;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease-in-out;
     }

     nav ul.active {
         max-height: 400px;
         /* enough to show all items */
     }

     .hamburger {
         display: flex;
     }

     nav .btn {
         display: none;
         /* hide Book Now button outside menu */
     }
 }

 /* Responsive text scaling */
 @media(max-width: 768px) {
     .hero h1 {
         font-size: 2rem;
     }

     .hero p {
         font-size: 1rem;
     }
 }



 .stats {
     text-align: center;
     padding: 0px 20px;
     height: 60vh;
     background: #c0f9f3;
     /* fallback for old browsers */
     background: -webkit-linear-gradient(to right, #Fff, #d4f3ef);
     /* Chrome 10-25, Safari 5.1-6 */
     background: linear-gradient(to right, #fff, #d4f3ef);
     /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
     /*background: linear-gradient(135deg, #8ef8cd, #e6f7f4);*/
 }

 .stats h2 {
     font-size: 2.2rem;
     margin-bottom: 50px;
     font-weight: 200;
     color: #1c2c3c;
     position: relative;
     text-align: center;
     padding-top: 60px;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .stats h2::after {
     content: "";
     display: block;
     width: 100px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
     ;
     margin: 10px auto 0;
     border-radius: 2px;
 }

 .stats-container {
     display: flex;
     justify-content: center;
     gap: 60px;
     flex-wrap: wrap;
 }

 .stat-box {
     padding: 20px;
     width: 260px;
 }

 .icon-circle {
     width: 100px;
     height: 100px;
     background: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     border: 0.1px solid #a1ffce;

 }

 .icon-circle img {
     font-size: 1.8rem;
     color: #2bb391;
     width: 36px;
     height: 36px;

 }

 .stat-box h3 {
     font-size: 1.8rem;
     margin-bottom: 5px;
     font-weight: 600;
     color: #1c2c3c;
     text-align: center;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .stat-box p {
     font-size: 1rem;
     margin: 0;
     font-weight: 500;
     color: #666;
     text-align: center;
 }

 .stat-box small {
     display: block;
     margin-top: 5px;
     color: #777;
     text-align: center;
 }

 /*@media(max-width: 480px) {
    .stats {
        height: 110vh
    }
  }*/



 @media(max-width: 768px) {
     .stats {
         height: 150vh;
     }

     .stats-container {
         gap: 5px;
     }
 }


 .signature-treatments {
     padding: 80px 20px;
     background: #fff;
     text-align: center;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .section-title {
     font-size: 2.2rem;
     font-weight: 200;
     color: #1e2a38;
     margin-bottom: 10px;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .signature-treatments p::after {
     content: "";
     display: block;
     width: 120px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
     ;
     margin: 10px auto 0;
     border-radius: 2px;
 }

 .section-subtitle {
     font-size: 1rem;
     color: #555;
     max-width: 600px;
     margin: 0 auto 50px;
 }

 .treatments-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     padding: 10px 30px;
 }

 .treatment-card {
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .treatment-card:hover {
     transform: translateY(-5px);
 }

 .card-image {
     position: relative;
     overflow: hidden;
 }

 .card-image img {
     width: 100%;
     height: 220px;
     object-fit: cover;
 }

 .duration {
     position: absolute;
     top: 12px;
     right: 12px;
     background: #e9f9f2;
     color: #00c4a7;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 500;
 }

 .card-content {
     padding: 20px;
     text-align: left;
 }

 .card-content h3 {
     font-size: 1.25rem;
     margin-bottom: 10px;
     color: #1e2a38;
 }

 .card-content p {
     font-size: 0.95rem;
     color: #666;
     margin-bottom: 20px;
 }

 .card-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .price {
     font-weight: bold;
     font-size: 1.1rem;
     color: #00c4a7;
 }

 .card-btn {
     background: #a9f1dd;
     color: #222;
     border: none;
     padding: 10px 18px;
     border-radius: 25px;
     cursor: pointer;
     font-weight: 500;
     transition: background 0.3s ease;
 }

 .card-btn:hover {
     background: #84e3c4;
 }

 @media(max-width: 768px) {
     .card-btn {
         padding: 10px 18px;
     }
 }

 .sanctuary {
     background: #f9fdfb;
     padding: 80px 20px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .sanctuary-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 40px;
 }

 .sanctuary-image {
     display: flex;
     justify-content: center;
 }

 .image-wrapper {
     position: relative;
     border-radius: 50%;
     padding: 8px;
     background: linear-gradient(135deg, #9ef7e4, #c7fff1);
     display: inline-block;
 }

 .image-wrapper img {
     width: 280px;
     height: 280px;
     object-fit: cover;
     border-radius: 50%;
     border: 6px solid #fff;
 }

 .section-title {
     font-size: 3rem;
     font-weight: 200;
     color: #1e2a38;
     margin-bottom: 30px;
     font-family: ui-serif,
         Georgia,
         Cambria,
         Times New Roman,
         Times,
         serif;
 }

 .section-title .highlight {
     color: #1ca877;
 }

 .sanctuary-content h2::after {
     content: "";
     display: block;
     width: 120px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
     margin: 10px auto 0;
     border-radius: 2px;
     margin-top: 20px;
 }

 .sanctuary-content p {
     font-size: 1.2rem;
     color: #555;
     line-height: 1.6;
     margin-bottom: 15px;
     font-family: roboto;
     font-weight: 300;
 }

 .sanctuary-features {
     margin-top: 50px;
     display: flex;
     gap: 40px;
 }

 .feature {
     text-align: center;
     flex: 1;
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin: 0 auto 12px;
 }

 .feature-icon img {
     width: 25px;
     height: 25px;
 }

 .feature-icon.green {
     background: #e6fcf4;
     color: #1ca877;
 }

 .feature-icon.gray {
     background: #f3f3f3;
     color: #444;
 }

 .feature h4 {
     font-size: 1rem;
     color: #1e2a38;
     margin-bottom: 5px;
 }

 .feature p {
     font-size: 0.9rem;
     color: #666;
 }

 @media (max-width: 900px) {
     .sanctuary-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .sanctuary-content {
         order: 2;
     }

     .sanctuary-image {
         order: 1;
     }

     .sanctuary-features {
         justify-content: center;
     }
 }

 /* Testimonial */

 .testimonials {
     text-align: center;
     padding: 80px 20px;
     background: #fafafa;
 }

 .testimonials h2 {
     font-size: 3rem;
     font-weight: 200;
     color: #1c2c3c;
     margin-bottom: 10px;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .testimonials .subtitle {
     font-size: 1rem;
     color: #555;
     margin-bottom: 40px;
 }

 .testimonials p::after {
     content: "";
     display: block;
     /*width: 60px;
    height: 3px;
    background: #2bb391;*/
     margin: 10px auto 0;
     border-radius: 2px;
     width: 120px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
 }

 .testimonials-container {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .testimonial-card {
     background: #fff;
     border-radius: 15px;
     padding: 25px;
     width: 320px;
     text-align: left;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
 }

 .stars {
     color: #f9b233;
     /* gold color for stars */
     font-size: 1.2rem;
     margin-bottom: 15px;
 }

 .quote {
     font-style: italic;
     color: #333;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .client {
     display: flex;
     align-items: center;
     gap: 10px;
     border-top: 1px solid #eee;
     padding-top: 15px;
 }

 .avatar {
     width: 40px;
     height: 40px;
     background: #2bb391;
     color: #fff;
     font-weight: bold;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .client h4 {
     margin: 0;
     font-size: 1rem;
     color: #1c2c3c;
 }

 .client small {
     color: #777;
 }

 .review-summary {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     margin-top: 50px;
     padding: 12px 25px;
     border: 1px solid #ddd;
     border-radius: 40px;
     background: #fff;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     font-size: 1rem;
     color: #333;
 }

 .review-summary .stars {
     font-size: 1.3rem;
     margin: 0;
 }

 .review-summary .rating {
     font-weight: 600;
 }

 .review-summary .divider {
     width: 1px;
     height: 20px;
     background: #ccc;
 }

 .review-summary .reviews {
     color: #555;
 }

 /*Services*/

 .sanctuary {
     padding: 80px 20px;
     text-align: center;
     background: #f9fdfb;
 }

 .sanctuary h2 {
     font-size: 3rem;
     font-weight: 200;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
     margin-bottom: 10px;
     color: #123;
 }

 .sanctuary .subtitle {
     font-size: 1.1rem;
     color: #666;
     margin-bottom: 50px;
 }

 .sanctuary h3::after {
     content: "";
     display: block;
     /*width: 60px;
    height: 3px;
    background: #2bb391;*/
     margin: 10px auto 0;
     border-radius: 2px;
     width: 120px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
 }

 .gallery-item {
     overflow: hidden;
     border-radius: 15px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.08);
 }

 .booking {
     padding: 80px 20px;
     background: #f9fdfb;
     text-align: center;
 }

 .booking h2 {
     font-size: 3rem;
     font-weight: 200;
     margin-bottom: 10px;
     color: #123;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .booking .subtitle {
     font-size: 1.1rem;
     color: #555;
     margin-bottom: 40px;
 }

 .booking p::after {
     content: "";
     display: block;
     /*width: 60px;
    height: 3px;
    background: #2bb391;*/
     margin: 10px auto 0;
     border-radius: 2px;
     width: 120px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
 }

 .booking-form {
     max-width: 800px;
     margin: 0 auto;
     background: #fff;
     padding: 30px;
     border-radius: 16px;
     box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
     text-align: left;
 }

 .form-row {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .form-group {
     flex: 1;
     display: flex;
     flex-direction: column;
     margin-bottom: 20px;
 }

 .form-group.full-width {
     flex: 100%;
 }

 label {
     margin-bottom: 8px;
     font-weight: 500;
     color: #333;
 }

 input,
 select,
 textarea {
     padding: 12px 14px;
     border: 1.5px solid #7cd1c0;
     border-radius: 10px;
     font-size: 1rem;
     outline: none;
     transition: all 0.3s ease;
 }

 input:focus,
 select:focus,
 textarea:focus {
     border-color: #009688;
     box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.1);
 }

 textarea {
     resize: none;
 }

 small {
     font-size: 0.85rem;
     color: #666;
     margin-top: 6px;
     display: block;
 }

 .booking-btn {
     display: block;
     width: 220px;
     margin: 20px auto 0;
     padding: 14px;
     background: linear-gradient(135deg, #00b894, #009688);
     color: #fff;
     font-size: 1.1rem;
     border: none;
     border-radius: 50px;
     cursor: pointer;
     transition: transform 0.2s ease, background 0.3s ease;
 }


 .btn:hover {
     background: linear-gradient(135deg, #009688, #00796b);
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .form-row {
         flex-direction: column;
     }
 }

 /* Section Styling */
 .visit-section {
     padding: 60px 20px;
     background: #f9fdfb;
 }

 .visit-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .visit-header h2 {
     font-size: 3rem;
     font-weight: 200;
     color: #123;
     margin-bottom: 10px;
     font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
 }

 .visit-header p {
     color: #666;
     font-size: 1rem;
 }

 .visit-header p::after {
     content: "";
     display: block;
     /*width: 60px;
    height: 3px;
    background: #2bb391;*/
     margin: 10px auto 0;
     border-radius: 2px;
     width: 120px;
     height: 5px;
     background: linear-gradient(to left, #a1ffce, #00c4a7);
 }

 /* Layout */
 .visit-content {
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
 }

 /* Contact Info */
 .contact-info {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .contact-card {
     display: flex;
     justify-content: flex-start;
     gap: 15px;
     background: white;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .icon-ccircle {
     width: 50px;
     height: 50px;
     background: #e6f7f2;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     font-size: 22px;
 }

 .icon-ccircle img {
     width: 25px;
     height: 25px;
 }

 .contact-card h3 {
     margin: 0 0 5px;
     font-size: 1.1rem;
 }

 .contact-card p {
     margin: 0;
     color: #333;
 }

 .contact-card small {
     color: #666;
     font-size: 0.9rem;
 }

 /* Map */
 .map-container {
     flex: 1;
     min-height: 400px;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 /* Responsive */
 @media (max-width: 900px) {
     .visit-content {
         flex-direction: column;
     }

     .map-container {
         min-height: 300px;
     }
 }

 /* Footer Styling */
 .footer {
     background: #101828;
     color: #fff;
     padding: 60px 20px 20px;
     font-family: Arial, sans-serif;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: auto;
 }

 /* Logo + About */
 .footer-logo {
     font-size: 1.8rem;
     color: #38c7a9;
     margin-bottom: 10px;
     font-family: Pacifico;
 }

 .footer-logo span {
     color: #fff;
 }

 .footer-about p {
     margin-bottom: 20px;
     color: #cfd8dc;
     line-height: 1.5;
     font-size: 1rem;
 }

 .footer-socials {
     display: flex;
 }

 .footer-socials a {
     margin-right: 10px;
     width: 30px;
     height: 30px;
     background: #38c7a9;
     color: #101828;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     transition: 0.3s;
 }

 .footer-socials img {
     width: 15px;
     height: 15px;
 }

 .footer-socials a:hover {
     background: #2aa88a;
     color: #fff;
 }

 /* Links + Services */
 .footer-links h3,
 .footer-contact h3 {
     margin-bottom: 15px;
     color: #38c7a9;

 }

 .footer-links ul,
 .footer-contact ul {
     list-style: none;
     padding: 0;
     font-size: 1rem;
 }

 .footer-links ul li,
 .footer-contact ul li {
     margin-bottom: 10px;
     color: #cfd8dc;
 }

 .footer-links ul li a {
     color: #cfd8dc;
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-links ul li a:hover {
     color: #38c7a9;
 }

 /* Contact Info */
 .footer-contact ul li i {
     margin-right: 8px;
     color: #38c7a9;
 }

 .footer-contact ul li img {
     width: 15px;
     height: 15px;
 }

 /* Bottom Bar */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 40px;
     padding-top: 20px;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     align-items: center;
     gap: 20px;
     padding: 5px 70px;
 }

 .footer-bottom p {
     margin: 0;
     color: #474646;
     font-size: 0.7rem;
 }

 .footer-bottom-links a {
     margin-left: 15px;
     color: #474646;
     text-decoration: none;
     font-size: 0.7rem;

 }

 .footer-bottom-links a:hover {
     color: #38c7a9;
 }

 /* Credit Badge */
 .footer-credit {
     font-size: 0.9rem;
 }

 .credit-badge {
     background: #fff;
     color: #101828;
     padding: 4px 10px;
     border-radius: 20px;
     font-weight: bold;
 }

 @media (max-width: 768px) {
     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }
 }