/* Global Styles */
:root {
    --primary-color: #0b6e4f; /* Deep jungle green */
    --secondary-color: #3a9278; /* Medium tropical green */
    --accent-color: #7dcfb6; /* Light tropical accent */
    --dark-color: #00332c; /* Dark jungle green */
    --light-color: #e9f5e9; /* Light jungle mist */
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --booking-color: #1d7874; /* Tropical teal */
    --booking-hover: #3a9278; /* Medium tropical green */
    --testimonial-bg: #f9fcf9; /* Very light green for testimonials */
    --faq-border: #d4e9d4; /* Light border color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-right: 15px;
    margin-top: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 51, 44, 0.15);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background-color: var(--booking-color);
    border-color: var(--booking-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 51, 44, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-primary:hover {
    background-color: rgb(233 245 233 / 80%);
    color: var(--booking-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: rgb(233 245 233 / 80%);
    color: var(--secondary-color);
}

.booking-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.booking-cta-container {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: rgba(42, 157, 143, 0.15);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.booking-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-link {
    display: block;
    padding: 8px 15px;
    background-color: var(--booking-color);
    color: var(--white);
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.booking-link:hover {
    background-color: var(--booking-hover);
    color: var(--white);
}

.booking-options {
    margin-top: 60px;
    margin-bottom:60px;
}

.booking-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.booking-card {
    flex: 1 1 300px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.booking-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.booking-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-color);
}

/* Header and Hero Section */
.hero {
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav {
    transition: transform 0.4s ease, opacity 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mobile-menu-btn i {
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active {
    background-color: var(--white);
    transform: rotate(90deg);
}

.mobile-menu-btn.active i {
    color: var(--primary-color);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 50px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.hero:hover::before {
    opacity: 0.3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/fortunalwaterfall.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hexagon-image {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hexagon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hexagon-image:hover img {
    transform: scale(1.1);
}

/* Treatments Section */
.treatments {
    padding: 100px 0;
    background-color: var(--light-color);
    background-image: linear-gradient(to bottom, rgba(233, 245, 233, 0.85), rgba(233, 245, 233, 0.85));
    background-position: center;
    background-size: cover;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.treatment-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.treatment-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.treatment-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
}

.duration {
    color: var(--dark-color);
}

.price {
    color: var(--accent-color);
    font-weight: 600;
}

/* Tours Section */
.tours {
    padding: 100px 0;
    background-color: var(--white);
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/coyin.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tour-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
    display: inline-block;
}

.tour-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    grid-auto-rows: 1fr;
}

.tour-item {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 180px; /* Minimum height for all tour items */
    position: relative;
    padding-bottom: 40px; /* Space for the price at bottom */
}

.tour-item:hover {
    transform: translateX(5px);
    background-color: rgba(11, 110, 79, 0.1);
    border-left: 3px solid var(--primary-color);
}

.tour-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.tour-item .price {
    font-size: 0.9rem;
    position: absolute;
    bottom: 15px;
    left: 15px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
    background-image: linear-gradient(to bottom, rgba(233, 245, 233, 0.9), rgba(233, 245, 233, 0.9)), url('images/palm-leaves.svg');
    background-position: right bottom;
    background-size: 200px;
    background-repeat: no-repeat;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-privacy {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-privacy label {
    font-size: 14px;
    margin-bottom: 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--secondary-color);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(233, 245, 233, 0.85), rgba(0, 51, 44, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 150px 0 120px;
    border-bottom: 5px solid var(--primary-color);
}

.spa-page .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 51, 44, 0.4)), url('images/spa.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 150px;
}

.tours-page .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 51, 44, 0.4)), url('images/tours.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 150px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--testimonial-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/palm-leaves.svg');
    background-size: 300px;
    background-position: left bottom;
    opacity: 0.05;
    z-index: 0;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    flex: 1 1 300px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 30px;
}

.rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-author p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Local Attractions Section */
.local-attractions {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.attractions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.attraction-card {
    flex: 1 1 300px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.attraction-content p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.attraction-content p:last-child {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-left: 3px solid var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(11, 110, 79, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--dark-color);
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 1000px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 70px 0 20px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(0, 51, 44, 0.95), rgba(0, 51, 44, 0.95)), url('images/footer.jpg');
    background-size: cover;
    background-position: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--dark-color));
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/palm-leaves.svg');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 200px;
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3,
.footer-social h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 200% 200%;
    animation: instagram-gradient 5s ease infinite;
}

.social-icons a.instagram:hover {
    transform: translateY(-5px) rotate(5deg);
}

@keyframes instagram-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Booking Section */
.footer-booking {
    flex: 1;
    min-width: 250px;
    background-color: rgba(42, 157, 143, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.footer-booking h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-booking h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-booking p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-booking-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-booking-btn {
    display: block;
    padding: 10px 15px;
    background-color: var(--booking-color);
    color: var(--white);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--booking-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.footer-booking-btn:hover {
    background-color: transparent;
    color: var(--booking-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-booking-btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* Improve SEO with better heading hierarchy */
h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Improve accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 130px 0 100px;
    }
    
    .spa-page .page-header,
    .tours-page .page-header {
        padding: 150px 0 120px;
    }
    
    .tour-items {
        grid-auto-rows: auto;
    }
    
    .tour-item {
        min-height: 200px;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        padding: 80px 20px 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul li {
        margin-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
        color: var(--dark-color);
    }
    
    nav ul li a::after {
        display: none;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .treatments-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-booking-cta {
        align-items: center;
    }
    
    .footer-booking-btn {
        width: 80%;
        max-width: 300px;
    }
}

 /* Form Feedback Styles */
.form-feedback {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    display: none;
}

.feedback-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.feedback-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
}

.feedback-info {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    border: 1px solid #2196F3;
}

/* Keyboard focus styles for accessibility */
a.keyboard-focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default, shown via JS */
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    padding: 10px 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content .btn {
    margin: 0;
    padding: 8px 20px;
    white-space: nowrap;
}

@media (max-width: 576px) {
    /* Page header adjustments for smaller screens */
    .page-header {
        padding: 100px 0 80px;
    }
    
    .spa-page .page-header,
    .tours-page .page-header {
        padding: 120px 0 100px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    /* Form feedback adjustments for mobile */
    .form-feedback {
        padding: 12px;
        margin: 15px 0;
        font-size: 14px;
    }
    
    /* Improved mobile menu for smaller screens */
    nav {
        width: 85%;
        right: -85%;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }
    
    .mobile-menu-btn i {
        font-size: 16px;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    /* Other mobile styles */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-social,
    .footer-booking {
        text-align: center;
        min-width: 100%;
    }
    
    .footer-links ul li a {
        display: inline-block;
        padding: 8px 12px;
        margin-bottom: 5px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    
    .footer-links ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 12px;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .footer-booking-btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 15px;
        font-size: 16px;
    }
    
    /* Mobile cookie consent */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content .btn {
        margin-top: 10px;
        width: 100%;
    }
}
