/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #1a3a2e;
    --accent-color: #00ffee;
    --text-dark: #333;
    --text-light: #fff;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    
   height: 60px;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease;
   border-radius: 30%;
}

.logo-img:hover {
    transform: scale(1.1);
}

.navbar-toggler {
    background: rgba(4, 251, 144, 0.4);
    border: none;
    padding: 8px 12px;
    color: #1a1a1a;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 5px;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.btn-booking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.booking-panel {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    z-index: 1000;
}

.booking-panel h5 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.booking-panel .form-control {
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
}

.booking-panel .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 238, 0.25);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    height: 100vh;
    width: 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    animation: fadeInUp 1.4s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FLOATING CONTACT BUTTON
   ======================================== */
.contact-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.btn-contact-float {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.btn-contact-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.contact-popup {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    background: #c82333;
    transform: rotate(90deg);
}

.contact-option {
    display: block;
    padding: 12px 15px;
    margin: 8px 0;
    background: #f8f9fa;
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.contact-option i {
    margin-right: 10px;
    width: 20px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    border-radius: 10rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-body {
    padding: 25px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    z-index: -1;
}

.about-image-wrapper img {
    border-radius: 10px;
}

.about-content {
    padding-left: 30px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.about-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.about-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2f3e8a 0%, #250247 100%);
}

.pricing-section .section-title,
.pricing-section .section-description {
    color: white;
}

.pricing-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pricing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    padding: 30px 20px;
    transition: var(--transition);
}

.pricing-card:hover .pricing-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
}

.pricing-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    color: white;
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.75);
    padding: 60px 0;
    border-radius: 20rem;
}

.contact-header {
    margin-bottom: 40px;
}

.spa-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 1.1rem;
    color: white;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.8;
}

/* ========================================
   LOCATION MAP SECTION
   ======================================== */
.location-section {
    padding: 80px 0;
    background: #9ba2db;
    border-radius: 5rem;
    border: 2px solid rgba(6, 2, 29, 0.75);
}

.location-info-row {
    margin-bottom: 40px;
}

.info-card {
    background: rgb(233, 234, 237);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.info-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn-direction {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(44, 95, 79, 0.3);
}

.btn-direction:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 79, 0.4);
    color: white;
    text-decoration: none;
}

.btn-direction i {
    margin-right: 10px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 0 30px;
  font-family: "Poppins", sans-serif;
}

.footer-heading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-text {
  color: #ccc;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  padding: 8px 0;
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.social-icons {
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon i {
  color: white;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .social-icon {
    margin: 5px;
  }
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 238, 0.5);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card i {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .booking-panel {
        right: -50px;
        min-width: 250px;
    }
    
    .btn-booking {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .info-card i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .info-card h5 {
        font-size: 1.1rem;
    }

    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-float {
        bottom: 20px;
        left: 20px;
    }
    
    .btn-contact-float {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .pricing-card {
        height: 300px;
    }

    .btn-direction {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .info-card {
        padding: 20px 10px;
    }
}