body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: #0B3C5D;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    color: white;
}

.navbar a {
    color: white;
    margin-left: 20px;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.hero {
    min-height: 70vh;
    max-height: 850px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(rgba(11, 60, 93, 0.6), rgba(11, 60, 93, 0.6)),
        url('../assets/images/hero.jpg') center center / cover no-repeat;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Individual slides */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Dark overlay */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 60, 93, 0.55);
}

/* Ensure content stays above images */
.hero-content,
.arrow,
.dots {
    position: relative;
    z-index: 2;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: white;
}

.amenities {
    margin-top: 12px;
    font-size: 0.9rem;
}

.amenities ul {
    margin-top: 6px;
    padding-left: 18px;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .hero-content h2 {
        white-space: nowrap;
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* ← THIS is the missing piece */

    text-align: center;

    color: white;
}

.hero-actions {
    display: flex;
    gap: 16px;
    /* space between buttons */
    margin-top: 24px;
    flex-wrap: wrap;
    /* safe on small screens */
    justify-content: center;
}

.hero-content h1,
.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.10;
    margin-bottom: 20px;
    /* color: white; */
    font-family: 'Playfair Display', serif;
    /* text-align: center; */
}

.hero-content p {
    font-size: 1.0rem;
}

.hero-content .tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1px;
    line-height: 0.8;
}

.hero h1,
.hero h2 {
    color: white;
    font-family: 'Playfair Display', serif;
}

.hero p {
    color: #f1f5f9;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* slightly darker */
}

.tagline {
    font-style: italic;
    margin: 10px 0;
}

.highlight {
    position: relative;
    font-style: italic;
    font-weight: 500;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    /* warm Sri Lanka gold */
}

.gallery-section {
    padding: 0px 0;
    max-width: 1000px;
    margin: auto;
}

.section {
    padding: 80px 0;
    max-width: 1000px;
    margin: auto;
}

.section.alt {
    background: #FFFFFF;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #0B3C5D;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn:hover {
    background: #C89B3C;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d3b66;
    color: white;
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 55px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.villas {
    padding: 20px 0;
    background: #f9f9f9;
}

.experience-desc {
    font-size: 15px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6
}

p {
    margin-bottom: 16px;
}

/* Villa Card */
.villa-card {
    display: flex;
    gap: 35px;
    align-items: center;
    flex-direction: row-reverse;
    padding: 28px 0;
    position: relative;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.villa-card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.08),
            transparent);
}

.villa-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    display: block;
}

.villa-image {
    width: 45%;
    height: 360px;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    overflow: hidden;
    padding: 16px;
    background: #f6f7f8;
    /* soft neutral background */
    border-radius: 18px;
}

.villa-content {
    max-width: 520px;
    flex: 1;
    /* allows text area to expand */
    text-align: left;
}

.villa-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.villa-content p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.villa-content ul {
    margin-top: 8px;
    margin-bottom: 16px;
}

.villa-actions {
    display: flex;
    gap: 14px;
    /* space for future buttons */
    margin-top: 18px;
}

