* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
     overflow: visible !important;
    overflow-y: auto !important;
}

html {
    overflow: visible !important;
    overflow-y: auto !important;
    height: auto !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Top Bar */
/* ============================================
   COMPLETE HEADER & NAVIGATION CSS
   ============================================ */

/* ===== TOP BAR (wrap) ===== */
.wrap {
    padding: 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important; /* HIGHEST priority */
    background: transparent;
    pointer-events: auto !important;
}

.wrap .container {
    pointer-events: auto !important;
}

.wrap .phone {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    pointer-events: auto !important;
}

.wrap .phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    pointer-events: auto !important;
    transition: color 0.3s ease;
}

.wrap .phone a:hover {
    color: #e52b34;
}

.wrap p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Social Media Icons in Top Bar */
.social-media p a {
    width: 28px;
    height: 28px;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.25s;
    pointer-events: auto !important;
    position: relative;
    z-index: 9999;
    border-radius: 50%;
    text-decoration: none;
}

.social-media p a:hover {
    background: #e52b34;
    transform: translateY(-2px);
}

.social-media p a span {
    color: #fff;
    font-size: 12px;
}

/* ===== MAIN NAVBAR ===== */
.ftco-navbar-light {
    background: transparent !important;
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    z-index: 9998 !important; /* Just below top bar, above hero */
    padding: 0;
    width: 100%;
    pointer-events: auto !important;
}

.ftco-navbar-light .container {
    width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    pointer-events: auto !important;
    position: relative;
    z-index: 9998;
}

