@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary-blue: #8B1F24;
    --dark-navy: #4A1013;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tp-blue: #8B1F24;
    --tp-navy: #4A1013;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; background: #f8fafc; }

/* --- DESKTOP VIEW (AS PER YOUR DESIGN) --- */
.custom-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.logo-area { width: 280px; border-right: 1px solid #f0f0f0; padding: 20px; }
.main-logo { width: 160px; height: auto; display: block; }

.header-top-row { background: #fcfcfc; border-bottom: 1px solid #f0f0f0; padding: 8px 40px; }
.top-info { font-size: 12px; font-weight: 700; color: #6b7280; display: flex; align-items: center; gap: 5px; }
.top-info span.val { color: #4A1013; }
.top-info i { color: var(--primary-blue); font-size: 13px; }

.header-nav-row { height: 85px; padding: 0 0 0 40px; }
.main-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 35px; }
.main-menu ul li { position: relative; }
.main-menu ul li a {
    text-decoration: none; color: #4A1013; font-size: 14px; font-weight: 700;
    padding: 33px 0; display: inline-block; transition: var(--transition);
}
.main-menu ul li a:hover { color: var(--primary-blue); }

/* DROP-DOWN (DARK BLUE COMPACT) */
.dropdown-menu-custom {
    position: absolute; top: 100%; left: 0; width: 230px;
    background: var(--dark-navy); padding: 15px 0;
    opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: var(--transition); box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px; border-top: 3px solid var(--primary-blue);
    display: block !important; z-index: 99;
}
.main-menu ul li:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom li { width: 100%; display: block; }
.dropdown-menu-custom li a {
    padding: 10px 25px !important; color: rgba(255,255,255,0.8) !important;
    font-size: 13px !important; font-weight: 600 !important;
    display: block !important; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-menu-custom li a:hover { color: #fff !important; background: rgba(255,255,255,0.1); padding-left: 30px !important; }

/* CART & ACTIONS */
.action-icon { background: #f3f6ff; border: none; width: 45px; height: 45px; border-radius: 10px; color: var(--primary-blue); font-size: 16px; transition: var(--transition); }
.action-icon:hover { background: var(--primary-blue); color: #fff; }
.book-btn { background: var(--primary-blue); color: #fff !important; padding: 0 35px; height: 85px; display: flex; align-items: center; font-weight: 700; font-size: 14px; text-decoration: none; transition: 0.3s; }

.cart-wrapper { position: relative; display: flex; align-items: center; }
.mini-cart {
    position: absolute; top: 100%; right: 0; width: 300px;
    background: #fff; padding: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition);
    border-radius: 12px; z-index: 100;
}
.cart-wrapper:hover .mini-cart { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- MOBILE RESPONSIVE FIX --- */
.mobile-header { display: none; background: #fff; padding: 15px 20px; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1001; }

@media (max-width: 1199px) {
    .custom-header { display: none !important; }
    .mobile-header { display: flex; align-items: center; justify-content: space-between; }
    .mobile-nav-actions { display: flex; align-items: center; gap: 10px; }
    
    .sidebar-nav { list-style: none; padding: 0; margin-top: 20px; }
    .sidebar-nav li a { color: #fff; text-decoration: none; display: block; padding: 12px 0; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mobile-book-btn { background: var(--primary-blue); color: #fff; text-align: center; display: block; padding: 15px; border-radius: 8px; text-decoration: none; font-weight: 700; margin-top: 20px; }
}

.offcanvas { background: var(--dark-navy); color: #fff; width: 340px !important; }
.btn-close-white { filter: invert(1) brightness(200%); }

/* Main Footer Styling */
.tp-main-footer {
    background-color: #8B1F24;
    color: #ffffff;
    padding-top: 100px;
    font-family: 'Inter', sans-serif;
}

/* Widget Titles */
.footer-widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    display: block;
}

/* Contact Section Styling */
.contact-label {
    font-style: italic;
    color: #8B1F24;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.contact-number a {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-number a:hover {
    color: #8B1F24;
}

.contact-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-top: 5px;
    font-size: 16px;
}

/* Links & Lists */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #8B1F24;
    padding-left: 5px;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #8B1F24;
    transform: translateY(-5px);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    margin-top: 70px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links ul {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #8B1F24;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .footer-bottom-links ul {
        justify-content: center;
        margin-top: 15px;
    }
    .copyright-text {
        text-align: center;
    }
}
/* Testimonials */
.testimonial-area {
    padding: 60px 0;
    background-color: #f8fbff;
    background-image: url('assets/img/shape/shape-bg-05.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.testi-quote-wrap { margin-bottom: 20px; }
.testi-quote-icon { font-size: 50px; color: rgba(139, 31, 36, 0.15); display: inline-block; }
.test-ava-active { width: 280px; margin: 0 auto 30px; }
.test-ava-active .swiper-slide { cursor: pointer; opacity: 0.3; transition: 0.4s ease; }
.test-ava-active .swiper-slide-thumb-active { opacity: 1; transform: scale(1.15); }
.testi-ava-img { width: 75px; height: 85px; margin: 0 auto; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); background: #fff; padding: 3px; }
.testi-ava-img img { width: 100%; height: 100%; object-fit: cover; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.testi-card { background: #ffffff; padding: 40px; border-radius: 30px; box-shadow: 0 20px 40px rgba(74, 16, 19, 0.08); border: 1px solid rgba(139, 31, 36, 0.08); }
.testi-content p { font-size: 20px; line-height: 1.6; color: var(--tp-navy); font-weight: 500; margin-bottom: 25px; }
.testi-content i { display: block; font-size: 19px; font-weight: 800; color: var(--tp-navy); font-style: normal; margin-bottom: 4px; }
.testi-content span { color: var(--tp-blue); font-weight: 700; font-size: 13px; text-transform: uppercase; }
.testi-nav { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.t-nav-btn { width: 45px; height: 45px; border-radius: 50%; background: #f4f9ff; color: var(--tp-navy); border: none; cursor: pointer; transition: 0.3s; }
.t-nav-btn:hover { background: var(--tp-blue); color: #fff; }

/* Blog */
.tp-static-blog-area { padding: 60px 0; background-color: #ffffff; }
.tp-section-header { margin-bottom: 30px; }
.tp-section-header .tp-section__title { font-size: 32px; font-weight: 800; color: #4A1013; margin: 0; }
.blog-card-static { background: #ffffff; border-radius: 12px; border: 1px solid #f0f0f0; overflow: hidden; height: 100%; transition: 0.3s; }
.blog-card-static:hover { box-shadow: 0 10px 25px rgba(139, 31, 36, 0.06); }
.blog-thumb-static { height: 200px; overflow: hidden; }
.blog-thumb-static img { width: 100%; height: 100%; object-fit: cover; }
.blog-content-static { padding: 20px; }
.blog-content-static h5 { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.blog-content-static h5 a { color: #4A1013; text-decoration: none; }
.blog-content-static p { color: #666; font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
.blog-meta-static { display: flex; gap: 15px; padding-top: 12px; border-top: 1px solid #f8f8f8; list-style: none; padding-left: 0; margin: 0; }
.blog-meta-static li { font-size: 12px; font-weight: 600; color: #4A1013; display: flex; align-items: center; gap: 5px; }
.blog-meta-static i { color: #8B1F24; }
.blog-footer-link { margin-top: 30px; font-size: 14px; font-weight: 600; color: #4A1013; }

/* Newsletter */
.tp-newsletter-premium { padding: 100px 0; background: radial-gradient(circle at center, #a3272d 0%, #4A1013 100%); position: relative; overflow: hidden; margin: 0; }
.tp-newsletter-premium::before,
.tp-newsletter-premium::after { content: ""; position: absolute; width: 300px; height: 100%; background-image: url('https://www.transparenttextures.com/patterns/hexellence.png'); opacity: 0.2; pointer-events: none; }
.tp-newsletter-premium::before { left: 0; top: 0; }
.tp-newsletter-premium::after { right: 0; top: 0; }
.newsletter-content-final h3 { font-size: 48px; font-weight: 800; color: #ffffff; margin-bottom: 5px; letter-spacing: -1px; }
.newsletter-content-final span { color: rgba(255, 255, 255, 0.9); font-size: 18px; font-weight: 500; display: block; margin-bottom: 45px; }
.newsletter-form-final { max-width: 750px; margin: 0 auto; display: flex; background: #ffffff; border-radius: 4px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); padding: 0; }
.newsletter-form-final input { flex: 1; border: none; padding: 20px 30px; font-size: 16px; outline: none; color: #555; border-radius: 4px 0 0 4px; }
.newsletter-btn-final { background-color: #1ed7a3; color: #ffffff; border: none; padding: 0 45px; font-weight: 800; font-size: 15px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; transition: all 0.4s ease; cursor: pointer; }
.newsletter-btn-final:hover { background-color: #17b388; padding: 0 50px; }
.newsletter-btn-final i { font-size: 16px; transform: rotate(-15deg); }
@media (max-width: 767px) {
    .newsletter-form-final { flex-direction: column; background: transparent; box-shadow: none; }
    .newsletter-form-final input { background: #ffffff; margin-bottom: 15px; border-radius: 4px; height: 60px; }
    .newsletter-btn-final { height: 60px; justify-content: center; border-radius: 4px; }
    .newsletter-content-final h3 { font-size: 32px; }
}

/* Global Button Overrides */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--dark-navy) !important;
    border-color: var(--dark-navy) !important;
}
.text-primary { color: var(--primary-blue) !important; }
.bg-primary { background-color: var(--primary-blue) !important; }
