/* ===================================================
   BLACK DIAMOND EVENTS - NEW HOMEPAGE STYLES
   =================================================== */

/* ========== HERO SECTION WITH IMAGE SLIDER ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-main-slider {
    width: 100%;
    height: 100%;
}

.hero-main-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomEffect 20s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 75, 0.2);
    border: 1px solid rgba(212, 168, 75, 0.5);
    color: #D4A84B;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-section .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gold {
    color: #D4A84B;
}

.hero-section .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-primary:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-secondary {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

.btn-secondary:hover {
    background: #2d2d4a;
}

.btn-gold {
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    color: #1a1a2e;
    border-color: #D4A84B;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
}

.btn-white {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #1a1a2e;
}

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

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-outline-dark {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    font-weight: 600;
}

.btn-outline-dark:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #D4A84B;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== SECTION STYLES ========== */
.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 168, 75, 0.15);
    color: #D4A84B;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-badge.gold {
    background: #D4A84B;
    color: #1a1a2e;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICES CAROUSEL WITH IMAGE + ICON ========== */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-carousel {
    overflow: hidden;
}

/* ===============================================
   SERVICE CARD STYLES - MOVED TO INLINE IN index.php
   To avoid CSS conflicts, these styles are now inline
   =============================================== */

/*
.service-card-new {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image,
.service-card-new .service-card-image {
    position: relative;
    height: 180px;
    overflow: visible !important;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px 20px 0 0;
}

.service-card-new:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    border-radius: 20px 20px 0 0;
    z-index: 1;
    pointer-events: none;
}

.service-card-icon {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(212, 168, 75, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-card-icon {
    transform: translateX(-50%) scale(1.1);
}
*/

/* Keep icon color variants */
.service-card-icon.blue { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4); }
.service-card-icon.pink { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4); }
.service-card-icon.gold { background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%); box-shadow: 0 8px 25px rgba(212, 168, 75, 0.4); }
.service-card-icon.orange { background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4); }
.service-card-icon.purple { background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4); }
.service-card-icon.teal { background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%); box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4); }
.service-card-icon.red { background: linear-gradient(135deg, #ef4444 0%, #f87171 100%); box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4); }
.service-card-icon.green { background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%); box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4); }

.service-card-content {
    padding: 40px 20px 24px;
    text-align: center;
}

.service-card-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.service-card-content p {
    font-size: 13px;
    color: #6c757d;
}

/* Services Navigation */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.services-nav-btn:hover {
    background: #D4A84B;
    border-color: #D4A84B;
    color: #fff;
}

.services-prev {
    left: 0;
}

.services-next {
    right: 0;
}

.services-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ========== PREMIUM SECTION - BIG IMAGE CAROUSEL ========== */
.premium-section {
    padding: 100px 0 0;
    background: #1a1a2e;
}

.premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-section .section-title {
    color: #fff;
}

.premium-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.premium-carousel-wrapper {
    position: relative;
    padding: 0 0 80px;
    overflow: hidden;
}

.premium-carousel {
    width: 100%;
    padding: 0 5%;
}

.premium-carousel .swiper-slide {
    width: 80%;
    max-width: 1000px;
    transition: all 0.4s ease;
}

.premium-carousel .swiper-slide-active {
    width: 80%;
}

.premium-slide {
    position: relative;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
}

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

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

.premium-slide:hover .premium-image img {
    transform: scale(1.05);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.premium-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 10;
}

.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4A84B;
    color: #1a1a2e;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.premium-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.4;
}

.premium-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 500px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.premium-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 20;
}

.premium-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-nav-btn:hover {
    background: #D4A84B;
    border-color: #D4A84B;
    color: #1a1a2e;
}

.premium-pagination {
    display: flex;
    gap: 8px;
}

.premium-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D4A84B;
    box-shadow: 0 0 10px rgba(212, 168, 75, 0.5);
}

.premium-cta {
    padding: 30px 0 50px;
}

