/* =====================================================
   HOLA TAJ - MAIN WEBSITE CSS
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #252525;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

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


/* =====================================================
   HEADER
===================================================== */

.site-header {
    width: 100%;
    height: 88px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eee7da;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,.04);
}

.header-container {
    width: 92%;
    max-width: 1280px;
    height: 88px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    height: 88px;
    display: flex;
    align-items: center;
    position: relative;

    color: #333;
    font-size: 14px;
    font-weight: 600;

    transition: .25s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #b8862b;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;

    height: 2px;
    background: #b8862b;

    transform: scaleX(0);
    transition: .25s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.header-right {
    margin-left: 5px;
}

.header-book-btn {
    min-width: 118px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #b8862b;
    color: #fff !important;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(184,134,43,.18);

    transition: .25s;
}

.header-book-btn:hover {
    background: #946c18;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0,0,0,.52),
            rgba(0,0,0,.52)
        ),
        url("uploads/hotels/hero.png")
        center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;

    color: #fff;
}

.hero-small {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #e2b650;

    margin-bottom: 10px;
}

.hero h1 {
    max-width: 750px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;
    line-height: 1.1;

    margin: 10px 0 20px;
}

.hero h1 span {
    color: #d5a63d;
}

.hero p {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.8;

    color: #f2f2f2;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 30px;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn-primary,
.btn-outline,
.btn-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 25px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;

    transition: .25s;
}

.btn-primary {
    background: #b8862b;
    color: #fff;
}

.btn-primary:hover {
    background: #946c18;
    transform: translateY(-2px);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.8);
}

.btn-outline:hover {
    background: #fff;
    color: #333;
}

.btn-whatsapp {
    background: #fff;
    color: #333;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}


/* =====================================================
   QUICK SEARCH
===================================================== */

.quick-search {
    position: relative;
    z-index: 10;

    margin-top: -45px;
}

.search-container {
    width: 90%;
    max-width: 1100px;

    margin: auto;

    background: #fff;

    padding: 20px 25px;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0,0,0,.12);

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr auto;

    gap: 20px;

    align-items: center;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icon {
    font-size: 25px;
}

.search-item small {
    display: block;

    color: #999;

    font-size: 10px;
    letter-spacing: 2px;
}

.search-item strong {
    font-size: 15px;
}

.search-btn {
    background: #b8862b;
    color: #fff;

    padding: 14px 25px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}


/* =====================================================
   SECTION COMMON
===================================================== */

.section-label {
    display: inline-block;

    color: #b8862b;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.content-section {
    padding: 80px 0;
}

.intro-section {
    padding: 100px 0 70px;

    text-align: center;
}

.intro-content {
    max-width: 760px;
    margin: auto;
}

.intro-content h2,
.about-content h2,
.cta-section h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    line-height: 1.2;

    margin: 15px 0 20px;
}

.intro-content h2 span {
    color: #b8862b;
}

.intro-content p {
    color: #666;

    font-size: 16px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;
}

.text-btn {
    display: inline-block;

    margin-top: 20px;

    color: #9b7737;

    font-weight: 700;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 35px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;

    line-height: 1.2;

    margin-top: 8px;
}

.view-all {
    color: #9b7737;

    font-size: 14px;

    font-weight: 700;
}


/* =====================================================
   CARDS
===================================================== */

.cards-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.hotel-card,
.tour-card {
    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(0,0,0,.08);

    transition: .3s;
}

.hotel-card:hover,
.tour-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(0,0,0,.12);
}


/* =====================================================
   CARD IMAGE
===================================================== */

.card-image {
    height: 230px;

    position: relative;

    overflow: hidden;

    background: #eee;
}

.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.hotel-card:hover .card-image img,
.tour-card:hover .card-image img {
    transform: scale(1.04);
}

.no-image {
    width: 100%;
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #888;

    background: #eee;
}

.rating,
.duration {
    position: absolute;

    top: 15px;

    background: #fff;

    padding: 7px 10px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;
}

.rating {
    right: 15px;

    color: #9b731c;
}

.duration {
    left: 15px;

    color: #555;
}


/* =====================================================
   CARD BODY
===================================================== */

.card-body {
    padding: 22px;
}

.card-body h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    margin-bottom: 8px;

    color: #222;
}

.card-body p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;
}

.location,
.distance {
    margin-bottom: 5px;
}

.card-btn {
    display: inline-block;

    margin-top: 15px;

    color: #9b7737;

    font-size: 14px;

    font-weight: 700;
}

