.reservations-section {
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

.reservations-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/leaves.png');
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.reservations-section .container {
    position: relative;
    z-index: 1;
    max-width: 1300px !important;
}

.table-card {
    background: var(--w);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.table-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(78, 52, 46, 0.12);
    border-color: var(--c2);
}

.table-img-wrap {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.table-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.table-card:hover .table-img-wrap img {
    transform: scale(1.1);
}

.capacity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 12px;
    color: var(--cg);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.capacity-badge i { color: var(--c2); }

.table-info-body {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.advance-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c2);
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.table-title {
    font-family: 'Philosopher Regular', serif !important;
    font-size: 1.6rem;
    color: var(--c1);
    margin-bottom: 15px;
}

.table-location {
    color: var(--c3);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 45px;
}

.view-book-btn {
    margin-top: auto;
    background: var(--c1);
    color: var(--w) !important;
    padding: 14px 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--c1);
}

.view-book-btn:hover {
    background: transparent;
    color: var(--c1) !important;
}

/* Minimalist Modern Luxury Branch Cards */
.luxury-branch-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.luxury-branch-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 90px rgba(78, 52, 46, 0.15);
    border-color: var(--c2);
}

.branch-image-top {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.branch-image-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(3, 21, 13, 0.2));
}

.branch-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fff;
    color: var(--c1);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.branch-content-bottom {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.loc-tag {
    font-size: 0.75rem;
    color: var(--c2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.branch-content-bottom h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 15px;
    font-family: 'Bodoni Moda', serif !important;
    font-weight: 700;
}

.branch-content-bottom p {
    color: #333333 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.gold-book-btn {
    margin-top: auto;
    background: var(--c2);
    color: #fff !important;
    padding: 16px 30px;
    border-radius: 15px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 2px solid var(--c2);
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.gold-book-btn:hover {
    background: transparent;
    color: var(--c2) !important;
}

.text-capitalize {
    text-transform: capitalize;
}