.cta-box {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(212, 168, 75, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-box i {
    font-size: 26px;
    color: #D4A84B;
}

.cta-content {
    text-align: left;
    flex: 1;
}

.cta-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 0;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline-light:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
}

.btn-outline-light i {
    font-size: 18px;
}

/* ========== PACKAGES SECTION - IDEA FOCUSED ========== */
.packages-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* ========== NEW PACKAGES GRID WITH IMAGES ========== */
.packages-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.package-card-new.featured {
    border: 2px solid #D4A84B;
}

.package-featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    color: #1a1a2e;
    padding: 8px 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(212, 168, 75, 0.4);
}

.package-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-new:hover .package-card-image img {
    transform: scale(1.1);
}

.package-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(26,26,46,0.7) 100%);
}

.package-card-overlay.gold {
    background: linear-gradient(180deg, rgba(212,168,75,0.1) 0%, rgba(26,26,46,0.8) 100%);
}

.package-guest-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
}

.package-guest-badge i {
    font-size: 14px;
    color: #D4A84B;
}

.package-guest-badge.gold {
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    color: #1a1a2e;
}

.package-guest-badge.gold i {
    color: #1a1a2e;
}

.package-guest-badge.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    color: #fff;
}

.package-guest-badge.teal i {
    color: #fff;
}

.package-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.package-card-body > p {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.5;
}

.package-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.package-features-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #495057;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 20px;
}

.package-features-row span i {
    color: #22c55e;
    font-size: 12px;
}

.package-ideal-for {
    font-size: 12px;
    color: #92400e;
    background: #fffbeb;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.package-ideal-for strong {
    color: #D4A84B;
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a1a2e;
    color: #fff;
    padding: 14px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.package-btn:hover {
    background: #D4A84B;
    color: #1a1a2e;
}

.package-btn.gold {
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    color: #1a1a2e;
}

.package-btn.gold:hover {
    background: linear-gradient(135deg, #e6c06e 0%, #D4A84B 100%);
    transform: translateY(-2px);
}

/* Custom Package Box */
.custom-package-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    border-radius: 24px;
    padding: 50px;
}

.custom-package-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.custom-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 75, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #D4A84B;
    flex-shrink: 0;
}

.custom-text {
    flex: 1;
}

.custom-text h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.custom-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Trust Indicators */
.packages-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 15px;
}

.trust-item i {
    font-size: 22px;
    color: #D4A84B;
}

/* View All Packages - Left aligned */
.packages-view-all {
    margin-top: 40px;
    text-align: left;
}

