* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a1628;          /* deep navy */
    color: #e8e4d9;                     /* soft warm white */
    line-height: 1.6;
    padding-bottom: 60px;
}
a {
    color: #d4af37;                     /* gold */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
a:hover {
    color: #f0d78c;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== NAVIGATION ========== */
.fwn-nav-header {
    background: #0d1f38;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    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: #d4af37;
    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: #e8e4d9 !important;
    margin: 0 12px;
    font-size: 14px;
    font-weight: 600 !important;
}
.fwn-nav-link:hover,
.fwn-nav-link.active {
    color: #d4af37 !important;
}
.fwn-nav-btn {
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #0a1628 !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: #d4af37;
    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: #0d1f38;
        width: 100%;
        text-align: center;
        transition: 0.35s ease;
        box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        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: linear-gradient(180deg, #0a1628 0%, #0d1f38 100%);
    padding: 70px 16px;
    text-align: center;
    border-bottom: 1px solid #d4af37;
}
.fwn-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #d4af37;
    margin-bottom: 14px;
    line-height: 1.25;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
.fwn-subtext {
    font-size: 1rem;
    margin-bottom: 28px;
    color: #c9c4b8;
}
.fwn-btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #0a1628;
    padding: 12px 26px;
    font-weight: bold;
    border-radius: 4px;
    margin: 6px;
    display: inline-block;
    font-size: 14px;
}
.fwn-btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    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: #0d1f38;
}
.fwn-section-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #d4af37;
    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: #12253f;
    padding: 18px 12px;
    text-align: center;
    border-radius: 8px;
    border: 2px solid #d4af37;
    font-weight: 600;
    font-size: 14px;
    color: #e8e4d9;
}

/* ========== CONTENT AREA ========== */
.fwn-content-area {
    background: #0a1628;
    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;
    color: #d4af37;
}
.fwn-content-area h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #d4af37;
}
.fwn-content-area p {
    color: #c9c4b8;
    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: #0d1f38;
    padding: 50px 0;
    text-align: center;
}
.fwn-main-heading {
    color: #d4af37;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.fwn-section-intro {
    color: #c9c4b8;
    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: #12253f;
    border: 2px solid #d4af37;
    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: #d4af37;
    color: #0a1628;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 700;
}
.fwn-rating-tag {
    background: #0a1628;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 4px;
}
.fwn-details {
    padding: 12px 10px;
    text-align: left;
}
.fwn-name {
    color: #e8e4d9;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}
.fwn-link-btn {
    color: #d4af37 !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: #0a1628;
}
.fwn-booking-card {
    background: #12253f;
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 30px 16px;
    text-align: center;
    margin: 0 12px;
}
.fwn-booking-header {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}
.fwn-booking-subtext {
    color: #c9c4b8;
    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: linear-gradient(135deg, #d4af37, #b8942e);
    color: #0a1628 !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: #c9c4b8;
    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: #0d1f38;
    padding: 50px 0;
}
.fwn-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.fwn-service-card {
    background: #12253f;
    padding: 24px 18px;
    border-radius: 8px;
    border: 2px solid #d4af37;
}
.fwn-gradient-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #d4af37;
    text-transform: uppercase;
}
.fwn-card-intro {
    color: #c9c4b8;
    margin-bottom: 16px;
    font-size: 14px;
}
.fwn-custom-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #e8e4d9;
}
.fwn-bullet {
    margin-right: 10px;
}
.fwn-choice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fwn-tag {
    background: #d4af37;
    color: #0a1628;
    padding: 7px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}
