/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
}

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

.highlight { color: #d4a373; }

/* --- Header Section --- */
.contact-section {
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: #d4a373;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.title {
    font-size: 3rem;
    color: #2d5a27;
    margin: 10px 0;
}

/* --- Wrapper (Info + Map) --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.map-area {
    flex: 1.2;
    height: 500px;
}

/* --- Info Cards --- */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #2d5a27;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f4f7f4;
    color: #2d5a27;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
}

.info-text h4 {
    font-size: 1.1rem;
    color: #2d5a27;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
    font-weight: 500;
}

.wa-tag {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.8rem;
    background: #25d366;
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* --- Social Icons --- */
.social-reach {
    margin-top: 40px;
    padding-left: 10px;
}

.social-reach h4 { margin-bottom: 20px; color: #444; }

.social-icons { display: flex; gap: 15px; }

.social-icons a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #2d5a27;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #2d5a27;
    color: #fff;
}

/* --- Map Container --- */
.map-container {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 10px solid #fff;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .map-area {
        width: 100%;
        height: 400px;
    }
}

/* ===== Shared Navbar + Footer ===== */
body {
    padding-top: 120px;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5a27;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a373;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d5a27;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-whatsapp {
    background: #2d5a27;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #d4a373;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    margin-left: 15px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #2d5a27;
    transition: all 0.3s ease;
}

.footer {
    background-color: #111111;
    padding: 80px 0 30px;
    color: #ffffff;
    border-top: 5px solid #2d5a27;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

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

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-box h4 {
    color: #d4a373;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo span { color: #d4a373; }

.about-box p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d5a27;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #d4a373;
}

.contact-box ul {
    list-style: none;
    padding: 0;
}

.contact-box ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-box i {
    color: #d4a373;
    width: 20px;
}

.footer-map,
.footer .map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    line-height: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

body.menu-open {
    overflow: hidden;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px 50px;
    background: rgba(45, 90, 39, 0.95);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: #ffffff;
}

.navbar.scrolled .nav-links a::after {
    background: #ffffff;
}

.navbar.scrolled .bar {
    background-color: #ffffff;
}

.navbar.scrolled .btn-whatsapp {
    background: #ffffff;
    color: #2d5a27;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    body {
        padding-top: 100px;
    }

    .navbar {
        width: 95%;
        top: 10px;
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        padding: 16px 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 8px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .contact-box ul li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo img {
        height: 42px;
    }

    .btn-whatsapp {
        padding: 9px 16px;
        font-size: 0.82rem;
    }
}


.footer-location-link,
.contact-location-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-location-link:hover,
.contact-location-link:hover {
    color: #d4a373;
}

.map-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.map-open-link:hover {
    background: #d4a373;
    color: #1f1f1f;
    border-color: #d4a373;
}

.contact-map-link {
    margin-top: 18px;
    color: #2d5a27;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.contact-map-link:hover {
    color: #1f1f1f;
}


/* ===== Sticky WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.55rem;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
    z-index: 1200;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34);
}
.floating-whatsapp::after {
    content: 'WhatsApp';
    position: absolute;
    right: 68px;
    white-space: nowrap;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all 0.3s ease;
}
.floating-whatsapp:hover::after {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
    }
    .floating-whatsapp::after {
        display: none;
    }
}

.tripadvisor-icon {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
}

.tripadvisor-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.hero-social-sidebar .tripadvisor-icon {
    width: 32px;
    height: 32px;
}

.social-links .tripadvisor-icon,
.social-icons .tripadvisor-icon {
    width: 28px;
    height: 28px;
}


@media (max-width: 992px) {
    .navbar,
    .navbar.scrolled {
        top: 10px;
        width: 95%;
        max-width: 95%;
        border-radius: 32px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.96);
    }

    .navbar.scrolled .logo-text,
    .navbar.scrolled .nav-links a,
    .navbar.scrolled .bar {
        color: inherit;
        background-color: #2d5a27;
    }

    .navbar.scrolled .btn-whatsapp {
        background: #2d5a27;
        color: #ffffff;
    }

    .navbar.scrolled .nav-links.active {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar.scrolled .nav-links.active a {
        color: #1a1a1a;
    }

    .navbar.scrolled .nav-links a::after {
        background: #d4a373;
    }
}

/* ===== Mobile stability fixes: Contact page ===== */
html,
body {
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}

.info-text p,
.contact-location-link,
.footer-location-link,
.map-open-link,
.contact-box ul li,
.footer-box p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 992px) {
    .contact-section {
        padding: 72px 0;
    }

    .contact-header {
        margin-bottom: 42px;
    }

    .contact-header p {
        max-width: 640px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-info,
    .map-area {
        min-width: 0;
        width: 100%;
    }

    .map-area {
        height: 380px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 92px;
    }

    .navbar,
    .navbar.scrolled {
        border-radius: 24px;
        padding: 10px 14px;
    }

    .navbar .container {
        gap: 10px;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 0.6px;
    }

    .logo img {
        height: 38px;
        margin-right: 8px;
    }

    .btn-whatsapp {
        padding: 8px 14px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .contact-section {
        padding: 64px 0;
    }

    .title {
        font-size: clamp(1.95rem, 8vw, 2.45rem);
        line-height: 1.15;
    }

    .contact-header {
        margin-bottom: 34px;
    }

    .contact-header p {
        font-size: 0.98rem;
    }

    .contact-wrapper {
        gap: 24px;
    }

    .info-card {
        padding: 22px 18px;
        gap: 14px;
        border-radius: 20px;
        align-items: flex-start;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .info-text {
        min-width: 0;
    }

    .info-text h4 {
        font-size: 1rem;
    }

    .info-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .social-reach {
        margin-top: 28px;
        padding-left: 0;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .map-area {
        height: 320px;
    }

    .map-container {
        border-width: 6px;
        border-radius: 26px;
    }

    .contact-map-link {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
    }

    .footer {
        margin-top: 60px;
        padding-top: 68px;
        padding-bottom: 28px;
    }

    .footer-wrapper {
        gap: 28px;
    }

    .contact-box ul li {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        margin-top: 34px;
        padding-top: 18px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 88px;
    }

    .navbar,
    .navbar.scrolled {
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        top: 8px;
        padding: 9px 12px;
        border-radius: 20px;
    }

    .logo-text {
        font-size: 0.82rem;
        max-width: 108px;
        line-height: 1.1;
    }

    .logo img {
        height: 34px;
    }

    .btn-whatsapp {
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .menu-toggle {
        margin-left: 8px;
    }

    .nav-links.active {
        top: calc(100% + 10px);
        padding: 14px;
        border-radius: 18px;
    }

    .container {
        width: min(92%, 100% - 24px);
    }

    .contact-section {
        padding: 56px 0;
    }

    .title {
        font-size: clamp(1.7rem, 9vw, 2.05rem);
    }

    .subtitle {
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }

    .info-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .map-area {
        height: 280px;
    }

    .map-container {
        border-width: 5px;
        border-radius: 22px;
    }

    .contact-map-link {
        font-size: 0.9rem;
    }
}