/* Brand/Logo */
.ftco-navbar-light .navbar-brand {
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.ftco-navbar-light .navbar-brand img {
    width: 120px;
    height: 95px;
    pointer-events: auto !important;
    display: block;
}

/* Desktop Navigation Links */
.ftco-navbar-light .navbar-collapse {
    pointer-events: auto !important;
    z-index: 9999;
}

.ftco-navbar-light .navbar-nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.ftco-navbar-light .navbar-nav .nav-item {
    list-style: none;
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size: 12px;
    padding: 1.5rem 1.1rem;
    font-weight: 600;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    display: block;
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: #e52b34 !important;
    transform: translateY(-1px);
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:focus {
    outline: none;
}

/* Active link styling */
.ftco-navbar-light .navbar-nav > .nav-item.active > .nav-link,
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active {
    color: #e52b34 !important;
}

/* Underline effect for active/hover */
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e52b34;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover::after,
.ftco-navbar-light .navbar-nav > .nav-item.active > .nav-link::after,
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active::after {
    width: 60%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 620px;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    background-attachment: fixed;
    z-index: 1; /* MUCH LOWER than header */
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
    pointer-events: none !important; /* CRITICAL: Don't block clicks */
}

.hero-content {
    position: relative;
    z-index: 2; /* Lower than header */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    pointer-events: none !important; /* Don't block clicks */
}

.hero-text-inner {
    max-width: 800px;
    pointer-events: auto !important; /* Allow clicks on content */
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 8px 22px;
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-accent {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #f8c471;
}

.hero-description {
    font-size: 0.95rem;
    max-width: 650px;
    margin: 12px auto 20px;
    color: rgba(255, 255, 255, 0.92);
}

.preorder-only-btn {
    display: inline-block;
    background: #e52b34;
    color: white;
    font-weight: 700;
    padding: 12px 38px;
    font-size: 13px;
    letter-spacing: 1.2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    pointer-events: auto !important;
}
.preorder-only-btn a{
    text-decoration: none;
}
.preorder-only-btn:hover {
    background: #000000;
    transform: translateY(-3px);
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 991.98px)
   ============================================ */
@media (max-width: 991.98px) {
    /* Hide top bar on mobile */
    .wrap {
        display: none !important;
    }

    /* Navbar on mobile */
    .ftco-navbar-light {
        background: #0a0a0a !important;
        position: relative;
        top: 0;
        z-index: 9998 !important;
    }

    .ftco-navbar-light .container {
        background: #0a0a0a;
        backdrop-filter: none;
        justify-content: space-between;
        width: 100%;
        padding: 0 15px;
        height: 65px;
    }

    .ftco-navbar-light .navbar-brand img {
        width: 100px;
        height: 90px;
    }

    /* Hide desktop navbar collapse */
    .ftco-navbar-light .navbar-collapse {
        display: none !important;
    }

    /* ===== MOBILE MENU TOGGLE BUTTON ===== */
    .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #e52b34 !important;
        border: none !important;
        padding: 10px 18px !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        color: white !important;
        transition: 0.25s;
        margin: 0;
        z-index: 10001 !important; /* Above sidebar overlay */
        position: relative;
        border-radius: 0 !important;
        cursor: pointer !important;
        margin-bottom: 20px;
    }

    .navbar-toggler:hover {
        background: #b71c27 !important;
        transform: scale(1.02);
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler i {
        margin-right: 8px;
        font-size: 16px;
    }

    /* ===== MOBILE SIDEBAR OVERLAY ===== */
    .mobile-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        z-index: 99999 !important; /* Highest */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .mobile-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* ===== MOBILE SIDEBAR PANEL ===== */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100%;
        background: #0a0a0a;
        z-index: 100000 !important; /* Highest */
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
        padding: 25px 20px;
        overflow-y: auto;
        pointer-events: none;
    }

    .mobile-sidebar.open {
        right: 0;
        pointer-events: auto;
    }

    /* ===== SIDEBAR CLOSE BUTTON ===== */
    .mobile-sidebar-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #e52b34;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        border: none;
        z-index: 100001;
        border-radius: 50%;
    }

    .mobile-sidebar-close i {
        color: white;
        font-size: 20px;
    }

    .mobile-sidebar-close:hover {
        background: #b71c27;
        transform: rotate(90deg);
    }

    /* ===== SIDEBAR LOGO ===== */
    .mobile-sidebar-logo {
        text-align: center;
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .mobile-sidebar-logo img {
        width: 120px;
        height: auto;
        display: inline-block;
    }

    /* ===== SIDEBAR NAVIGATION LINKS ===== */
    .mobile-sidebar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-sidebar-nav li {
        margin-bottom: 3px;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .mobile-sidebar.open .mobile-sidebar-nav li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-sidebar.open .mobile-sidebar-nav li:nth-child(1) { transition-delay: 0.05s; }
    .mobile-sidebar.open .mobile-sidebar-nav li:nth-child(2) { transition-delay: 0.10s; }
    .mobile-sidebar.open .mobile-sidebar-nav li:nth-child(3) { transition-delay: 0.15s; }
    .mobile-sidebar.open .mobile-sidebar-nav li:nth-child(4) { transition-delay: 0.20s; }
    .mobile-sidebar.open .mobile-sidebar-nav li:nth-child(5) { transition-delay: 0.25s; }

    .mobile-sidebar-nav li a {
        display: block;
        padding: 14px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
        border-left: 3px solid transparent;
        border-radius: 4px;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .mobile-sidebar-nav li a:hover,
    .mobile-sidebar-nav li a.active {
        color: #e52b34;
        border-left-color: #e52b34;
        background: rgba(229, 43, 52, 0.1);
        padding-left: 28px;
    }

    .mobile-sidebar-nav li a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    /* ===== SIDEBAR CONTACT INFO ===== */
    .mobile-sidebar-contact {
        margin-top: 40px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.3s;
    }

    .mobile-sidebar.open .mobile-sidebar-contact {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-sidebar-contact p {
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .mobile-sidebar-contact p i {
        width: 25px;
        color: #e52b34;
        font-size: 14px;
    }

    .mobile-sidebar-contact a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .mobile-sidebar-contact a:hover {
        color: #e52b34;
    }

    /* ===== SIDEBAR SOCIAL ICONS ===== */
    .mobile-sidebar-social {
        display: flex;
        gap: 12px;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-sidebar-social a {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: 0.3s;
        border-radius: 50%;
        text-decoration: none;
        font-size: 16px;
    }

    .mobile-sidebar-social a:hover {
        background: #e52b34;
        transform: translateY(-3px);
        color: white;
    }

    /* ===== HERO RESPONSIVE ===== */
    .hero-section {
        height: 70vh;
        background-attachment: scroll;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 11px;
        padding: 6px 16px;
    }

    .hero-accent {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .preorder-only-btn {
        padding: 10px 28px;
        font-size: 12px;
    }
}

/* ============================================
   EXTRA SMALL SCREENS (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .ftco-navbar-light .container {
        height: 58px;
        padding: 0 10px;
    }

    .ftco-navbar-light .navbar-brand img {
        width: 80px;
        height: 72px;
    }

    .navbar-toggler {
        padding: 8px 14px !important;
        font-size: 11px !important;
        margin-bottom: 20px;
    }

    .mobile-sidebar {
        width: 92%;
        max-width: 300px;
        padding: 20px 15px;
    }

    .mobile-sidebar-nav li a {
        font-size: 13px;
        padding: 12px 16px;
    }

    .mobile-sidebar-logo img {
        width: 100px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
}

/* ============================================
   DESKTOP HIDE MOBILE ELEMENTS
   ============================================ */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }

    .mobile-sidebar-overlay {
        display: none !important;
    }

    .mobile-sidebar {
        display: none !important;
    }
}

/* ============================================
   EMERGENCY FIXES - Ensures everything works
   ============================================ */
#mainHeader,
#mainHeader *,
.wrap,
.wrap *,
.ftco-navbar-light,
.ftco-navbar-light *,
.navbar,
.navbar *,
.navbar-nav,
.navbar-nav *,
.nav-item,
.nav-link {
    pointer-events: auto !important;
}

.nav-link {
    cursor: pointer !important;
}

/* Ensure header is above everything */
#mainHeader {
    position: relative;
    z-index: 9999 !important;
}

/* Fix for any invisible overlays */
.hero-overlay,
.hero-content {
    pointer-events: none !important;
}

.hero-content * {
    pointer-events: auto !important;
}

/* Ensure navbar elements are clickable */
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    cursor: pointer !important;
    pointer-events: auto !important;
    display: block !important;
    min-height: 40px !important;
}

/* Fix for Bootstrap collapse */
.navbar-collapse {
    pointer-events: auto !important;
}

/* Social media links in top bar */
.social-media p a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Scrollbar styling for sidebar */
.mobile-sidebar::-webkit-scrollbar {
    width: 4px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: #e52b34;
    border-radius: 2px;
}

.mobile-sidebar::-webkit-scrollbar-thumb:hover {
    background: #b71c27;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #faf9f8;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image-grid {
    flex: 1;
    min-width: 280px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-image-grid .grid-item {
    overflow: hidden;
}

.about-image-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-grid .grid-span-2 {
    grid-column: span 2;
    max-height: 260px;
}

.about-text-side {
    flex: 1;
    min-width: 280px;
    padding: 20px;
}

.about-text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e2a;
}

.red-decor-line {
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 25px;
}

.red-decor-line span {
    color: #e52b34;
    font-size: 22px;
    font-family: monospace;
}

.about-btn {
    display: inline-block;
    background: #e52b34;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.25s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.about-btn a{
    text-decoration: none;
    color: inherit;
}

.about-btn:hover {
    background: #000000;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .about-content-wrapper {
        flex-direction: column;
    }

    .about-text-side {
        text-align: center;
    }

    .red-decor-line {
        justify-content: center;
    }
}

/* Stats Counter Section */
.tidastats-section {
    padding: 60px 0;
    background: url('../images/heroimg2.jpeg') center/cover fixed;
}

.tidastats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.tidastats-item {
    flex: 1;
    min-width: 180px;
    border: 2px solid #000000;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.tidastats-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: 'Playfair Display', serif;
}

.tidastats-label {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* catering sec */

.tidacatercard-wrapper {
    padding: 60px 0;
    background: white;
}

.tidacatercard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADING ===== */
.tidacatercard-heading {
    text-align: center;
    margin-bottom: 10px;
}

.tidacatercard-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e2a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.tidacatercard-heading h2 span {
    color: #e52b34;
}

.red-line {
    gap: 2px;
    margin-bottom: 25px;
}
.red-line span{

    color: #e52b34;
    font-size: 22px;
    font-family: monospace;
}
.tidacatercard-heading p {
    color: #666;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== CARDS GRID ===== */
.tidacatercard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px; /* Space between cards and button */
}

.tidacatercard-card {
    background: #fff;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
    border: 1px solid #e52b34;
    
}

.tidacatercard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    border-bottom-color: #e52b34;
}

/* Card Icon */
.tidacatercard-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 43, 52, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s ease;
    border-radius: 50%;
}

.tidacatercard-card:hover .tidacatercard-icon {
    background: #e52b34;
    transform: scale(1.05) rotateY(180deg);
}

.tidacatercard-icon i {
    font-size: 36px;
    color: #e52b34;
    transition: 0.4s ease;
}

.tidacatercard-card:hover .tidacatercard-icon i {
    color: #fff;
}

/* Card Title */
.tidacatercard-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e2a;
    margin-bottom: 15px;
}

/* Card Text */
.tidacatercard-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Decorative number */
.tidacatercard-number {
    position: absolute;
    top: -5px;
    right: 5px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(229, 43, 52, 0.04);
    font-family: 'Playfair Display', serif;
    pointer-events: none;
    line-height: 1;
}

.tidacatercard-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.tidacatercard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: transparent;
    color: #e52b34;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #e52b34;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tidacatercard-btn:hover {
    background: #e52b34;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 43, 52, 0.3);
}