.fwn-content-box {
    background: #12253f;
    padding: 24px 18px;
    border-radius: 8px;
    border-left: 5px solid #d4af37;
}
.fwn-para {
    font-size: 14px;
    line-height: 1.75;
    color: #c9c4b8;
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .fwn-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== LOCATION ========== */
.fwn-location-section {
    background: #0a1628;
    padding: 50px 0;
}
.fwn-section-heading-gold {
    text-align: center;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    padding: 0 16px;
}
.fwn-top-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #c9c4b8;
    font-size: 14px;
    padding: 0 16px;
}
.fwn-location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}
.fwn-loc-card {
    background: #12253f;
    border-radius: 8px;
    border: 2px solid #d4af37;
}
.fwn-loc-content {
    padding: 16px;
}
.fwn-loc-content h3 {
    color: #d4af37;
    font-size: 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 6px;
}
.fwn-loc-list li {
    font-size: 13px;
    color: #e8e4d9;
    margin-bottom: 4px;
}
.fwn-loc-tag {
    font-size: 11px;
    font-weight: 700;
    color: #0a1628;
    background: #d4af37;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}
.fwn-hotel-seo-box {
    background: #12253f;
    padding: 24px 18px;
    border-radius: 8px;
    border-left: 5px solid #d4af37;
}
.fwn-seo-text {
    font-size: 14px;
    line-height: 1.7;
    color: #c9c4b8;
    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: #0d1f38;
    padding: 50px 0;
}
.fwn-guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.fwn-guide-card {
    background: #12253f;
    padding: 24px 18px;
    border-radius: 8px;
    border: 2px solid #d4af37;
}
.fwn-guide-title {
    color: #d4af37;
    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: #d4af37;
    font-size: 22px;
    font-weight: 900;
    margin-right: 10px;
}
.fwn-step-item p {
    font-size: 14px;
    color: #e8e4d9;
}
.fwn-privacy-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #e8e4d9;
}
.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: #0a1628;
    padding: 50px 0;
}
.fwn-final-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.fwn-final-title {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1.3;
}
.fwn-final-para {
    color: #c9c4b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.fwn-call-action {
    color: #e8e4d9;
    font-size: 15px;
    margin: 16px 0;
}
.fwn-final-sub {
    color: #a8a49a;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
}
.fwn-book-text {
    color: #d4af37;
    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: #d4af37 !important;
}

/* ========== FOOTER ========== */
.fwn-footer {
    background: #050d18;
    padding: 40px 0 20px;
    border-top: 3px solid #d4af37;
}
.fwn-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 0 16px;
}
.fwn-footer-logo {
    color: #d4af37;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.fwn-footer-title {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
}
.fwn-footer-desc {
    color: #a8a49a;
    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: #c9c4b8;
}
.fwn-copyright-bar {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #7a766c;
    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: #0d1f38;
}
.ccol {
    background: #25d366;
}
.lcol a,
.ccol a {
    display: block;
    padding: 13px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.lcol a {
    color: #d4af37;
}

/* ========== 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; }
}

/* ========== TAGS SECTION ========== */
.fwn-tags-section {
    background: #0d1f38;
    padding: 50px 0 40px;
}
.fwn-tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1050px;
    margin: 25px auto 0;
    padding: 0 10px;
}
.fwn-tag-item {
    display: inline-block;
    background: #12253f;
    color: #d4af37 !important;
    border: 1.5px solid #d4af37;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.fwn-tag-item:hover {
    background: #d4af37;
    color: #0a1628 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
}

