* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #111111;
    line-height: 1.6;
    padding-bottom: 60px; /* space for fixed bottom bar */
}

a {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== NAVIGATION ========== */
.fwn-nav-header {
    background: #ffffff;
    border-bottom: 2px solid #111111;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.fwn-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fwn-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.fwn-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.fwn-nav-link {
    color: #111111 !important;
    margin: 0 12px;
    font-size: 14px;
    font-weight: 600 !important;
}

.fwn-nav-link:hover,
.fwn-nav-link.active {
    color: #000000 !important;
}

.fwn-nav-btn {
    background: #111111;
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 800 !important;
    font-size: 13px;
    margin-left: 10px;
}

.fwn-nav-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.fwn-bar {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    background-color: #111111;
    transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .fwn-nav-toggle { display: block; }
    .fwn-nav-menu {
        position: fixed;
        left: -100%;
        top: 62px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.35s ease;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        padding: 20px 0 30px;
        z-index: 9998;
    }
    .fwn-nav-menu.active { left: 0; }
    .fwn-nav-list { flex-direction: column; }
    .fwn-nav-link {
        margin: 14px 0;
        display: block;
        font-size: 17px;
    }
    .fwn-nav-btn {
        margin: 15px 0 0;
        display: inline-block;
    }
}

/* ========== HERO ========== */
.fwn-hero-section {
    background: #111111;
    padding: 70px 16px;
    text-align: center;
}

.fwn-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
    font-weight: 800;
}

.fwn-subtext {
    font-size: 1rem;
    margin-bottom: 28px;
    color: #cccccc;
}

.fwn-btn-primary {
    background: #ffffff;
    color: #111111;
    padding: 12px 26px;
    font-weight: bold;
    border-radius: 4px;
    margin: 6px;
    display: inline-block;
    font-size: 14px;
}

.fwn-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 24px;
    font-weight: bold;
    border-radius: 4px;
    margin: 6px;
    display: inline-block;
    font-size: 14px;
}

/* ========== FEATURES ========== */
.fwn-features-grid {
    padding: 50px 0;
    background: #ffffff;
}

.fwn-section-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #111111;
    margin-bottom: 30px;
    padding: 0 16px;
}

.fwn-features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.fwn-feature-card {
    background: #f5f5f5;
    padding: 18px 12px;
    text-align: center;
    border-radius: 8px;
    border: 2px solid #111111;
    font-weight: 600;
    font-size: 14px;
}

/* ========== CONTENT AREA ========== */
.fwn-content-area {
    background: #f5f5f5;
    padding: 40px 0;
}

.fwn-content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.fwn-content-area h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.fwn-content-area h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.fwn-content-area p {
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 15px;
}

/* ========== PROFILES ========== */
.fwn-main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}