/* ========== MENU PREVIEW SECTION ========== */
.menu-preview-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.menu-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.menu-preview-content .section-desc {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.menu-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.menu-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.highlight-icon.veg {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.highlight-icon.nonveg {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.highlight-icon.luxury {
    background: rgba(212, 168, 75, 0.15);
    color: #D4A84B;
}

.highlight-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 14px;
    color: #6c757d;
}

.menu-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.menu-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #495057;
}

.menu-features span i {
    color: #22c55e;
}

.menu-buttons {
    display: flex;
    gap: 16px;
}

.menu-preview-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.menu-preview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.menu-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #D4A84B;
}

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

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-category {
    background: #D4A84B;
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section-new {
    padding: 20px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card-new {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card-new.featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    border: none;
}

.testimonial-card-new.featured .testimonial-text-new,
.testimonial-card-new.featured .author-details h4 {
    color: #fff;
}

.testimonial-card-new.featured .author-details span {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card-new.featured .testimonial-quote-icon {
    background: rgba(212, 168, 75, 0.2);
    color: #D4A84B;
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 75, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D4A84B;
    margin-bottom: 20px;
}

.testimonial-text-new {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 100px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-card-new.featured .testimonial-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-new img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.author-details span {
    font-size: 12px;
    color: #6c757d;
}

.testimonial-rating-new {
    display: flex;
    gap: 2px;
}

.testimonial-rating-new i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    padding: 30px 50px;
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-label {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.8);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(26, 26, 46, 0.2);
}

/* ========== CUSTOMER VIDEO REVIEW SECTION - NEW DESIGN ========== */
.video-review-section {
    padding: 80px 0;
    background: #f9fafb;
}

.video-review-section > .container {
    max-width: 900px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.video-review-swiper-container {
    position: relative;
}

.videoReviewSwiper {
    width: 100%;
    overflow: hidden;
}

/* Main Card - Side by Side Layout */
.video-review-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 35px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    min-height: 280px;
}

/* Video Player - Left Side */
.video-review-media {
    flex: 0 0 320px;
    width: 320px;
    min-width: 320px;
}

.video-player-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    height: 100%;
    min-height: 230px;
}

.video-poster {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
}

.video-controls-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-btn,
.video-pause-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn i,
.video-pause-btn i {
    font-size: 24px;
    color: #1a1a2e;
    margin-left: 3px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

/* Video Bottom Bar */
.video-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 15px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-time {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    min-width: 35px;
}

.video-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.video-progress-bar {
    height: 100%;
    background: #00b4d8;
    border-radius: 2px;
}

.video-nav-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-prev-btn {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-prev-btn i {
    font-size: 16px;
}

.video-source-icon {
    font-size: 18px;
    color: #00b4d8;
}

/* Review Content - Right Side */
.video-review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    position: relative;
    min-width: 0;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.review-stars i {
    color: #D4A84B;
    font-size: 16px;
}

.review-quote-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 0;
}

.review-quote-icon span {
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
    color: #f0f0f0;
    font-weight: 700;
}

.review-text {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.review-read-more {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
    text-align: left;
    width: fit-content;
}

.review-read-more:hover {
    color: #1a1a2e;
}

.review-author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.review-author-info span {
    font-size: 13px;
    color: #6c757d;
}

/* Swiper Navigation - Bottom Center */
.video-swiper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.video-swiper-prev,
.video-swiper-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.video-swiper-prev i,
.video-swiper-next i {
    font-size: 18px;
    color: #333;
}

.video-swiper-prev:hover,
.video-swiper-next:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
}

.video-swiper-prev:hover i,
.video-swiper-next:hover i {
    color: #fff;
}

/* Review Lightbox */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.review-lightbox-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.review-lightbox.active .review-lightbox-content {
    transform: scale(1);
}

.review-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.review-lightbox-close i {
    font-size: 22px;
    color: #333;
}

.review-lightbox-close:hover {
    background: #1a1a2e;
}

.review-lightbox-close:hover i {
    color: #fff;
}

.review-lightbox-body {
    padding: 45px 40px;
}

.review-lightbox-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-lightbox-stars i {
    color: #D4A84B;
    font-size: 22px;
}

.review-lightbox-quote {
    font-family: Georgia, serif;
    font-size: 60px;
    line-height: 0.5;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.review-lightbox-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.review-lightbox-author {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.review-lightbox-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.review-lightbox-author span {
    font-size: 13px;
    color: #6c757d;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .video-review-section > .container {
        max-width: 100% !important;
    }
    
    .video-review-card {
        gap: 25px;
    }
    
    .video-review-media {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .video-review-section {
        padding: 60px 0;
    }
    
    .video-review-card {
        flex-direction: column !important;
        gap: 20px;
        padding: 20px;
    }
    
    .video-review-media {
        flex: none;
        width: 100%;
        min-width: 100%;
    }
    
    .video-player-wrapper {
        min-height: 200px;
    }
    
    .video-poster {
        min-height: 200px;
    }
    
    .video-review-content {
        padding: 5px 0;
    }
    
    .review-lightbox-body {
        padding: 35px 25px;
    }
    
    .review-quote-icon span {
        font-size: 50px;
    }
    
    .video-swiper-nav {
        margin-top: 20px;
    }
}

/* ========== FAQ SECTION - NEW DESIGN ========== */
.faq-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #fefefe 0%, #f8f5f0 100%);
}

.faq-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.faq-intro {
    font-size: 17px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.faq-intro strong {
    color: #1a1a2e;
}

.faq-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.faq-tagline .line {
    width: 40px;
    height: 2px;
    background: #D4A84B;
}

.faq-tagline .text {
    color: #D4A84B;
    font-size: 15px;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.faq-card.purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    border: none;
}

.faq-card.purple .faq-number {
    color: rgba(255, 255, 255, 0.15);
}

.faq-card.purple .faq-content h3 {
    color: #fff;
}

.faq-card.purple .faq-content p {
    color: rgba(255, 255, 255, 0.85);
}

.faq-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(212, 168, 75, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    z-index: 0;
}

.faq-content {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.faq-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.faq-cta-new {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    border-radius: 20px;
}

.faq-cta-new p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* ========== VIDEO REVIEWS SECTION - REDESIGNED ========== */
.video-reviews-section {
    padding: 100px 0;
    background: #f9fafb;
}

.video-reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-reviews-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.video-play-btn i {
    font-size: 32px;
    color: #1a1a2e;
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #D4A84B;
}

.video-play-btn:hover i {
    color: #fff;
}

/* Right Side - Review Content */
.video-reviews-content {
    padding: 20px 0;
}

.video-reviews-content .section-badge {
    margin-bottom: 16px;
}

.video-reviews-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.review-stars-large {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.review-stars-large i {
    color: #D4A84B;
    font-size: 24px;
}

.review-quote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
    padding-left: 24px;
    border-left: 4px solid #D4A84B;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4A84B;
}

.review-author-info strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.review-author-info span {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 992px) {
    .video-reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-container img {
        height: 350px;
    }
    
    .video-reviews-content h2 {
        font-size: 32px;
    }
    
    .review-quote {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .video-reviews-section {
        padding: 60px 0;
    }
    
    .video-reviews-text .section-title {
        font-size: 28px;
    }
    
    .text-review-item {
        padding: 20px;
    }
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
    border-bottom: 3px dashed #D4A84B;
}

.section-subtitle-bold {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hiw-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
}

.hiw-step {
    text-align: center;
    max-width: 240px;
    position: relative;
}

.hiw-step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(30px);
    width: 32px;
    height: 32px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 5;
}

.hiw-step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4A84B 0%, #e6c06e 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
}

.hiw-step-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hiw-step-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.hiw-step-icon.gold {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.hiw-step-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hiw-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.hiw-step p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.hiw-connector {
    display: flex;
    align-items: center;
    padding-top: 40px;
    color: #d1d5db;
    font-size: 16px;
    gap: 2px;
}

.hiw-cta {
    text-align: center;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
}

.cta-wrapper {
    text-align: center;
}

.cta-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-wrapper > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cta-locations i {
    color: #D4A84B;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    .packages-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-slide {
        height: 450px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card-new.featured {
        grid-column: span 2;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-section .hero-title {
        font-size: 48px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
        padding: 25px 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .services-carousel-wrapper {
        padding: 0 40px;
    }
    
    .premium-slide {
        height: 400px;
    }
    
    .premium-content h3 {
        font-size: 28px;
    }
    
    .menu-preview-wrapper {
        grid-template-columns: 1fr;
    }
    
    .menu-preview-image {
        order: -1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item.large {
        grid-row: auto;
        grid-column: span 2;
        height: 300px;
    }
    
    .hiw-steps {
        flex-wrap: wrap;
    }
    
    .hiw-connector {
        display: none;
    }
    
    .custom-package-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 36px;
    }
    
    .hero-section .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 20px 25px;
    }
    
    .hero-stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-carousel-wrapper {
        padding: 0 35px;
    }
    
    .services-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .service-card-image {
        height: 150px;
    }
    
    .packages-grid-new {
        grid-template-columns: 1fr;
    }
    
    .package-card-new {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .premium-slide {
        height: 350px;
    }
    
    .premium-content {
        padding: 30px;
    }
    
    .premium-content h3 {
        font-size: 24px;
    }
    
    .premium-carousel .swiper-slide {
        width: 90%;
    }
    
    .menu-highlights {
        flex-direction: column;
    }
    
    .menu-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item,
    .gallery-item.large {
        grid-column: auto;
        height: 250px;
    }
    
    .cta-wrapper h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .cta-icon-box {
        display: none;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .packages-trust {
        gap: 20px;
    }
    
    .trust-item {
        flex: 0 0 45%;
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-new.featured {
        grid-column: auto;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-carousel-wrapper {
        padding: 0 30px;
    }
    
    .service-card-content {
        padding: 35px 15px 20px;
    }
    
    .service-card-content h3 {
        font-size: 15px;
    }
    
    .service-card-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: -24px;
    }
}