.tour-section {
    background: #faf8f3;
}

.tour-price {
    margin-top: 15px;

    color: #777;

    font-size: 13px;
}

.tour-price strong {
    display: block;

    color: #222;

    font-size: 20px;
}


/* =====================================================
   GUIDES
===================================================== */

.guides-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.guide-card {
    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(0,0,0,.07);
}

.guide-photo {
    height: 250px;

    background: #eee;

    overflow: hidden;
}

.guide-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.guide-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 55px;
}

.guide-body {
    padding: 20px;
}

.guide-body h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    margin-bottom: 8px;
}

.guide-body p {
    color: #777;

    font-size: 13px;

    margin-bottom: 5px;
}

.guide-price {
    display: block;

    margin-top: 12px;

    color: #9b731c;

    font-size: 19px;
}

.guide-price small {
    font-size: 12px;
    color: #777;
}


/* =====================================================
   ABOUT
===================================================== */

.about-home {
    padding: 100px 0;

    background: #fff;
}

.about-home-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    height: 450px;

    overflow: hidden;

    border-radius: 12px;

    background: #eee;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: Georgia, serif;

    font-size: 40px;

    color: #b8862b;
}

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

.about-content p {
    color: #666;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 25px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 90px 20px;

    background:
        linear-gradient(
            rgba(25,25,25,.92),
            rgba(25,25,25,.92)
        );

    color: #fff;

    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    max-width: 650px;

    margin: 0 auto;

    color: #ccc;

    font-size: 16px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 30px;
}


/* =====================================================
   EMPTY STATE
===================================================== */

.empty-state {
    text-align: center;

    padding: 50px 20px;

    background: #fafafa;

    border-radius: 10px;
}

.empty-state h3 {
    font-family: Georgia, serif;

    margin-bottom: 8px;
}

.empty-state p {
    color: #777;
}


/* =====================================================
   LEAD POPUP
===================================================== */

.lead-popup {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;
}

.lead-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.65);
}

.popup-box {
    position: relative;

    z-index: 2;

    width: 92%;
    max-width: 450px;

    padding: 35px;

    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

    text-align: center;
}

.popup-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: 0;

    background: transparent;

    font-size: 28px;

    color: #777;

    cursor: pointer;
}

.popup-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b8862b;

    color: #fff;

    font-weight: 700;
}

.popup-box h2 {
    font-family: Georgia, serif;

    font-size: 28px;

    margin: 10px 0;
}

.popup-box p {
    color: #777;

    font-size: 14px;

    margin-bottom: 20px;
}