/* ========== FAQ SECTION ========== */
.fwn-faq-section {
    background: #0a1628;
    padding: 50px 0 70px;
}
.fwn-faq-list {
    max-width: 850px;
    margin: 30px auto 0;
    padding: 0 12px;
}
.fwn-faq-item {
    background: #12253f;
    border: 1.5px solid #d4af37;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}
.fwn-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #d4af37;
    font-size: 15.5px;
    font-weight: 700;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    outline: none;
}
.fwn-faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}
.fwn-faq-item.active .fwn-faq-icon {
    transform: rotate(45deg);
}
.fwn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.fwn-faq-item.active .fwn-faq-answer {
    max-height: 250px;
}
.fwn-faq-answer p {
    padding: 0 22px 20px;
    color: #c9c4b8;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* ========== HORIZONTAL PROFILE CARDS ========== */
.fwn-profiles-wrapper {
    background: #0d1f38;
    padding: 50px 0 60px;
}

.fwn-profile-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.fwn-h-card {
    display: flex;
    background: #12253f;
    border: 2px solid #d4af37;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwn-h-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

/* Image Side */
.fwn-h-image {
    position: relative;
    width: 260px;
    min-width: 260px;
    height: 280px;
    overflow: hidden;
}

.fwn-h-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwn-premium-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d4af37;
    color: #0a1628;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Content Side */
.fwn-h-content {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.fwn-h-name {
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.fwn-h-desc {
    color: #c9c4b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.fwn-h-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 13.5px;
    color: #e8e4d9;
}

.fwn-h-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fwn-stars {
    color: #d4af37 !important;
}

/* Buttons */
.fwn-h-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fwn-btn-call,
.fwn-btn-whatsapp,
.fwn-btn-details {
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fwn-btn-call {
    background: #1a2f4a;
    color: #d4af37 !important;
    border: 1.5px solid #d4af37;
}

.fwn-btn-call:hover {
    background: #d4af37;
    color: #0a1628 !important;
}

.fwn-btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
}

.fwn-btn-whatsapp:hover {
    background: #1ebe57;
}

.fwn-btn-details {
    background: transparent;
    color: #d4af37 !important;
    border: 1.5px solid #d4af37;
}

.fwn-btn-details:hover {
    background: #d4af37;
    color: #0a1628 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .fwn-h-card {
        flex-direction: column;
    }

    .fwn-h-image {
        width: 100%;
        height: 320px;
        min-width: 100%;
    }

    .fwn-h-content {
        padding: 18px 16px;
    }

    .fwn-h-name {
        font-size: 16px;
    }

    .fwn-h-buttons {
        gap: 10px;
    }

    .fwn-btn-call,
    .fwn-btn-whatsapp,
    .fwn-btn-details {
        padding: 9px 16px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }
}

/* ========== UNIQUE MOOD MATCHER SECTION ========== */
.fwn-mood-section {
    background: linear-gradient(180deg, #0a1628 0%, #0d1f38 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.fwn-mood-header {
    text-align: center;
    margin-bottom: 45px;
}

.fwn-mood-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    margin-bottom: 16px;
}

.fwn-mood-title {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.fwn-mood-subtitle {
    color: #c9c4b8;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.fwn-mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.fwn-mood-card {
    background: #12253f;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

.fwn-mood-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    background: #152a47;
}

.fwn-mood-card.active {
    border-color: #d4af37;
    background: linear-gradient(145deg, #1a2f4a, #12253f);
    box-shadow: 0 0 0 2px #d4af37;
}

.fwn-mood-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.fwn-mood-card h3 {
    color: #d4af37;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fwn-mood-card p {
    color: #c9c4b8;
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.fwn-mood-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Result Box */
.fwn-mood-result {
    max-width: 700px;
    margin: 40px auto 0;
    background: #12253f;
    border: 2px solid #d4af37;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.fwn-mood-result h3 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 10px;
}

.fwn-mood-result p {
    color: #c9c4b8;
    font-size: 15px;
    margin-bottom: 22px;
}

.fwn-mood-cta {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #0a1628 !important;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.fwn-mood-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .fwn-mood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .fwn-mood-grid {
        grid-template-columns: 1fr;
    }
    
    .fwn-mood-title {
        font-size: 1.6rem;
    }
}
/* ========== PREMIUM HERO SECTION ========== */
.fwn-premium-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1f38 50%, #12253f 100%);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.fwn-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Side */
.fwn-hero-left {
    flex: 1;
    max-width: 580px;
}

.fwn-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.fwn-hero-subtitle {
    font-size: 1.15rem;
    color: #c9c4b8;
    margin-bottom: 18px;
}

.fwn-hero-highlight {
    font-size: 15px;
    color: #e8e4d9;
    margin-bottom: 28px;
}

.fwn-hero-highlight span {
    color: #d4af37;
    font-weight: 700;
}

.fwn-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 32px;
}

.fwn-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e8e4d9;
    font-size: 14.5px;
    font-weight: 500;
}

.fwn-check {
    color: #d4af37;
    font-weight: 700;
    font-size: 16px;
}

.fwn-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fwn-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fwn-btn-call {
    background: #d4af37;
    color: #0a1628 !important;
}

.fwn-btn-call:hover {
    background: #e8c547;
    transform: translateY(-2px);
}

.fwn-btn-wa {
    background: #25d366;
    color: #ffffff !important;
}

.fwn-btn-wa:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.fwn-btn-book {
    background: transparent;
    color: #d4af37 !important;
    border: 2px solid #d4af37;
}

.fwn-btn-book:hover {
    background: #d4af37;
    color: #0a1628 !important;
}

/* Right Side - Featured Card */
.fwn-hero-right {
    flex-shrink: 0;
}

.fwn-featured-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 2px solid #d4af37;
}

.fwn-featured-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.fwn-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwn-online-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #25d366;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.fwn-featured-info {
    padding: 18px 20px 20px;
}

.fwn-featured-info h3 {
    color: #0a1628;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fwn-featured-location {
    color: #666;
    font-size: 13.5px;
    margin-bottom: 12px;
}

.fwn-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fwn-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

.fwn-rating .stars {
    color: #d4af37;
    letter-spacing: 1px;
}

.fwn-price {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
}

.fwn-view-all-btn {
    display: block;
    background: #d4af37;
    color: #0a1628 !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fwn-view-all-btn:hover {
    background: #e8c547;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .fwn-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .fwn-hero-left {
        max-width: 100%;
    }

    .fwn-hero-title {
        font-size: 2.6rem;
    }

    .fwn-hero-trust {
        justify-content: center;
    }

    .fwn-hero-buttons {
        justify-content: center;
    }

    .fwn-featured-card {
        width: 320px;
    }
}

