:root {
    --primary: #4caf50;
    --primary-dark: #45a049;
    --secondary: #ffeb3b;
    --dark: #264653;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; position: relative; padding-bottom: 0.5rem; }

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover { background-color: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }

section { padding: 80px 0; }
.text-center { text-align: center; }
.text-center h2::after { left: 50%; transform: translateX(-50%); }

/* Header */
.header { }
header { background-color: var(--white); box-shadow: var(--shadow); position: fixed; width: 100%; top: 0; z-index: 1000; }
/* Keep the navbar a fixed height so enlarging the image doesn't expand the header */
.navbar { display:flex; justify-content:space-between; align-items:center; padding:0; height:80px; }
.logo { position:relative; display:block; height:80px; width:auto; }
.logo span { color: var(--secondary); position:absolute; left:-9999px; }
/* Absolutely position the image inside the fixed-height logo container so it can be larger visually
   without increasing the navbar height */
.logo img { position:absolute; left:12px; top:50%; transform:translateY(-50%); height:220px; width:auto; display:block; z-index: 50; }
.logo .text-fallback {
    /* visually hidden but available to screen readers */
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.nav-links { display:flex; gap:30px; margin-left: auto; align-items: center; }
.nav-links a { font-weight:500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.mobile-toggle { display:none; font-size:1.5rem; cursor:pointer; }

/* Small adjustment: style CTA button in the nav */
.nav-links .btn-cta {
    padding: 8px 14px;
    border-radius: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-weight:600;
    box-shadow: var(--shadow);
}
.nav-links .btn-cta:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero */
.hero { background: linear-gradient(rgba(38,70,83,0.8), rgba(38,70,83,0.9)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80'); background-size:cover; background-position:center; color:var(--white); padding:180px 0 100px; text-align:center; }
.hero h1 { font-size:3rem; margin-bottom:1.5rem; }
.hero p { font-size:1.2rem; max-width:700px; margin:0 auto 2rem; }
.hero-btns {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    gap: 20px;
}
.hero-btns .btn {
    width: calc(50% - 10px);
    max-width: 220px;
    margin: 0;
}

@media (max-width: 576px) {
    .hero-btns {
        padding: 0 20px;
        max-width: 400px;
    }
    .hero-btns .btn {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
}

/* Features slider */
.features { background-color:#f1f8f7; padding:60px 0; overflow:hidden; }
.features-slider { position:relative; margin-top:50px; padding:0 60px; }
.features-track { display:flex; gap:30px; overflow-x:auto; scroll-behavior:smooth; scrollbar-width:none; -ms-overflow-style:none; padding:20px 0; -webkit-overflow-scrolling: touch; }
.features-track::-webkit-scrollbar { display:none; }
.feature-card { flex:0 0 300px; height:280px; perspective:1000px; }
.feature-card-inner { position:relative; width:100%; height:100%; text-align:center; background-color:var(--white); border-radius:8px; padding:30px; box-shadow:var(--shadow); transition:transform 0.4s; display:flex; flex-direction:column; justify-content:center; align-items:center; }
.feature-card-inner:hover { transform: translateY(-10px); }
.feature-icon { font-size:2.5rem; color:var(--primary); margin-bottom:20px; background-color: rgba(42,157,143,0.08); width:80px; height:80px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.feature-card-inner:hover .feature-icon { background-color:var(--primary); color:var(--white); transform:scale(1.05); }
.feature-card h3 { color:var(--dark); margin-bottom:10px; font-size:1.15rem; }
.feature-card p { color:var(--gray); font-size:0.95rem; margin:0; }
.slider-nav { position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; background-color:var(--white); border:none; box-shadow:var(--shadow); cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--primary); transition:var(--transition); z-index:1; }
.slider-nav:hover { background-color:var(--primary); color:var(--white); }
.slider-nav.prev { left:0; }
.slider-nav.next { right:0; }

/* About */
.about { background-color:var(--white); }
.about-content { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.about-image { border-radius:8px; overflow:hidden; box-shadow:var(--shadow); }
.about-image img { width:100%; height:auto; display:block; transition:var(--transition); }
.about-image:hover img { transform:scale(1.05); }

/* Services */
.services { background-color:#f1f8f7; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.services-grid .service-card:nth-child(4) .service-list li {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-grid .service-card:nth-child(4) .service-list li::before {
    /* override global absolute positioning — make the check inline */
    position: static;
    margin-right: 8px;
    left: auto;
    content: '✓';
}

/* Responsive fallbacks: tablet -> keep full-width below two columns; mobile -> single column */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid .service-card:nth-child(4) { grid-column: 1 / -1; }
    .services-grid .service-card:nth-child(4) .service-list { text-align: left; display: block; }
    .services-grid .service-card:nth-child(4) .service-list li { justify-content: flex-start; }
}

@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr; }
}
.service-card { background-color:var(--white); border-radius:8px; padding:30px; box-shadow:var(--shadow); transition:var(--transition); text-align:center; }
.service-card:hover { transform:translateY(-10px); }
.service-icon { font-size:2.5rem; color:var(--primary); margin-bottom:20px; }
.service-list { text-align:left; margin-top:15px; }
.service-list li { margin-bottom:8px; position:relative; padding-left:20px; }
.service-list li::before { content:'✓'; position:absolute; left:0; color:var(--primary); font-weight:bold; }

/* Reviews Section */
.reviews { background-color: var(--light); }
.reviews-carousel { position: relative; padding: 40px 0; }
.reviews-track { display: flex; gap: 30px; overflow-x: hidden; padding: 20px 0; }
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 300px;
    flex: 0 0 calc(33.333% - 20px);
}
.review-card .rating { color: var(--secondary); margin-bottom: 15px; }
.review-card .review-text { font-style: italic; margin-bottom: 20px; }
.review-card .reviewer-name { font-weight: 600; }

/* Areas Section */
.areas { background-color:var(--white); }
.areas-map {
    text-align: center; /* Center the image within its container */
    margin-top: 40px;
}
.wa-map {
    max-width: 100%; /* Ensure the image is not wider than its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image and allow margin auto */
    margin: 0 auto; /* Center the image */
    border-radius: 8px; /* Optional: add some rounded corners */
    box-shadow: var(--shadow); /* Optional: add a subtle shadow */
}
.business-hours {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}
.areas-grid { display:flex; flex-direction:column; gap:20px; margin-top:40px; max-width:1000px; margin-left:auto; margin-right:auto; }
.area-row { display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.area-card { background-color:#f1f8f7; padding:20px; border-radius:8px; text-align:center; transition:var(--transition); font-weight:500; }
.area-card:hover { background-color:var(--primary); color:var(--white); transform:translateY(-5px); }

@media (max-width: 768px) { .area-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .area-row { grid-template-columns: 1fr; } }

/* Contact */
.contact { background-color:var(--white); }
.contact-content { display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-top:40px; }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.contact-item { display:flex; align-items:flex-start; gap:15px; }
.contact-icon { font-size:1.5rem; color:var(--primary); margin-top:5px; }
.map { border-radius:8px; overflow:hidden; box-shadow:var(--shadow); height:100%; }
.map iframe { width:100%; height:100%; min-height:300px; border:none; }

/* Footer */
/* Increase top padding so a larger footer logo fits comfortably */
/* Footer - ensure logo can match navbar sizes */
footer { background-color:var(--dark); color:var(--white); padding:140px 0 30px; }
.footer-content { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:40px; margin-bottom:40px; align-items: start; }
.footer-logo { font-size:1.8rem; font-weight:700; margin-bottom:15px; display:block; }
.footer-about { display:flex; flex-direction:column; gap:8px; }
.footer-about p { margin: 0; }
.footer-logo { margin-bottom: 4px; }
.footer-logo span { color:var(--secondary); }
.footer-logo img { height: 220px; display:block; }

@media (max-width: 768px) {
    .footer-logo img { height: 170px; }
    footer { padding-top: 110px; }
}

@media (max-width: 576px) {
    .footer-logo img { height: 130px; }
    footer { padding-top: 90px; }
}
.footer-links h3 { margin-bottom:20px; position:relative; padding-bottom:10px; }
.footer-links h3::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:2px; background-color:var(--primary); }
.social-links { display:flex; gap:15px; margin-top:20px; }
.social-links a { display:flex; align-items:center; justify-content:center; width:40px; height:40px; background-color:rgba(255,255,255,0.1); border-radius:50%; transition:var(--transition); }
.social-links a:hover { background-color:var(--primary); transform:translateY(-5px); }
.copyright { text-align:center; padding-top:30px; border-top:1px solid rgba(255,255,255,0.1); }

/* Footer: wrap about text around the logo on desktop; stack on mobile */
.footer-about {
    /* use block so inline text can wrap around floated image */
    display: block;
}
.footer-about .footer-logo {
    float: left;
    margin-right: 14px;
    margin-bottom: 8px;
    width: auto;
}
.footer-about .footer-logo img {
    height: 140px; /* adjust to taste */
    width: auto;
    display: block;
}
.footer-about p {
    margin: 0 0 0.5rem 0;
    line-height: 1.45;
}
/* clearfix so footer container doesn't collapse */
.footer-about::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: on smaller screens stack logo above text */
@media (max-width: 768px) {
    .footer-about .footer-logo {
        float: none;
        margin: 0 0 8px 0;
        text-align: center;
    }
    .footer-about p {
        text-align: left;
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    .logo img { height:110px; }
    /* Keep nav links visible on small screens (no hamburger). Use horizontal layout */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
    .nav-links.active { display:flex; }
    .mobile-toggle { display:block; }
    .hero { padding:150px 0 80px; }
    .hero h1 { font-size:2rem; }
    /* Keep hero buttons horizontal even on mobile */
    .form-row { grid-template-columns:1fr; }
    section { padding:60px 0; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    /* tablet: still large but scaled down */
    .logo img { height:170px; left:10px; }
    /* Show nav links on tablet rather than using a hamburger */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
/* Booking Section */
.booking {
    background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(42, 157, 143, 0.9)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.booking h2 {
    color: var(--white);
}

.booking h2::after {
    background-color: var(--secondary);
}

.booking-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-links h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer: wrap about text around the logo on desktop; stack on mobile */
.footer-about {
    /* use block so inline text can wrap around floated image */
    display: block;
}
.footer-about .footer-logo {
    float: left;
    margin-right: 14px;
    margin-bottom: 8px;
    width: auto;
}
.footer-about .footer-logo img {
    height: 140px; /* adjust to taste */
    width: auto;
    display: block;
}
.footer-about p {
    margin: 0 0 0.5rem 0;
    line-height: 1.45;
}
/* clearfix so footer container doesn't collapse */
.footer-about::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: on smaller screens stack logo above text */
@media (max-width: 768px) {
    .footer-about .footer-logo {
        float: none;
        margin: 0 0 8px 0;
        text-align: center;
    }
    .footer-about p {
        text-align: left;
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    .logo img { height:110px; }
    /* Keep nav links visible on small screens (no hamburger). Use horizontal layout */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
    .nav-links.active { display:flex; }
    .mobile-toggle { display:block; }
    .hero { padding:150px 0 80px; }
    .hero h1 { font-size:2rem; }
    /* Keep hero buttons horizontal even on mobile */
    .form-row { grid-template-columns:1fr; }
    section { padding:60px 0; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    /* tablet: still large but scaled down */
    .logo img { height:170px; left:10px; }
    /* Show nav links on tablet rather than using a hamburger */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
/* Booking Section */
.booking {
    background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(42, 157, 143, 0.9)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.booking h2 {
    color: var(--white);
}

.booking h2::after {
    background-color: var(--secondary);
}

.booking-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-links h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer: wrap about text around the logo on desktop; stack on mobile */
.footer-about {
    /* use block so inline text can wrap around floated image */
    display: block;
}
.footer-about .footer-logo {
    float: left;
    margin-right: 14px;
    margin-bottom: 8px;
    width: auto;
}
.footer-about .footer-logo img {
    height: 140px; /* adjust to taste */
    width: auto;
    display: block;
}
.footer-about p {
    margin: 0 0 0.5rem 0;
    line-height: 1.45;
}
/* clearfix so footer container doesn't collapse */
.footer-about::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: on smaller screens stack logo above text */
@media (max-width: 768px) {
    .footer-about .footer-logo {
        float: none;
        margin: 0 0 8px 0;
        text-align: center;
    }
    .footer-about p {
        text-align: left;
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    .logo img { height:110px; }
    /* Keep nav links visible on small screens (no hamburger). Use horizontal layout */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
    .nav-links.active { display:flex; }
    .mobile-toggle { display:block; }
    .hero { padding:150px 0 80px; }
    .hero h1 { font-size:2rem; }
    /* Keep hero buttons horizontal even on mobile */
    .form-row { grid-template-columns:1fr; }
    section { padding:60px 0; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    /* tablet: still large but scaled down */
    .logo img { height:170px; left:10px; }
    /* Show nav links on tablet rather than using a hamburger */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
/* Booking Section */
.booking {
    background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(42, 157, 143, 0.9)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.booking h2 {
    color: var(--white);
}

.booking h2::after {
    background-color: var(--secondary);
}

.booking-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-links h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer: wrap about text around the logo on desktop; stack on mobile */
.footer-about {
    /* use block so inline text can wrap around floated image */
    display: block;
}
.footer-about .footer-logo {
    float: left;
    margin-right: 14px;
    margin-bottom: 8px;
    width: auto;
}
.footer-about .footer-logo img {
    height: 140px; /* adjust to taste */
    width: auto;
    display: block;
}
.footer-about p {
    margin: 0 0 0.5rem 0;
    line-height: 1.45;
}
/* clearfix so footer container doesn't collapse */
.footer-about::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: on smaller screens stack logo above text */
@media (max-width: 768px) {
    .footer-about .footer-logo {
        float: none;
        margin: 0 0 8px 0;
        text-align: center;
    }
    .footer-about p {
        text-align: left;
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    .logo img { height:110px; }
    /* Keep nav links visible on small screens (no hamburger). Use horizontal layout */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
    .nav-links.active { display:flex; }
    .mobile-toggle { display:block; }
    .hero { padding:150px 0 80px; }
    .hero h1 { font-size:2rem; }
    /* Keep hero buttons horizontal even on mobile */
    .form-row { grid-template-columns:1fr; }
    section { padding:60px 0; }
}

@media (max-width: 768px) {
    /* slightly smaller fixed navbar on tablet */
    .navbar { height: 72px; }
    .logo { height:72px; }
    /* tablet: still large but scaled down */
    .logo img { height:170px; left:10px; }
    /* Show nav links on tablet rather than using a hamburger */
    .nav-links { display: flex; position: static; width: auto; background: transparent; flex-direction: row; gap: 20px; padding: 0; box-shadow: none; text-align: left; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}