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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #3F0101; 
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #FDDB51; 
    text-decoration: none; 
    font-weight: 700; 
    transition: all 0.3s ease-in-out;
    display: inline-block;
    border-bottom: 1px solid transparent; 
}

a:hover {
    color: #ffffff; 
    border-bottom: 1px solid #FDDB51; 
    transform: scale(1.05); 
}

p a {
    text-transform: capitalize; 
    cursor: pointer;
}

.fwn-nav-header {
    background-color: rgba(10, 10, 10, 0.95); 
    border-bottom: 2px solid #FDDB51;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.fwn-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fwn-nav-logo a {
    text-decoration: none;
}

.fwn-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #FDDB51;
    letter-spacing: 1px;
    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: #ffffff !important;
    text-decoration: none;
    margin: 0 15px;
    font-size: 15px;
    font-weight: 600 !important; 
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.fwn-nav-link:hover, .fwn-nav-link.active {
    color: #FDDB51 !important;
}

.fwn-nav-btn {
    background:#8BEA92;
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800 !important;
    font-size: 14px;
    margin-left: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.fwn-nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.fwn-nav-toggle {
    display: none;
    cursor: pointer;
}

.fwn-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #FDDB51;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .fwn-nav-toggle { display: block; }

    .fwn-nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: #2E0101;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        padding-bottom: 30px;
    }

    .fwn-nav-menu.active {
        left: 0;
    }

    .fwn-nav-list {
        flex-direction: column;
    }

    .fwn-nav-link {
        margin: 20px 0;
        display: block;
        font-size: 18px;
    }

    .fwn-nav-btn {
        margin: 20px 0 0 0;
        display: inline-block;
    }
}

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

.fwn-hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image/bg.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.fwn-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #FDDB51;
    margin-bottom: 20px;
}

.fwn-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.fwn-btn-primary {
    background: #FDDB51;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
}

.fwn-btn-secondary {
    background: transparent;
    color: #FDDB51;
    border: 2px solid #FDDB51;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.fwn-features-grid {
    padding: 60px 0;
    background: #300000;
}

.fwn-section-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FDDB51;
    margin-bottom: 40px;
}

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

.fwn-feature-card {
    background: #800000;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #FBEA5A;
    transition: 0.3s;
}

.fwn-feature-card:hover {
    border-color: #FDDB51;
    transform: translateY(-5px);
}

.fwn-feature-card span {
    color: #FDDB51;
    margin-right: 10px;
}

.fwn-content-area {
    background-color: #000000; 
    padding: 60px 0;
    border-top: 1px solid #FBEA5A;
}

.fwn-content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: left; 
}

.fwn-content-text {
    font-size: 16px;
    color: #ffffff; 
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.fwn-content-area a {
    color: #FDDB51; 
    font-weight: 700; 
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.fwn-content-area a:hover {
    color: #ffffff;
    border-bottom: 1px solid #FDDB51;
}

.fwn-content-text strong {
    color: #FDDB51;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fwn-content-text {
        font-size: 14px;
        text-align: justify; 
    }
}

.fwn-main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.fwn-profiles-wrapper {
    background-color: #2E0101;
    padding: 100px 0; 
    text-align: center;
}

.fwn-main-heading {
    color: #FDDB51;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fwn-section-intro {
    color: #888;
    font-size: 16px;
    margin-bottom: 60px; 
}

.fwn-profile-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px; 
}

.fwn-card {
    background: #2E0101;
    border: 1px solid #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
}

.fwn-card:hover {
    border-color: #FDDB51;
    transform: translateY(-10px);
}

.fwn-image-box {
    position: relative;
    height: 380px; 
    overflow: hidden;
}

.fwn-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwn-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.fwn-verified-tag {
    background: rgba(0, 128, 0, 0.8);
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 5px;
}

.fwn-rating-tag {
    background: rgba(0, 0, 0, 0.6);
    color: #ffcc00;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.fwn-details {
    padding: 25px 20px; 
    text-align: left;
}

