/*
Menu Type Toggle (Shared for Dine In & Delivery)
*/
.menu-type-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-type-btn {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-type-btn i {
    font-size: 18px;
}

.menu-type-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.menu-type-btn.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #1a3025;
}

.menu-type-content {
    display: none;
}

.menu-type-content.active {
    display: block;
}

/* No Items Message */
.no-items-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.no-items-message i {
    font-size: 48px;
    color: var(--main-color);
    margin-bottom: 20px;
    display: block;
}

.no-items-message h4 {
    color: #fff;
    margin-bottom: 10px;
}

/*
Dine In Specific Styles
*/
.item-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.dietary-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.dietary-info img {
    width: 16px;
    height: 16px;
}

.prep-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.prep-info img {
    width: 18px;
}

.item-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-right: 5px;
}

.price-discount {
    color: #5dd879;
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.unavailable-text {
    background: #dc3545;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.dish-block .inner-box {
    position: relative;
}

.dish-block.unavailable {
    opacity: 0.6;
}

.tabs-content .tab {
    display: none;
}

.tabs-content .tab.active-tab {
    display: block;
}

/*
Delivery Menu Styles
*/

/* Delivery Menu Item Card */
.delivery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.delivery-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.delivery-item.unavailable {
    opacity: 0.5;
    pointer-events: none;
}

.delivery-item-inner {
    display: flex;
    gap: 20px;
}

.delivery-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.delivery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.delivery-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.delivery-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.delivery-item-name .badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--main-color);
    color: #1a3025;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    margin-left: 10px;
    text-transform: uppercase;
}

.delivery-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
}

.delivery-item-price .old-price {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}

.delivery-item-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.delivery-item-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.meta-tag img {
    width: 14px;
    height: 14px;
}

.delivery-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--main-color);
    color: #1a3025;
}

.qty-input {
    width: 40px;
    height: 36px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.add-to-cart-btn {
    padding: 10px 25px;
    background: var(--main-color);
    border: none;
    border-radius: 8px;
    color: #1a3025;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(199, 155, 98, 0.4);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.add-to-cart-btn.added {
    background: #5dd879;
}

/* Floating Cart Button */
.floating-cart {
    z-index: 1000;
}

.cart-toggle-btn {
    background: none !important;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-toggle-btn:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    width: 20px;
    height: 20px;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge.empty {
    display: none;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--color-two);
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.cart-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.cart-empty h4 {
    color: #fff;
    margin-bottom: 10px;
}

.cart-empty p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    background: var(--main-color);
    color: #1a3025;
}

.cart-qty-value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    color: #ff6b7a;
}

.cart-item-total {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cart-summary-row.total {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
}

.cart-summary-row .value {
    color: var(--main-color);
}

.free-delivery-progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}

.free-delivery-bar {
    height: 100%;
    background: var(--main-color);
    border-radius: 20px;
    transition: width 0.3s ease;
}

.free-delivery-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-align: center;
}

.free-delivery-text span {
    color: var(--main-color);
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    color: #1a3025;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(199, 155, 98, 0.4);
}

.clear-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.clear-cart-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 1100;
}

.toast {
    background: var(--color-two);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #5dd879;
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast-icon {
    font-size: 20px;
}

.toast.success .toast-icon {
    color: #5dd879;
}

.toast.error .toast-icon {
    color: #dc3545;
}

.toast-message {
    color: #fff;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .delivery-item-inner {
        flex-direction: column;
    }

    .delivery-item-image {
        width: 100%;
        height: 180px;
    }

    .delivery-item-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-selector {
        justify-content: center;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .floating-cart {
        bottom: 20px;
        right: 20px;
    }

    .menu-type-toggle {
        flex-direction: column;
        gap: 10px;
    }

    .menu-type-btn {
        justify-content: center;
    }
}


/*
Private Room
*/

/* Offers Page Styles */
.offers-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 58, 47, 0.85), rgba(26, 58, 47, 0.95)),
    url('../images/background/banner-image-5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.offers-hero .title-box {
    text-align: center;
    z-index: 2;
}

.offers-hero h1 {
    font-size: 64px;
    color: #fff;
    font-family: var(--font-family-Fraunces);
    margin-bottom: 15px;
}

.offers-hero .subtitle span {
    color: #c9a86c;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: var(--color-two);
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 108, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.offer-card-inner {
    display: flex;
    flex-wrap: wrap;
}

.offer-card.reverse .offer-card-inner {
    flex-direction: row-reverse;
}

.offer-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    min-height: 500px;
}

.offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #c9a86c, #e8d5a3);
    color: #1a3a2f;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.offer-content-col {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-title {
    font-size: 42px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.offer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.offer-items {
    margin-bottom: 35px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.offer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.offer-item-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #c9a86c, #e8d5a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
}

.offer-item-icon i {
    color: #1a3a2f;
    font-size: 10px;
}

.offer-item-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 168, 108, 0.2);
}

.offer-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: #c9a86c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.price-value {
    font-size: 48px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1;
}

.price-value span {
    font-size: 24px;
    color: #c9a86c;
}

.price-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 5px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #c9a86c;
    color: #c9a86c;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.offer-btn:hover {
    background: #c9a86c;
    color: #1a3a2f;
}

.offer-btn i {
    transition: transform 0.3s ease;
}

.offer-btn:hover i {
    transform: translateX(5px);
}

/* Decorative Elements */
.offer-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
}

.offer-decoration svg {
    width: 120px;
    height: 120px;
    fill: #c9a86c;
}

/* Featured Offer */
.featured-offer {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1), rgba(201, 168, 108, 0.05));
    border-color: rgba(201, 168, 108, 0.4);
}

.featured-offer .offer-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
}

/* Section Divider */
.offers-divider {
    text-align: center;
    padding: 60px 0;
}

.offers-divider .star-icon {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.offers-divider .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a86c, transparent);
}

.offers-divider img {
    width: 30px;
    opacity: 0.8;
}

/* CTA Section */
.offers-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(26, 58, 47, 0.95), rgba(26, 58, 47, 0.98)),
    url('../images/background/banner-image-7.jpg');
}

.offers-cta h3 {
    font-size: 36px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.offers-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

.offers-cta .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.offers-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c9a86c;
}

.offers-cta .contact-item i {
    font-size: 20px;
}

.offers-cta .contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offers-cta .contact-item a:hover {
    color: #c9a86c;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .offer-title {
        font-size: 36px;
    }

    .offer-content-col {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .offer-image-col,
    .offer-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offer-image-col {
        min-height: 350px;
    }

    .offer-card.reverse .offer-card-inner {
        flex-direction: row;
    }

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

@media (max-width: 767px) {
    .offers-hero {
        height: 40vh;
        min-height: 300px;
    }

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

    .offer-content-col {
        padding: 30px 25px;
    }

    .offer-title {
        font-size: 28px;
    }

    .price-value {
        font-size: 36px;
    }

    .offer-footer {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .offers-cta .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .offer-btn {
        width: 100%;
        justify-content: center;
    }
}


/*
Offers
*/

/* Offers Page Styles */
.offers-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 58, 47, 0.85), rgba(26, 58, 47, 0.95)),
    url('../images/background/banner-image-5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.offers-hero .title-box {
    text-align: center;
    z-index: 2;
}

.offers-hero h1 {
    font-size: 64px;
    color: #fff;
    font-family: var(--font-family-Fraunces);
    margin-bottom: 15px;
}

.offers-hero .subtitle span {
    color: #c9a86c;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: var(--color-two);
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 108, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.offer-card-inner {
    display: flex;
    flex-wrap: wrap;
}

.offer-card.reverse .offer-card-inner {
    flex-direction: row-reverse;
}

.offer-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    min-height: 500px;
}

.offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #c9a86c, #e8d5a3);
    color: #1a3a2f;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.offer-content-col {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-title {
    font-size: 42px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.offer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.offer-items {
    margin-bottom: 35px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.offer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.offer-item-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #c9a86c, #e8d5a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
}

.offer-item-icon i {
    color: #1a3a2f;
    font-size: 10px;
}

.offer-item-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 168, 108, 0.2);
}

.offer-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: #c9a86c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.price-value {
    font-size: 48px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1;
}

.price-value span {
    font-size: 24px;
    color: #c9a86c;
}

.price-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 5px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #c9a86c;
    color: #c9a86c;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.offer-btn:hover {
    background: #c9a86c;
    color: #1a3a2f;
}

.offer-btn i {
    transition: transform 0.3s ease;
}

.offer-btn:hover i {
    transform: translateX(5px);
}

/* Decorative Elements */
.offer-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
}

.offer-decoration svg {
    width: 120px;
    height: 120px;
    fill: #c9a86c;
}

/* Featured Offer */
.featured-offer {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1), rgba(201, 168, 108, 0.05));
    border-color: rgba(201, 168, 108, 0.4);
}