@media (max-width: 576px) {
    .fwn-premium-hero {
        padding: 50px 16px;
    }

    .fwn-hero-title {
        font-size: 2.1rem;
    }

    .fwn-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .fwn-hero-btn {
        justify-content: center;
        width: 100%;
    }

    .fwn-featured-card {
        width: 100%;
        max-width: 340px;
    }
}
/* ========== RESPONSIVE - FINAL MOBILE FIX ========== */
@media (max-width: 992px) {
    .fwn-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .fwn-hero-left {
        max-width: 100%;
    }

    .fwn-hero-title {
        font-size: 2.4rem;
    }

    .fwn-hero-trust {
        justify-content: center;
    }

    .fwn-hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .fwn-premium-hero {
        padding: 35px 12px;          /* kam padding */
    }

    .fwn-hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .fwn-hero-subtitle {
        font-size: 0.95rem;
    }

    .fwn-hero-highlight {
        font-size: 13px;
    }

    .fwn-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .fwn-hero-btn {
        justify-content: center;
        width: 100%;
        padding: 13px 18px;
    }

    /* ===== Featured Card - Full Width Mobile ===== */
    .fwn-hero-right {
        width: 100%;
        padding: 0;
    }

    .fwn-featured-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    .fwn-featured-image {
        height: 320px;
    }

    .fwn-featured-info {
        padding: 15px 14px 16px;
    }

    .fwn-featured-info h3 {
        font-size: 16.5px;
    }

    .fwn-featured-location {
        font-size: 12.5px;
        margin-bottom: 10px;
    }

    .fwn-featured-meta {
        margin-bottom: 13px;
    }

    .fwn-rating {
        font-size: 13px;
    }

    .fwn-price {
        font-size: 15px;
    }

    .fwn-view-all-btn {
        padding: 12px;
        font-size: 14px;
    }

    .fwn-online-badge {
        font-size: 11px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }
}