.tidacatercard-btn:active {
    transform: translateY(0px);
}

/* Button with arrow icon on hover */
.tidacatercard-btn::after {
    content: '→';
    margin-left: 8px;
    transition: 0.3s ease;
    display: inline-block;
}

.tidacatercard-btn:hover::after {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .tidacatercard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .tidacatercard-heading h2 {
        font-size: 2.4rem;
    }
    
    .tidacatercard-card {
        padding: 35px 25px 30px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .tidacatercard-wrapper {
        padding: 60px 0;
    }

    .tidacatercard-heading h2 {
        font-size: 2rem;
    }

    .tidacatercard-heading p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .tidacatercard-grid {
        gap: 20px;
    }

    .tidacatercard-card {
        padding: 30px 20px 25px;
    }

    .tidacatercard-icon {
        width: 65px;
        height: 65px;
    }

    .tidacatercard-icon i {
        font-size: 28px;
    }

    .tidacatercard-title {
        font-size: 1.3rem;
    }
    
    .tidacatercard-btn {
        padding: 12px 32px;
        font-size: 13px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .tidacatercard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .tidacatercard-wrapper {
        padding: 40px 0;
    }
    
    .tidacatercard-heading h2 {
        font-size: 1.8rem;
    }
    
    .tidacatercard-heading {
        margin-bottom: 30px;
    }
    
    .tidacatercard-card {
        padding: 25px 18px 22px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tidacatercard-number {
        font-size: 4rem;
    }
    
    .tidacatercard-btn {
        padding: 12px 28px;
        font-size: 12px;
    }
}

/* Extra Small */
@media (max-width: 380px) {
    .tidacatercard-heading h2 {
        font-size: 1.5rem;
    }
    
    .tidacatercard-card {
        padding: 20px 15px;
    }
    
    .tidacatercard-icon {
        width: 55px;
        height: 55px;
    }
    
    .tidacatercard-icon i {
        font-size: 24px;
    }
    
    .tidacatercard-title {
        font-size: 1.1rem;
    }
    
    .tidacatercard-btn {
        padding: 10px 24px;
        font-size: 11px;
    }
}

/* ===== ANIMATION ON SCROLL (Optional) ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tidacatercard-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.tidacatercard-card:nth-child(1) { animation-delay: 0.1s; }
.tidacatercard-card:nth-child(2) { animation-delay: 0.2s; }
.tidacatercard-card:nth-child(3) { animation-delay: 0.3s; }

.tidacatercard-btn-wrapper {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}



/* Testimonial Section */
.tidatest-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/legumes.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tidatest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.tidatest-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.tidatest-header {
    text-align: center;
    margin-bottom: 50px;
}

.tidatest-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.tidatest-header p {
    color: #ddd;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tidatest-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(229, 43, 52, 0.4);
}

.tidatest-icon {
    font-size: 48px;
    color: #e52b34;
    margin-bottom: 20px;
}

.tidatest-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    font-style: italic;
    margin-bottom: 25px;
}

.tidatest-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e52b34;
    margin-bottom: 5px;
}

.tidatest-title {
    font-size: 0.8rem;
    color: #ccc;
}

.tidatest-rating i {
    color: #e52b34;
    font-size: 14px;
    margin: 0 2px;
}

.tidatest-carousel .carousel-control-prev,
.tidatest-carousel .carousel-control-next {
    width: 45px;
    height: 45px;
    background: #e52b34;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

@media (max-width: 768px) {
    .tidatest-section {
        padding: 60px 0;
    }

    .tidatest-card {
        padding: 30px 20px;
    }
}

/* Contact & Map */
.tidacontact-section {
    padding: 80px 0;
    background: #faf9f8;
}

.tidacontact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tidacontact-info {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tidacontact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1e1e2a;
    margin-bottom: 25px;
}

.tidacontact-detail {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tidacontact-detail i {
    width: 40px;
    height: 40px;
    background: #e52b34;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tidacontact-detail div {
    flex: 1;
}

.tidacontact-detail strong {
    display: block;
    color: #1e1e2a;
    margin-bottom: 5px;
}

.tidacontact-detail p,
.tidacontact-detail a {
    color: #555;
    text-decoration: none;
    margin: 0;
}

.tidamap {
    flex: 1;
    min-width: 280px;
    height: 400px;
    background: #ddd;
}

.tidamap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

     /* ============================================
   FOOTER - SHORT & CLEAN
   ============================================ */

.tidafooter {
    background: #0a0a0a;
    color: #aaa;
    padding: 60px 0 20px;
    width: 100%;
    overflow: visible;
}

.tidafooter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tidafooter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.tidafooter-col {
    display: flex;
    flex-direction: column;
}

.tidafooter-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.red-linefooter {
    width: 60px;
    height: 3px;
    background: #e52b34;
    margin-bottom: 18px;
    border-radius: 2px;
}

.tidafooter-logo img {
    width: 120px;
    margin-bottom: 15px;
}

.tidafooter-col p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 15px;
}

.tidafooter-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tidafooter-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.tidafooter-social a:hover {
    background: #e52b34;
    transform: translateY(-3px);
}

.tidafooter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tidafooter-links li {
    margin-bottom: 10px;
}

.tidafooter-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.tidafooter-links a:hover {
    color: #e52b34;
    padding-left: 8px;
}

/* Instagram Grid */
.tidafooter-instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 200px;
}

.tidafooter-instagram-grid a {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 6px;
    background: #1a1a1a;
    border: 2px solid rgba(229, 43, 52, 0.2);
}

.tidafooter-instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tidafooter-instagram-grid a:hover {
    transform: scale(1.05);
    border-color: #e52b34;
}

/* Bottom Section */
.tidafooter-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e52b34;
    color: #777;
    font-size: 13px;
    clear: both;
}