.lead-form {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.lead-form input {
    width: 100%;

    height: 48px;

    padding: 0 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    font-size: 14px;

    outline: none;
}

.lead-form input:focus {
    border-color: #b8862b;
}

.lead-form button {
    border: none;

    cursor: pointer;
}

.popup-success {
    padding: 12px;

    background: #edf8ef;

    color: #28743a;

    border-radius: 6px;

    margin-top: 15px;
}

.popup-error {
    padding: 12px;

    background: #fff0f0;

    color: #a33333;

    border-radius: 6px;

    margin-top: 15px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #171717;

    color: #ddd;

    padding-top: 60px;
}

.footer-container {
    width: 92%;
    max-width: 1200px;

    margin: auto;
}

.footer-top {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.3fr;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-logo {
    display: inline-block;

    font-family: Georgia, serif;

    font-size: 30px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 15px;
}

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

.footer-brand p {
    max-width: 300px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.8;
}

.footer-column h3 {
    color: #fff;

    font-size: 16px;

    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaa;

    font-size: 14px;

    transition: .2s;
}

.footer-column a:hover {
    color: #d1a33f;
}

.footer-contact p {
    color: #aaa;

    font-size: 14px;

    margin-bottom: 10px;
}

.footer-whatsapp {
    display: inline-block;

    margin-top: 8px;

    color: #d1a33f !important;

    font-weight: 700;
}

.social-links {
    display: flex;

    gap: 15px;

    margin-top: 20px;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid #303030;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #888;

    font-size: 13px;
}

.footer-bottom-links {
    display: flex;

    gap: 20px;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 950px) {

    .nav-menu {
        gap: 20px;
    }

    .cards-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .guides-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 48px;
    }
}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 768px) {

    .site-header {
        height: 72px;
    }

    .header-container {
        height: 72px;
    }

    .site-logo img {
        width: 62px;
        height: 62px;
    }

    .header-right {
        margin-left: auto;
        margin-right: 10px;
    }

    .header-book-btn {
        min-width: auto;

        height: 38px;

        padding: 0 14px;

        font-size: 12px;
    }

    .menu-toggle {
        display: block;

        width: 42px;
        height: 42px;

        padding: 7px;

        background: transparent;

        border: 1px solid #ddd;

        border-radius: 6px;

        cursor: pointer;
    }

    .menu-toggle span {
        display: block;

        width: 24px;
        height: 2px;

        margin: 5px auto;

        background: #333;
    }

    .nav-menu {
        position: absolute;

        top: 72px;

        left: 0;
        right: 0;

        width: 100%;

        margin: 0;

        padding: 8px 20px 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #fff;

        border-top: 1px solid #eee;

        box-shadow:
            0 12px 25px rgba(0,0,0,.08);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        height: 48px;

        border-bottom: 1px solid #eee;

        font-size: 14px;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .search-container {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .search-btn {
        text-align: center;
    }

    .intro-section {
        padding: 80px 0 50px;
    }

    .intro-content h2,
    .about-content h2,
    .cta-section h2 {
        font-size: 34px;
    }

    .content-section {
        padding: 65px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .view-all {
        display: inline-block;

        margin-top: 12px;
    }

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

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

    .about-home {
        padding: 70px 0;
    }

    .about-home-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        height: 350px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 450px) {

    .hero {
        min-height: 560px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .card-image {
        height: 210px;
    }

    .popup-box {
        padding: 30px 20px;
    }

}

/* =====================================================
   HOLA TAJ HEADER
===================================================== */

* {
    box-sizing: border-box;
}

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: #171717;
    color: #ffffff;
    height: 48px;
    font-size: 14px;
}

.header-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.top-bar .header-container {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-left span {
    color: #eeeeee;
    white-space: nowrap;
}

.top-left span:first-child {
    color: #dddddd;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: .25s ease;
}

.top-right a:hover {
    color: #c8942e;
}

.partner-text {
    padding-left: 20px;
    border-left: 1px solid #555;
    color: #eeeeee;
    white-space: nowrap;
}


/* ================= MAIN HEADER ================= */

.main-header {
    height: 112px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ================= LOGO ================= */

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo img {
    display: block;
    width: 250px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}


/* ================= NAV ================= */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin-left: auto;
}

.nav-menu a {
    position: relative;
    color: #242424;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 45px 0 35px;
    transition: color .25s ease;
}

.nav-menu a:hover {
    color: #b98220;
}

.nav-menu a.active {
    color: #b98220;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    height: 3px;
    background: #bd8525;
    border-radius: 10px;
}


/* ================= BOOK BUTTON ================= */

.header-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 190px;
    padding: 16px 24px;

    background: #bd8525;
    color: #ffffff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;

    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(189, 133, 37, .20);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.header-book-btn span {
    font-size: 18px;
}

.header-book-btn strong {
    font-size: 20px;
    font-weight: 500;
}

.header-book-btn:hover {
    background: #a97018;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(189, 133, 37, .30);
}


/* ================= MOBILE BUTTON ================= */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #222;
    margin: 5px auto;
    border-radius: 5px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

    .top-left {
        gap: 15px;
    }

    .top-right {
        gap: 12px;
    }

    .partner-text {
        display: none;
    }

    .nav-menu {
        gap: 25px;
    }

    .brand-logo img {
        width: 210px;
    }

    .header-book-btn {
        min-width: 160px;
        padding: 14px 18px;
    }
}


@media (max-width: 900px) {

    .top-bar {
        display: none;
    }

    .main-header {
        height: 82px;
    }

    .brand-logo img {
        width: 190px;
        max-height: 70px;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        background: #ffffff;
        padding: 20px 6%;

        box-shadow: 0 12px 30px rgba(0,0,0,.10);
        gap: 0;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #eeeeee;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .header-book-btn {
        margin-left: auto;
        min-width: auto;
        padding: 12px 17px;
    }

    .header-book-btn span,
    .header-book-btn strong {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


@media (max-width: 600px) {

    .header-container {
        width: 94%;
    }

    .main-header {
        height: 74px;
    }

    .brand-logo img {
        width: 155px;
        max-height: 60px;
    }

    .header-book-btn {
        font-size: 13px;
        padding: 10px 13px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 24px;
    }

    .nav-menu {
        top: 74px;
    }
}