/* Reset and base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(90deg, #0051a2, #007bff);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.logo {
    font-size: 22px;
    font-weight: bold;
}
.desktop-menu a {
    margin: 0 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.desktop-menu a:hover {
    color: #ffd700;
}

.mobile-menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #007bff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
}
.mobile-menu a {
    padding: 12px 20px;
    border-top: 1px solid #0055a5;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}
.mobile-menu a:hover {
    background: #0051a2;
}

/* Banner */
.banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Sandwich Massage Section */
.sandwich-massage-section {
    background-image: url('images/banner8.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.sandwich-massage-section .overlay {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark overlay */
    padding: 60px 20px;
}

.sandwich-massage-section .content {
    max-width: 800px;
    margin: auto;
}

.sandwich-massage-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffde59;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.sandwich-massage-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.sandwich-massage-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: auto;
}
.sandwich-massage-section li {
    font-size: 16px;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}
.sandwich-massage-section li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffde59;
    font-weight: bold;
}

.highlight {
    color: #ffde59;
    font-weight: bold;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .sandwich-massage-section h2 {
        font-size: 26px;
    }
    .sandwich-massage-section p,
    .sandwich-massage-section li {
        font-size: 16px;
    }
}
/* About Us Section */
.about-us-section {
    background-image: url('images/sandwich-massage.jpg'); /* Replace with your own image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 20px;
    color: white;
}

.about-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
    padding: 60px 20px;
    border-radius: 8px;
}

.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.about-content .highlight {
    color: #00d0ff;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.about-content ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}
.about-content li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.about-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00d0ff;
    font-weight: bold;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 28px;
    }
    .about-content p,
    .about-content li {
        font-size: 16px;
    }
    .about-content ul {
        padding-left: 10px;
    }
}

/* Services Section */
.services-section {
    background: #f7faff;
    padding: 60px 20px;
}
.services-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0051a2;
}
.services-section .highlight {
    color: #ff9900;
}

/* Slider */
.services-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
}
.services-slider::-webkit-scrollbar {
    display: none;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex: 0 0 300px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card h3 {
    color: #007bff;
    margin: 15px 10px 5px;
}
.service-card p {
    margin: 5px 10px;
    font-size: 14px;
    color: #555;
}
.service-card .price {
    font-weight: bold;
    color: green;
    margin: 10px;
}

/* Buttons inside Service Card */
.service-buttons {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}
.book-btn {
    background: #0051a2;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.book-btn:hover {
    background: #003f82;
}
.whatsapp-btn, .call-btn {
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
}
.whatsapp-btn {
    background: #25D366;
}
.call-btn {
    background: #d11a2a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-slider {
        gap: 10px;
    }
    .service-card {
        flex: 0 0 80%;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-image: url('images/massage-review.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: white;
    position: relative;
}

.testimonial-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
    padding: 60px 20px;
    border-radius: 10px;
}

.testimonial-overlay h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffd700;
}

.testimonial-overlay .highlight {
    color: #00d0ff;
}

/* Testimonial Cards */
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 20px;
    max-width: 320px;
    flex: 1 1 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Quote Mark */
.quote-mark {
    font-size: 50px;
    line-height: 0;
    color: #ffd700;
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: Georgia, serif;
}

/* Testimonial Text */
.testimonial-card p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.testimonial-card h4 {
    margin-top: 15px;
    font-weight: bold;
    color: #ffde59;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-overlay h2 {
        font-size: 28px;
    }
    .testimonial-card {
        max-width: 100%;
    }
}
/* ===== FAQ Section ===== */
.faq-section {
    background: #004080; /* deep blue */
    color: white;
    padding: 50px 20px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.faq-container .highlight {
    color: #FFD700; /* gold highlight */
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile first adjustments */
@media (min-width: 768px) {
    .faq-container h2 {
        font-size: 2.5rem;
    }
    .faq-question {
        font-size: 1.2rem;
    }
}
.offer-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #333;
    border-left: 6px solid #007bff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
    animation: fadeInUp 0.6s ease forwards;
    transition: all 0.3s ease;
}

/* Content inside popup */
.offer-popup .offer-content h3 {
    margin-top: 0;
    color: #d11a2a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.offer-popup .offer-content p {
    margin: 5px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.offer-popup .offer-whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.offer-popup .offer-whatsapp-btn:hover {
    background-color: #128C7E;
}

.offer-popup .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
    font-weight: bold;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    .offer-popup {
        padding: 16px;
        font-size: 0.95rem;
        max-width: 90%;
    }

    .offer-popup .offer-content h3 {
        font-size: 1rem;
    }

    .offer-popup .offer-whatsapp-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 1rem;
    }

    .offer-popup .close-btn {
        top: 5px;
        right: 10px;
    }
}

/* General Styles */
.contact-section {
    padding: 40px 20px;
    background-color: #f4f4f9;
    font-family: Arial, sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.contact-text {
    flex: 1;
    margin-right: 20px;
}

.contact-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 1.1rem;
    margin: 5px 0;
}

.contact-cta a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #25D366; /* WhatsApp green */
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.contact-cta a:hover {
    background-color: #128C7E; /* Darker green on hover */
}

/* Mobile Styles */
@media (max-width: 767px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-text {
        text-align: center;
        margin-right: 0;
        padding: 0 20px;
    }

    .contact-text h2 {
        font-size: 1.8rem;
    }

    .contact-text p {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .contact-cta a {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-text {
        text-align: left;
        margin-right: 30px;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .contact-text p {
        font-size: 1.2rem;
    }

    .contact-details p {
        font-size: 1.1rem;
    }

    .contact-cta a {
        padding: 10px 20px;
        font-size: 1rem;
    }
}


/* FOOTER */
footer {
    background: #003f82;
    color: white;
    padding: 30px 20px;
    text-align: center;
}
footer .follow-us {
    margin-bottom: 10px;
}
footer .follow-us p {
    font-weight: bold;
    font-size: 18px;
}
footer .follow-us a {
    color: #ffd700;
    margin: 0 8px;
    text-decoration: none;
}
footer .footer-links a {
    color: #eee;
    margin: 0 8px;
    text-decoration: none;
}
footer .footer-links a:hover {
    text-decoration: underline;
}
footer p {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

.floating-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between buttons */
}

.floating-button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: white;
  line-height: 50px;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
  background-color: #25D366; /* WhatsApp green */
}

.call-float {
  background-color: #34b7f1; /* Call blue */
}

/* Ensure icons are centered */
.floating-button i {
  line-height: 50px;
}

@media (max-width: 768px) {
  .floating-container {
    right: 10px;  /* Make it a bit more mobile-friendly */
    bottom: 15px;
  }

  .floating-button {
    width: 45px;
    height: 45px;
  }

  .floating-button i {
    font-size: 20px;  /* Slightly smaller icons on mobile */
  }
}


/* Responsive */
@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .mobile-menu-icon { display: block; }
    .service-card {
        width: 90%;
        margin: 15px auto;
    }
    .banner img {
        height: 250px;
    }
}