.tidafooter-bottom p {
    margin-bottom: 0;
    padding: 10px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .tidafooter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tidafooter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .tidafooter-col {
        align-items: center;
        text-align: center;
    }
    
    .red-linefooter {
        margin-left: auto;
        margin-right: auto;
    }
    
    .tidafooter-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    
    .tidafooter-social {
        justify-content: center;
    }
    
    .tidafooter-links {
        text-align: center;
    }
    
    .tidafooter-instagram-grid {
        margin: 0 auto;
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .tidafooter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .tidafooter-col {
        align-items: center;
    }
    
    .tidafooter-instagram-grid {
        max-width: 170px;
        margin: 0 auto;
    }
    
    .tidafooter-bottom {
        font-size: 11px;
        padding-top: 20px;
    }
}

/* ============================================
   FIX SCROLL BLOCKING - OVERRIDE OVERFLOW HIDDEN
   ============================================ */

/* OVERRIDE ALL OVERFLOW HIDDEN EXCEPT CRITICAL ONES */
.grid-item,
.grid-item.grid-span-2,
.tidacatercard-card,
.tidacatercard-btn,
a:not(.mobile-sidebar a):not(.carousel-control-prev):not(.carousel-control-next) {
    overflow: visible !important;
}

/* FORCE BODY TO SCROLL */
html, body {
    overflow: visible !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
}

/* SIDEBAR FIX - DON'T BLOCK SCROLL */
body.sidebar-open {
    overflow: visible !important;
    overflow-y: auto !important;
    height: auto !important;
}

.mobile-sidebar {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.mobile-sidebar-overlay {
    pointer-events: none !important;
}

.mobile-sidebar-overlay.active {
    pointer-events: auto !important;
}

/* CAROUSEL - KEEP FUNCTIONAL */
.carousel-inner {
    overflow: hidden !important;
}

/* FOOTER - ENSURE VISIBLE */
.tidafooter,
.tidafooter-container,
.tidafooter-grid,
.tidafooter-col,
.tidafooter-bottom {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.tidafooter-bottom {
    display: block !important;
    clear: both !important;
    padding-top: 30px !important;
    margin-top: 20px !important;
    border-top: 2px solid #e52b34 !important;
}