.location {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.details {
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.features li {
    margin-bottom: 6px;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 12px 22px;
    background: #0b3c5d;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #06283d;
}

.experiences {
    padding: 20px 0;
    background: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.experience-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.experience-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.exp-desc {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #444;
}

.exp-features {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.exp-features li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Highlight middle experience */
.highlight-exp {
    background: #0b3c5d;
    color: white;
}

.highlight-exp .exp-desc,
.highlight-exp li {
    color: white;
}

/* Button */
.btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid #0b3c5d;
    color: #0b3c5d;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.highlight-exp .btn-secondary {
    border-color: white;
    color: white;
}

.exp-image {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.exp-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.highlight-exp .exp-image img {
    filter: brightness(0.9);
}

.reviews-section {
    padding: 20px 0;
    background: #fafafa;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.stars {
    color: #f5b50a;
    font-size: 18px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.review-meta a {
    color: #0B3C5D;
    font-weight: 600;
    text-decoration: none;
}

.review-meta a:hover {
    text-decoration: underline;
}

.platform {
    font-weight: 500;
}

.review-links {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
}

.review-links a {
    margin: 0 8px;
    text-decoration: underline;
    color: #333;
}

.why-direct-section {
    padding: 80px 0;
    background: #ffffff;
}

.direct-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-card {
    background: #f9f9f9;
    padding: 26px;
    border-radius: 18px;
    text-align: center;
}

.benefit-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.direct-cta {
    text-align: center;
    margin-top: 40px;
}

.maps-section {
    padding: 20px 0;
    background: #ffffff;
}

.maps-section h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.map-card h3 {
    margin-bottom: 6px;
}

.map-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.map-embed {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.experiences-section {
    padding: 72px 0;
}

.btn-primary,
.btn-secondary {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Feature pills container */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px;
}

/* Individual pill */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1.5px solid #1f2937;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    white-space: nowrap;
    transition: all 0.25s ease;
}

/* Villa meta row */
.villa-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 12px;
    gap: 16px;
    flex-wrap: wrap;
}

/* Left side: guests & bathrooms */
.meta-left {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.85rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Price block */
.meta-price {
    text-align: right;
    white-space: nowrap;
}

.meta-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.meta-price .per-night {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0px;
}

/* Villa image slider */
.villa-slider {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
}

.villa-slides {
    position: relative;
    width: 100%;
    height: 100%;
}


.villa-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* IMPORTANT: no ugly cropping */
    object-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.villa-slide.active {
    opacity: 1;
}

/* Navigation arrows */
.villa-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.villa-nav.prev {
    left: 1px;
}

.villa-nav.next {
    right: 1px;
}

/* Dots */
.villa-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.villa-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.villa-dots .dot.active {
    background: white;
}

.site-footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-content h3,
.footer-content h4 {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-content p {
    color: #cbd5f5;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links a {
    display: block;
    color: #cbd5f5;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.whatsapp-footer {
    display: inline-block;
    margin-top: 8px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}

.small {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 6px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.lang-switch {
    margin-top: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-switch a {
    text-decoration: none;
    font-weight: 500;
    color: white;
    margin-left: 0px;
    font-size: 0.65rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    opacity: 0.6;
}

.lang-switch a.active {
    opacity: 1;
    font-weight: 700;
    text-decoration: underline;
}

.lang-switch .sep {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* EXPERIENCE SLIDER */
.exp-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f6f7f8;
    border-radius: 14px;
    overflow: hidden;
}

.exp-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.exp-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exp-slide.active {
    opacity: 1;
}

/* arrows */
.exp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
}

.exp-nav.prev {
    left: 10px;
}

.exp-nav.next {
    right: 10px;
}

/* dots */
.exp-dots {
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.exp-dots .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 3px;
}

.exp-dots .dot.active {
    background: white;
}

.about-section {
    padding: 80px 20px;
}

.about-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-section p {
    margin-bottom: 18px;
    line-height: 1.7;
    max-width: 800px;
}

.about-section ul {
    margin: 20px 0;
}

.about-highlight {
    margin-top: 30px;
    font-weight: 600;
    font-style: italic;
}

.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.contact-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-content p {
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: #0b3c5d;
    border-radius: 4px;
}

.reviews-grid {
    scroll-snap-type: x mandatory;
}

.review-card {
    scroll-snap-align: start;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 40px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.review-card {
    min-width: 380px;
    /* Fixed card width */
    max-width: 380px;
    height: 320px;
    /* Fixed height */
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.review-text {
    overflow-y: auto;
    /* Internal vertical scroll */
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-text::-webkit-scrollbar {
    width: 6px;
}

.review-text::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* ============================
   HAMBURGER MENU
   ============================ */

/* Hide hamburger on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-overlay.open {
    display: block;
}

/* Floating Button */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0B3C5D, #0f4c75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(11, 60, 93, 0.5);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: 0.3s ease;
}

.wa-float:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(11, 60, 93, 0.7);
}

.wa-float img {
    width: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Notification Badge */
.wa-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff3b3b;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Window */
.wa-chat {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: #f5f5f5;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.wa-header {
    background: linear-gradient(135deg, #1576b6, #0f4c75);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header p {
    font-size: 12px;
    margin: 3px 0 0 0;
}

#waClose {
    cursor: pointer;
    font-size: 18px;
}

.wa-body {
    padding: 16px;
}

.wa-message {
    background: white;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.wa-buttons a {
    display: block;
    text-decoration: none;
    background: white;
    border: 1px solid #0B3C5D;
    padding: 10px;
    border-radius: 25px;
    margin-bottom: 10px;
    color: #0B3C5D;
    font-weight: 500;
    text-align: center;
    transition: 0.3s;
}

.wa-buttons a:hover {
    background: #0B3C5D;
    color: white;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .wa-chat {
        width: 90%;
        right: 5%;
    }
}

/* ============================
   TABLET  (≤ 1024px)
   ============================ */
@media (max-width: 1024px) {
    .direct-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        flex: 0 0 50%;
    }
}

/* ============================
   MOBILE  (≤ 768px)
   ============================ */
@media (max-width: 768px) {

    /* --- Typography --- */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* --- Navbar --- */
    .navbar {
        padding: 14px 20px;
        flex-wrap: nowrap;
        position: relative;
    }

    .logo {
        font-size: 1.1rem;
        white-space: normal;
        flex: 1;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide nav wrapper by default on mobile */
    .nav-wrapper {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background: #0B3C5D;
        z-index: 1000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-wrapper.open {
        display: flex;
    }

    .nav-wrapper nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 0;
    }

    .nav-wrapper nav a {
        margin-left: 0;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .lang-switch {
        margin-top: 20px;
    }

    /* --- Container --- */
    .container {
        padding: 0 20px;
    }

    /* --- Sections --- */
    .villas {
        padding: 40px 0;
    }

    .experiences {
        padding: 40px 0;
    }

    .maps-section {
        padding: 40px 0;
    }

    .reviews-section {
        padding: 40px 0;
    }

    .why-direct-section {
        padding: 50px 0;
    }

    .about-section {
        padding: 50px 20px;
    }

    /* --- Hero --- */
    .hero {
        min-height: 80vh;
        padding-bottom: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.85rem;
        line-height: 1.25;
        padding: 0 8px;
    }

    .hero-content p {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .hero .tagline {
        font-size: 1.05rem;
        margin-top: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        padding: 6px;
    }

    /* --- Villa cards --- */
    .villa-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .villa-image {
        width: 100%;
        height: 220px;
        padding: 10px;
    }

    .villa-image img {
        max-width: 100%;
    }

    .villa-content {
        max-width: 100%;
    }

    .villa-content h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* --- Feature pills --- */
    .pill {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    /* --- Villa meta --- */
    .villa-meta {
        align-items: flex-start;
    }

    .meta-price {
        text-align: left;
    }

    /* --- Experience grid --- */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-card {
        padding: 22px;
    }

    /* --- Maps --- */
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .map-embed {
        height: 240px;
    }

    /* --- Reviews --- */
    .review-card {
        flex: 0 0 85vw;
        min-width: 0;
        max-width: none;
        height: auto;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    /* --- Direct benefits --- */
    .direct-benefits {
        grid-template-columns: 1fr;
    }

    /* --- Gallery --- */
    .gallery-section {
        padding: 30px 20px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery img {
        height: 160px;
    }
}

/* ============================
   EXTRA SMALL  (≤ 400px)
   ============================ */
@media (max-width: 400px) {

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.55rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 10px 18px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================
   HOVER EFFECTS (desktop only)
   ============================ */
@media (hover: hover) {
    .pill:hover {
        background: #1f2937;
        color: #ffffff;
        transform: translateY(-1px);
    }
}