.featured-offer .offer-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
}

/* Section Divider */
.offers-divider {
    text-align: center;
    padding: 60px 0;
}

.offers-divider .star-icon {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.offers-divider .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a86c, transparent);
}

.offers-divider img {
    width: 30px;
    opacity: 0.8;
}

/* CTA Section */
.offers-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(26, 58, 47, 0.95), rgba(26, 58, 47, 0.98)),
    url('../images/background/banner-image-7.jpg');
}

.offers-cta h3 {
    font-size: 36px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.offers-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

.offers-cta .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.offers-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c9a86c;
}

.offers-cta .contact-item i {
    font-size: 20px;
}

.offers-cta .contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offers-cta .contact-item a:hover {
    color: #c9a86c;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .offer-title {
        font-size: 36px;
    }

    .offer-content-col {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .offer-image-col,
    .offer-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offer-image-col {
        min-height: 350px;
    }

    .offer-card.reverse .offer-card-inner {
        flex-direction: row;
    }

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

@media (max-width: 767px) {
    .offers-hero {
        height: 40vh;
        min-height: 300px;
    }

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

    .offer-content-col {
        padding: 30px 25px;
    }

    .offer-title {
        font-size: 28px;
    }

    .price-value {
        font-size: 36px;
    }

    .offer-footer {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .offers-cta .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .offer-btn {
        width: 100%;
        justify-content: center;
    }
}

/*
Gallery
*/


/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 58, 47, 0.85), rgba(26, 58, 47, 0.95)),
    url('../images/background/image-6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-hero .title-box {
    text-align: center;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: 64px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.gallery-hero .subtitle span {
    color: #c9a86c;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--color-two);
}

/* Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(201, 168, 108, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #c9a86c;
    color: #c9a86c;
}

.filter-btn.active {
    background: linear-gradient(135deg, #c9a86c, #e8d5a3);
    border-color: #c9a86c;
    color: #1a3a2f;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 108, 0.15);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 108, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Media Container */
.gallery-media {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.tall .gallery-media {
    padding-top: 160%;
}

.gallery-item.wide .gallery-media {
    padding-top: 50%;
}

.gallery-media img,
.gallery-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-media img,
.gallery-item:hover .gallery-media video {
    transform: scale(1.1);
}

/* Video Play Button */
.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 108, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.video-indicator i {
    color: #1a3a2f;
    font-size: 24px;
    margin-left: 4px;
}

.gallery-item:hover .video-indicator {
    background: #c9a86c;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 58, 47, 0.95) 0%, rgba(26, 58, 47, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Info */
.gallery-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-title {
    font-size: 20px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
    line-height: 1.3;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-tag {
    background: rgba(201, 168, 108, 0.15);
    color: #c9a86c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 168, 108, 0.3);
}

/* View Icon */
.view-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(201, 168, 108, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.view-icon i {
    color: #1a3a2f;
    font-size: 18px;
}

.gallery-item:hover .view-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-media {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-media video {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
}

.lightbox-info {
    text-align: center;
    margin-top: 25px;
}

.lightbox-title {
    font-size: 28px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
}

.lightbox-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lightbox-tag {
    background: rgba(201, 168, 108, 0.2);
    color: #c9a86c;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(201, 168, 108, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #c9a86c;
    transform: rotate(90deg);
}

.lightbox-close i {
    color: #1a3a2f;
    font-size: 20px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(201, 168, 108, 0.2);
    border: 1px solid rgba(201, 168, 108, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(201, 168, 108, 0.9);
}

.lightbox-nav:hover i {
    color: #1a3a2f;
}

.lightbox-nav i {
    color: #c9a86c;
    font-size: 20px;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Load More Button */
.load-more-wrap {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #c9a86c;
    color: #c9a86c;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #c9a86c;
    color: #1a3a2f;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 60px;
    color: rgba(201, 168, 108, 0.3);
    margin-bottom: 20px;
}

.no-results h4 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.no-results p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1199px) {
    .gallery-grid {
        gap: 25px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}

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

    .gallery-item.wide {
        grid-column: span 1;
    }

    .gallery-item.wide .gallery-media {
        padding-top: 75%;
    }

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

@media (max-width: 767px) {
    .gallery-hero {
        height: 40vh;
        min-height: 300px;
    }

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

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item.tall .gallery-media {
        padding-top: 100%;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-title {
        font-size: 22px;
    }
}