.fwn-name {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.fwn-name a {
    color: #FDDB51; 
    font-weight: 800;
    text-decoration: none;
}

.fwn-link-btn {
    display: inline-block;
    color: #FDDB51 !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 5px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.fwn-link-btn:hover {
    color: #fff !important;
    border-bottom: 1px solid #FDDB51;
}

@media (max-width: 1100px) {
    .fwn-profile-grid-four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .fwn-profile-grid-four { grid-template-columns: 1fr; }
    .fwn-main-container { padding: 0 20px; }
}

.fwn-booking-redesign {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.fwn-booking-card {
    background:#2E0101;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.fwn-booking-header {
    color: #FDDB51;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fwn-booking-subtext {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 45px;
}

.fwn-action-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fwn-book-btn {
    display: flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.fwn-call-glow {
    background: #FDDB51;
    color: #000 !important;
}

.fwn-call-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.fwn-wa-glow {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366 !important;
}

.fwn-wa-glow:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.fwn-icon {
    font-size: 30px;
    margin-right: 15px;
}

.fwn-btn-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.fwn-btn-text span {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.fwn-btn-text strong {
    font-size: 20px;
    font-weight: 800;
}

.fwn-trust-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .fwn-booking-header { font-size: 26px; }
    .fwn-booking-card { padding: 40px 20px; }
    .fwn-book-btn { width: 100%; }
    .fwn-trust-badges { flex-direction: column; gap: 10px; }
}

.fwn-premium-services {
    background: #2E0101; 
    padding: 100px 0;
    color: #ffffff;
}

.fwn-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.fwn-service-card {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: 0.3s;
}

.fwn-service-card:hover {
    border-color: #FDDB51;
    background: #1a1a1a;
}

.fwn-gradient-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(to right, #FDDB51, #f7e102);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fwn-card-intro {
    color: #888;
    margin-bottom: 25px;
    font-size: 16px;
}

.fwn-custom-list {
    list-style: none;
    padding: 0;
}

.fwn-custom-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.fwn-bullet {
    margin-right: 15px;
    font-size: 18px;
}

.fwn-choice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fwn-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #FDDB51;
    color: #FDDB51;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.fwn-content-box {
    background: #000;
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid #FDDB51;
}

.fwn-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fwn-para {
    font-size: 16px;
    line-height: 1.9;
    color: #ccc;
    text-align: justify;
}

.fwn-para strong {
    color: #FDDB51;
    font-weight: 700;
}

@media (max-width: 992px) {
    .fwn-text-columns { grid-template-columns: 1fr; }
    .fwn-services-grid { grid-template-columns: 1fr; }
}

.fwn-location-section {
    background-color: #0d0d0d;
    padding: 100px 0;
    color: #fff;
}

.fwn-top-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

.fwn-location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.fwn-loc-card {
    background: #2E0101;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #FBEA5A;
    transition: 0.4s ease;
}

.fwn-loc-card:hover {
    transform: translateY(-10px);
    border-color: #FDDB51;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.fwn-loc-img {
    height: 150px;
    overflow: hidden;
}

.fwn-loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.fwn-loc-content {
    padding: 20px;
}

.fwn-loc-content h3 {
    color: #FDDB51;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #FBEA5A;
    padding-bottom: 10px;
}

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

.fwn-loc-list li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.fwn-loc-list li::before {
    content: "•";
    color: #FDDB51;
    font-weight: bold;
    margin-right: 8px;
}

.fwn-loc-tag {
    font-size: 11px;
    font-weight: 600;
    color: #FDDB51;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px;
    border-radius: 5px;
}

.fwn-hotel-highlight {
    background: linear-gradient(145deg, #1a1a1a, #251f0b);
}

.fwn-hotel-seo-box {
    background: #2E0101;
    padding: 50px;
    border-radius: 20px;
    border-left: 4px solid #FDDB51;
}

.fwn-seo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 20px;
    text-align: justify;
}

.fwn-seo-text strong {
    color: #FDDB51;
}

@media (max-width: 1200px) {
    .fwn-location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .fwn-location-grid { grid-template-columns: 1fr; }
    .fwn-hotel-seo-box { padding: 30px 20px; }
}

.fwn-booking-guide {
    background-color: #000;
    padding: 90px 0;
    color: #fff;
    border-top: 1px solid #222;
}

.fwn-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fwn-guide-card {
    background: #2E0101;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.fwn-guide-card:hover {
    border-color: #FDDB51;
    background: #151515;
}

.fwn-guide-title {
    color: #FDDB51;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fwn-guide-intro {
    font-size: 15px;
    color: #888;
    margin-bottom: 20px;
}

.fwn-steps-wrapper {
    margin-bottom: 20px;
}

.fwn-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fwn-step-num {
    color: rgba(212, 175, 55, 0.3);
    font-size: 30px;
    font-weight: 900;
    margin-right: 15px;
    line-height: 1;
}

.fwn-step-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.fwn-privacy-list {
    list-style: none;
    padding: 0;
}

.fwn-privacy-list li {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #eee;
}

.fwn-check {
    margin-right: 12px;
    font-size: 18px;
}

.fwn-calm-text {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

.fwn-cta-para {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ccc;
}

.fwn-premium-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white !important;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 25px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

.fwn-premium-wa-btn img {
    width: 24px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.fwn-premium-wa-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1024px) {
    .fwn-guide-grid { grid-template-columns: 1fr; }
}

.fwn-final-words {
    background-color: #050505;
    padding: 80px 0;
    border-top: 2px solid #FDDB51;
    position: relative;
    overflow: hidden;
}

.fwn-final-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fwn-final-content {
    flex: 2;
    text-align: left;
}

.fwn-final-title {
    color: #f7e102; 
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fwn-final-para {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fwn-final-para strong {
    color: #FDDB51;
}

.fwn-call-action {
    color: #ffffff;
    font-size: 18px;
    margin: 25px 0;
}

.fwn-call-action strong {
    color: #FDDB51;
    text-decoration: underline;
}

.fwn-final-sub {
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

.fwn-final-booking {
    margin-top: 30px;
}

.fwn-book-text {
    color: #f7e102;
    font-size: 36px;
    font-weight: 900;
    text-decoration: underline;
    margin-bottom: 15px;
}

.fwn-phone-display {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 30px;
    font-weight: 800;
}

.fwn-phone-number {
    color: #ffffff !important;
    text-decoration: none;
    transition: 0.3s;
}

.fwn-phone-number:hover {
    color: #FDDB51 !important;
    transform: scale(1.05);
}

.fwn-offer-badge-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.fwn-offer-img {
    width: 250px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    animation: pulse-offer 2s infinite ease-in-out;
}

@keyframes pulse-offer {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .fwn-final-wrapper { flex-direction: column; text-align: center; }
    .fwn-final-content { text-align: center; }
    .fwn-phone-display { justify-content: center; font-size: 24px; }
    .fwn-final-title { font-size: 22px; }
}

.fwn-footer {
    background-color: #2E0101; 
    padding: 80px 0 20px 0;
    color: #ffffff;
    border-top: 3px solid #FDDB51;
}

.fwn-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 50px;
}

.fwn-footer-logo {
    color: #FDDB51;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fwn-footer-title {
    color: #FDDB51;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.fwn-footer-desc {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fwn-footer-links, .fwn-trust-list {
    list-style: none;
    padding: 0;
}

.fwn-footer-links li, .fwn-trust-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.fwn-footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400; 
}

.fwn-footer-links a:hover {
    color: #FDDB51;
    padding-left: 5px;
}

.fwn-dot {
    color: #FDDB51;
    margin-right: 8px;
    font-weight: bold;
}

.fwn-footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.fwn-footer-contact a {
    color: #FDDB51 !important;
    font-weight: 800;
}

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

.fwn-social-link {
    color: #FDDB51;
    font-size: 13px;
    border: 1px solid #FDDB51;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.fwn-social-link:hover {
    background: #FDDB51;
    color: #000 !important;
}

.fwn-copyright-bar {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.fwn-copyright-bar strong {
    color: #FDDB51;
}

@media (max-width: 1024px) {
    .fwn-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .fwn-footer-grid { grid-template-columns: 1fr; }
    .fwn-footer { padding: 60px 0 20px 0; }
}