.fwn-profiles-wrapper {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.fwn-main-heading {
    color: #111111;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fwn-section-intro {
    color: #555555;
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.fwn-profile-grid-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fwn-card {
    background: #ffffff;
    border: 2px solid #111111;
    border-radius: 8px;
    overflow: hidden;
}

.fwn-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fwn-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwn-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
}

.fwn-verified-tag {
    background: #111111;
    color: #ffffff;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 700;
}

.fwn-rating-tag {
    background: #ffffff;
    color: #111111;
    border: 1px solid #111111;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 4px;
}

.fwn-details {
    padding: 12px 10px;
    text-align: left;
}

.fwn-name {
    color: #111111;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.fwn-link-btn {
    color: #111111 !important;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/* Desktop profiles */
@media (min-width: 900px) {
    .fwn-profile-grid-four {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .fwn-image-box {
        height: 340px;
    }
}

/* ========== BOOKING SECTION ========== */
.fwn-booking-redesign {
    padding: 50px 0;
    background: #111111;
}

.fwn-booking-card {
    background: #ffffff;
    border: 3px solid #111111;
    border-radius: 8px;
    padding: 30px 16px;
    text-align: center;
    margin: 0 12px;
}

.fwn-booking-header {
    color: #111111;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

.fwn-booking-subtext {
    color: #444444;
    font-size: 14px;
    margin-bottom: 25px;
}

.fwn-action-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fwn-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
}

.fwn-call-glow {
    background: #111111;
    color: #ffffff !important;
}

.fwn-wa-glow {
    background: #25d366;
    color: #ffffff !important;
}

.fwn-icon {
    font-size: 22px;
    margin-right: 10px;
}

.fwn-btn-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.fwn-btn-text span {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.85;
}

.fwn-btn-text strong {
    font-size: 15px;
    font-weight: 800;
}

.fwn-trust-badges {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #555555;
    font-size: 13px;
}

@media (min-width: 600px) {
    .fwn-action-container {
        flex-direction: row;
        justify-content: center;
    }
    .fwn-book-btn {
        width: auto;
        min-width: 220px;
    }
    .fwn-trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* ========== SERVICES ========== */
.fwn-premium-services {
    background: #ffffff;
    padding: 50px 0;
}

.fwn-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.fwn-service-card {
    background: #f5f5f5;
    padding: 24px 18px;
    border-radius: 8px;
    border: 2px solid #111111;
}

.fwn-gradient-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111111;
    text-transform: uppercase;
}

.fwn-card-intro {
    color: #555555;
    margin-bottom: 16px;
    font-size: 14px;
}

.fwn-custom-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333333;
}

.fwn-bullet {
    margin-right: 10px;
}

.fwn-choice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fwn-tag {
    background: #111111;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.fwn-content-box {
    background: #f5f5f5;
    padding: 24px 18px;
    border-radius: 8px;
    border-left: 5px solid #111111;
}

.fwn-para {
    font-size: 14px;
    line-height: 1.75;
    color: #333333;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .fwn-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== LOCATION ========== */
.fwn-location-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.fwn-section-heading-gold {
    text-align: center;
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 10px;
    padding: 0 16px;
}

.fwn-top-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555555;
    font-size: 14px;
    padding: 0 16px;
}

.fwn-location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.fwn-loc-card {
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #111111;
}

.fwn-loc-content {
    padding: 16px;
}

.fwn-loc-content h3 {
    color: #111111;
    font-size: 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid #111111;
    padding-bottom: 6px;
}

.fwn-loc-list li {
    font-size: 13px;
    color: #333333;
    margin-bottom: 4px;
}

.fwn-loc-tag {
    font-size: 11px;
    font-weight: 700;
    color: #111111;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #111111;
}

.fwn-hotel-seo-box {
    background: #ffffff;
    padding: 24px 18px;
    border-radius: 8px;
    border-left: 5px solid #111111;
}

.fwn-seo-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 12px;
}

@media (min-width: 600px) {
    .fwn-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1000px) {
    .fwn-location-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== GUIDE ========== */
.fwn-booking-guide {
    background: #ffffff;
    padding: 50px 0;
}

.fwn-guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.fwn-guide-card {
    background: #f5f5f5;
    padding: 24px 18px;
    border-radius: 8px;
    border: 2px solid #111111;
}

.fwn-guide-title {
    color: #111111;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.fwn-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.fwn-step-num {
    color: #111111;
    font-size: 22px;
    font-weight: 900;
    margin-right: 10px;
}

.fwn-step-item p {
    font-size: 14px;
    color: #333333;
}

.fwn-privacy-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333333;
}

.fwn-premium-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white !important;
    padding: 13px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 16px;
    width: 100%;
}

@media (min-width: 800px) {
    .fwn-guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== FINAL WORDS ========== */
.fwn-final-words {
    background: #111111;
    padding: 50px 0;
}

.fwn-final-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.fwn-final-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1.3;
}

.fwn-final-para {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.fwn-call-action {
    color: #ffffff;
    font-size: 15px;
    margin: 16px 0;
}

.fwn-final-sub {
    color: #999999;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
}

.fwn-book-text {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.fwn-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.fwn-phone-number {
    color: #ffffff !important;
}

/* ========== FOOTER ========== */
.fwn-footer {
    background: #000000;
    padding: 40px 0 20px;
    border-top: 3px solid #ffffff;
}

.fwn-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 0 16px;
}

.fwn-footer-logo {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fwn-footer-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
}

.fwn-footer-desc {
    color: #bbbbbb;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.fwn-footer-links li,
.fwn-trust-list li {
    margin-bottom: 8px;
    font-size: 13px;
}

.fwn-footer-links a {
    color: #dddddd;
}

.fwn-copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #888888;
    margin-bottom: 50px;
}

@media (min-width: 700px) {
    .fwn-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1000px) {
    .fwn-footer-grid {
        grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    }
}

/* ========== FIXED BOTTOM BAR ========== */
.nowcalling {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.lcol,
.ccol {
    flex: 1;
    text-align: center;
}

.lcol {
    background: #111111;
}

.ccol {
    background: #25d366;
}

.lcol a,
.ccol a {
    display: block;
    padding: 13px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

/* ========== EXTRA SMALL PHONES ========== */
@media (max-width: 380px) {
    .fwn-main-title { font-size: 1.6rem; }
    .fwn-booking-header { font-size: 1.25rem; }
    .fwn-image-box { height: 200px; }
    .fwn-profile-grid-four { gap: 12px; }
}