/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --color-primary: #D4A84B;
    --color-primary-dark: #B8923D;
    --color-primary-light: #E5C06E;
    
    /* Secondary Colors */
    --color-secondary: #1A1A1A;
    --color-secondary-light: #2D2D2D;
    
    /* Accent Colors */
    --color-accent: #25D366;
    --color-accent-dark: #1DA851;
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-100: #F8F9FA;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-400: #CED4DA;
    --color-gray-500: #ADB5BD;
    --color-gray-600: #6C757D;
    --color-gray-700: #495057;
    --color-gray-800: #343A40;
    --color-gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-overlay: 500;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
}

input {
    border: none;
    outline: none;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Utility Classes ===== */
.text-primary {
    color: var(--color-primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 7px;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-nav {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 0.875rem;
}

.btn-whatsapp-nav:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--color-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-300);
    font-size: 0.875rem;
}

.top-bar-item i {
    color: var(--color-primary);
    font-size: 1rem;
}

.top-bar-item:hover {
    color: var(--color-white);
}

.login-link i {
    font-size: 1.125rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-gray-300);
    font-size: 0.875rem;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.top-bar-divider {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.social-links a {
    color: var(--color-gray-400);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-primary);
}

/* ===== Header / Navigation ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: 15px 0;
    transition: var(--transition-normal);
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(212, 168, 75, 0.3);
}

.header.scrolled {
    position: fixed;
    top: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
}

.header.scrolled .nav-link {
    color: var(--color-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary);
}

.header.scrolled .logo-text {
    color: var(--color-secondary);
}

.header.scrolled .logo-icon {
    color: var(--color-primary);
}

.header.scrolled .nav-toggle {
    color: var(--color-secondary);
}

.header.scrolled .btn-whatsapp-nav {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-link i {
    font-size: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 700px;
    margin-top: 0;
}

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

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.hero-nav:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.hero-prev {
    left: 30px;
}

.hero-nav.hero-next {
    right: 30px;
}

.hero-nav::after {
    display: none;
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF9E6 0%, #FFF5D6 100%);
    overflow: hidden;
}

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

.hiw-title {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.hiw-subtitle {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Container */
.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Step */
.hiw-step {
    text-align: center;
    max-width: 220px;
    flex: 0 0 auto;
}

.hiw-step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.hiw-step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #D4A84B 0%, #B8923D 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
    transition: all 0.3s ease;
}

.hiw-step:hover .hiw-icon-box {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 168, 75, 0.4);
}

.hiw-icon-box i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.hiw-icon-box.green {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.hiw-step:hover .hiw-icon-box.green {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.hiw-icon-box.gold {
    background: linear-gradient(135deg, #FFB800 0%, #E6A600 100%);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.hiw-step:hover .hiw-icon-box.gold {
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
}

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

.hiw-step:hover .hiw-icon-box.purple {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Icon Badge */
.hiw-icon-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hiw-icon-badge i {
    font-size: 1.125rem;
    color: var(--color-primary);
}

.hiw-icon-badge.green i {
    color: #25D366;
}

.hiw-icon-badge.gold i {
    color: #FFB800;
}

.hiw-icon-badge.purple i {
    color: #8B5CF6;
}

/* Step Number */
.hiw-step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 32px;
    height: 32px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Title & Description */
.hiw-step-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.hiw-step-desc {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Arrows between steps */
.hiw-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 50px;
}

.hiw-arrow span {
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    transform: rotate(45deg);
    opacity: 0.4;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.hiw-arrow span:nth-child(1) { animation-delay: 0s; }
.hiw-arrow span:nth-child(2) { animation-delay: 0.15s; }
.hiw-arrow span:nth-child(3) { animation-delay: 0.3s; }
.hiw-arrow span:nth-child(4) { animation-delay: 0.45s; }

@keyframes arrowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* CTA Button */
.hiw-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-hiw-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--color-white);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 7px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-hiw-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.btn-hiw-cta i {
    font-size: 1.25rem;
}

/* Decorative Elements */
.hiw-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hiw-decoration-left {
    top: -100px;
    left: -100px;
}

.hiw-decoration-right {
    bottom: -100px;
    right: -100px;
}

/* Bottom Border Pattern */
.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-primary) 0px,
        var(--color-primary) 20px,
        transparent 20px,
        transparent 25px
    );
    opacity: 0.5;
}

/* ===== Services Section ===== */
.services-section {
    position: relative;
    padding: 80px 0;
    background: var(--color-gray-100);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header .section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header .section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-header .section-desc {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Services Carousel Wrapper */
.services-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-swiper {
    overflow: hidden;
    padding: 10px 0 20px;
}

.services-swiper .swiper-wrapper {
    padding-bottom: 10px;
}

/* Service Card */
.service-card {
    background-color: var(--color-white);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: visible;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-content {
    padding: 25px 20px;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.service-card-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 15px;
}

.service-card-features {
    margin-bottom: 20px;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.service-card-features li i {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.service-card .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
}

/* Services Navigation Arrows */
.services-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.services-nav i {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.services-nav:hover i {
    color: var(--color-white);
}

.services-prev {
    left: 0;
}

.services-next {
    right: 0;
}

/* Services Pagination */
.services-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.services-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-gray-300);
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Services Grid (fallback for non-carousel) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== Creative Menu Showcase Section ===== */
.menu-showcase-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF8ED 50%, #FFFBF5 100%);
    overflow: hidden;
}

/* Background Shapes */
.menu-showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.menu-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.menu-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.15) 0%, transparent 70%);
}

.menu-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
}

.menu-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
}

/* Section Header */
.menu-showcase-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.menu-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.15) 0%, rgba(212, 168, 75, 0.05) 100%);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 168, 75, 0.2);
}

.menu-header-badge i {
    color: var(--color-primary);
    font-size: 1.125rem;
}

.menu-header-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-showcase-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.menu-showcase-title span {
    color: var(--color-primary);
    position: relative;
}

.menu-showcase-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(212, 168, 75, 0.3);
    z-index: -1;
}

.menu-showcase-desc {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* Menu Tabs */
.menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.menu-tabs {
    display: inline-flex;
    background: var(--color-white);
    padding: 8px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    gap: 5px;
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.menu-tab.active {
    background: var(--color-secondary);
}

.menu-tab:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}

.tab-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon.veg-icon {
    border: 2px solid #22C55E;
    position: relative;
}

.tab-icon.veg-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
}

.tab-icon.nonveg-icon {
    border: 2px solid #C41E3A;
    position: relative;
}

.tab-icon.nonveg-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #C41E3A;
}

.tab-icon.luxury-icon {
    background: linear-gradient(135deg, #D4A84B 0%, #B8923D 100%);
    border-radius: 50%;
}

.tab-icon.luxury-icon i {
    font-size: 0.75rem;
    color: var(--color-white);
}

.tab-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.menu-tab.active .tab-text {
    color: var(--color-white);
}

.menu-tab.active .tab-icon.veg-icon {
    border-color: #86EFAC;
}

.menu-tab.active .tab-icon.veg-icon::after {
    background: #86EFAC;
}

.menu-tab.active .tab-icon.nonveg-icon {
    border-color: #FCA5A5;
}

.menu-tab.active .tab-icon.nonveg-icon::after {
    border-bottom-color: #FCA5A5;
}

/* Menu Content Area */
.menu-content-area {
    position: relative;
    z-index: 2;
}

.menu-panel {
    display: none;
    animation: fadeInMenu 0.5s ease;
}

.menu-panel.active {
    display: block;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Layout */
.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    background: var(--color-white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-layout.luxury {
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
    border: 1px solid rgba(212, 168, 75, 0.2);
}

/* Menu Gallery */
.menu-gallery {
    position: sticky;
    top: 120px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 4/3;
}

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

.gallery-main:hover img {
    transform: scale(1.05);
}

/* Gallery Zoom Icon */
.gallery-zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 5;
    cursor: pointer;
}

.gallery-zoom-icon i {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.gallery-main:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom-icon:hover {
    background: var(--color-primary);
}

.gallery-zoom-icon:hover i {
    color: var(--color-secondary);
}

a.gallery-main {
    display: block;
    text-decoration: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.luxury-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #D4A84B 0%, #B8923D 100%);
    color: var(--color-secondary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-badge i {
    font-size: 0.625rem;
}

.dish-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.dish-tag {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Thumbs */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumb {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    aspect-ratio: 1;
}

.thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
}

.thumb:hover {
    opacity: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.luxury-grid {
    gap: 25px;
}

/* Menu Category */
.menu-category {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.menu-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.luxury-category {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border: 1px solid rgba(212, 168, 75, 0.2);
}

.luxury-category:hover {
    border-color: rgba(212, 168, 75, 0.5);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
}

.luxury-category .category-header {
    border-bottom-color: rgba(212, 168, 75, 0.3);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.125rem;
    color: var(--color-white);
}

.category-icon.nonveg {
    background: linear-gradient(135deg, #C41E3A 0%, #9B1B2F 100%);
}

.category-icon.luxury {
    background: linear-gradient(135deg, #D4A84B 0%, #B8923D 100%);
}

.category-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}

.luxury-category .category-header h3 {
    color: var(--color-white);
}

/* Menu List */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-secondary);
    white-space: nowrap;
}

.luxury-category .item-name {
    color: rgba(255, 255, 255, 0.9);
}

.item-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 4px,
        transparent 4px,
        transparent 8px
    );
    min-width: 20px;
}

.luxury-category .item-dots {
    background: repeating-linear-gradient(
        90deg,
        rgba(212, 168, 75, 0.4) 0px,
        rgba(212, 168, 75, 0.4) 4px,
        transparent 4px,
        transparent 8px
    );
}

.item-tag {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-tag.hot {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.item-tag.bestseller {
    background: rgba(212, 168, 75, 0.15);
    color: #B8923D;
}

.item-tag.sweet {
    background: rgba(236, 72, 153, 0.1);
    color: #DB2777;
}

.item-tag.crispy {
    background: rgba(249, 115, 22, 0.1);
    color: #EA580C;
}

.item-tag.fresh {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.item-tag.luxury-tag {
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2) 0%, rgba(212, 168, 75, 0.1) 100%);
    color: var(--color-primary);
    border: 1px solid rgba(212, 168, 75, 0.3);
}

/* Menu CTA */
.menu-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-menu-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 16px 35px;
    border-radius: 7px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-menu-explore:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
}

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

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

.btn-menu-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--color-white);
    padding: 16px 35px;
    border-radius: 7px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-menu-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-menu-whatsapp i {
    font-size: 1.25rem;
}

/* Decorative Elements */
.menu-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.menu-decor-1 {
    width: 150px;
    height: 150px;
    top: 100px;
    left: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23D4A84B' stroke-width='0.5' stroke-dasharray='5,5'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.3;
    animation: rotateDecor 30s linear infinite;
}

.menu-decor-2 {
    width: 100px;
    height: 100px;
    bottom: 150px;
    right: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='10' y='10' width='80' height='80' fill='none' stroke='%23D4A84B' stroke-width='0.5' stroke-dasharray='5,5' transform='rotate(45 50 50)'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.3;
    animation: rotateDecor 25s linear infinite reverse;
}

@keyframes rotateDecor {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== About Section ===== */
.about-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

.play-btn-icon {
    position: relative;
    z-index: 3;
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(212, 168, 75, 0.4);
}

.play-btn-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-left: 4px;
}

.video-play-btn:hover .play-btn-icon {
    background: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
}

.play-btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(212, 168, 75, 0.4);
    border-radius: 0;
    animation: ripple 2s ease-out infinite;
}

.play-btn-ripple.ripple-2 {
    animation-delay: 0.5s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: bounce 2s ease-in-out infinite;
}

.experience-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.about-content {
    padding-left: var(--spacing-lg);
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.about-text {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.about-text:last-of-type {
    margin-bottom: var(--spacing-md);
}

.about-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 1.25rem;
    color: var(--color-white);
}

.about-feature-text h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.about-feature-text p {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

/* ===== Stats Counter Section ===== */
/* ===== Stats Section - Creative Out of Box Design ===== */
.stats-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    overflow: hidden;
}

/* Wave Background */
.stats-creative-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stats-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(212, 168, 75, 0.03) 50px,
        rgba(212, 168, 75, 0.03) 51px
    );
}

.stats-wave-1 {
    transform: skewY(-3deg);
    top: 20%;
}

.stats-wave-2 {
    transform: skewY(3deg);
    bottom: 20%;
}

.stats-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

/* Creative Wrapper */
.stats-creative-wrapper {
    position: relative;
    z-index: 2;
}

/* Large Background Numbers */
.stats-bg-numbers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    z-index: 0;
}

.bg-num {
    font-family: var(--font-secondary);
    font-size: 15rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 168, 75, 0.08);
    line-height: 1;
    user-select: none;
}

/* Stats Flex Layout */
.stats-flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Individual Stat Creative */
.stat-creative {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Circular Ring Progress */
.stat-circle-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}

.stat-circle-wrap.small {
    width: 140px;
    height: 140px;
}

.stat-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    filter: drop-shadow(0 0 10px rgba(212, 168, 75, 0.5));
    animation: ringGlow 2s ease-in-out infinite alternate;
}

.ring-progress.orange {
    stroke: #FF6B35;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

@keyframes ringGlow {
    from { filter: drop-shadow(0 0 5px rgba(212, 168, 75, 0.3)); }
    to { filter: drop-shadow(0 0 15px rgba(212, 168, 75, 0.6)); }
}

.stat-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Hexagon Shape */
.stat-hex-wrap {
    margin-bottom: 25px;
}

.stat-hex {
    width: 180px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #B8923D 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: hexFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(212, 168, 75, 0.3);
}

.stat-hex::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #0D0D0D;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.stat-hex .stat-number {
    position: relative;
    z-index: 1;
}

@keyframes hexFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-creative.featured {
    transform: translateY(-30px);
}

.stat-creative.featured .stat-number {
    font-size: 3rem;
}

/* Diamond Shape */
.stat-diamond-wrap {
    margin-bottom: 20px;
}

.stat-diamond {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2) 0%, rgba(212, 168, 75, 0.05) 100%);
    border: 2px solid var(--color-primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.stat-diamond:hover {
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.3) 0%, rgba(212, 168, 75, 0.1) 100%);
    box-shadow: 0 0 30px rgba(212, 168, 75, 0.3);
}

.stat-diamond .stat-number {
    transform: rotate(-45deg);
    font-size: 2rem;
}

/* Stat Number */
.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

/* Stat Info */
.stat-info {
    text-align: center;
}

.stat-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.stat-sublabel {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Stat Line Connector */
.stat-line {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--color-primary), transparent);
}

/* Badge */
.stat-badge {
    position: absolute;
    top: -15px;
    right: -20px;
    background: #C41E3A;
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Tagline */
.stats-tagline {
    text-align: center;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stats-tagline span {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.stats-tagline .dot {
    color: var(--color-primary);
    font-size: 0.5rem;
}

/* Floating Food Icons */
.stats-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(212, 168, 75, 0.15);
    animation: iconFloat 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.3;
    }
}

/* ===== Popular Packages Section ===== */
.packages-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #FFF8F0 0%, #FFF3E6 50%, #FFF8F0 100%);
}

/* Bengali Pattern Decorations */
.bengali-pattern-left,
.bengali-pattern-right {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.08;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C41E3A' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23C41E3A' stroke-width='1.5'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23C41E3A' stroke-width='1'/%3E%3Cpath d='M50 10 L50 90 M10 50 L90 50' stroke='%23C41E3A' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: contain;
}

.bengali-pattern-left {
    top: 50px;
    left: -50px;
}

.bengali-pattern-right {
    bottom: 50px;
    right: -50px;
}

.packages-section .container {
    position: relative;
    z-index: 3;
}

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

/* Header Decoration */
.packages-header-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.packages-header-decor .decor-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C41E3A);
}

.packages-header-decor .decor-line:last-child {
    background: linear-gradient(90deg, #C41E3A, transparent);
}

.packages-header-decor i {
    font-size: 1.5rem;
    color: #C41E3A;
}

.bengali-subtitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #C41E3A;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.packages-title {
    color: var(--color-secondary);
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.packages-description {
    color: var(--color-gray-600);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Packages Carousel */
.packages-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.packages-swiper {
    overflow: hidden;
    padding: 10px 0 20px;
}

.packages-swiper .swiper-slide {
    height: auto;
}

.packages-swiper .package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.packages-swiper .package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.packages-swiper .package-features {
    flex: 1;
}

/* Packages Navigation */
.packages-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border: 2px solid #C41E3A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.packages-nav:hover {
    background: #C41E3A;
}

.packages-nav i {
    font-size: 1.5rem;
    color: #C41E3A;
    transition: color 0.3s ease;
}

.packages-nav:hover i {
    color: var(--color-white);
}

.packages-prev {
    left: 0;
}

.packages-next {
    right: 0;
}

/* Packages Pagination */
.packages-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.packages-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(196, 30, 58, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.packages-pagination .swiper-pagination-bullet-active {
    background: #C41E3A;
    transform: scale(1.2);
}

/* Package Card - Bengali Style */
.package-card {
    background: var(--color-white);
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4A84B, #C41E3A, #D4A84B);
    z-index: 5;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
    border-color: #C41E3A;
}

/* Package Image */
.package-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

/* Package Content */
.package-content {
    padding: 20px 25px 25px;
    text-align: center;
}

.package-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.package-features {
    text-align: left;
    margin-bottom: 20px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: #C41E3A;
    font-size: 1rem;
}

/* Package Price */
.package-price {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E6 100%);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px dashed rgba(196, 30, 58, 0.2);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: #C41E3A;
}

.price-amount small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray-500);
}

/* Package Buttons */
.btn-package {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--color-white);
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-package i {
    font-size: 1.125rem;
}

/* Featured Card */
.package-card-featured {
    border: 2px solid #C41E3A;
    box-shadow: 0 10px 35px rgba(196, 30, 58, 0.15);
}

.package-card-featured::before {
    height: 5px;
}

.package-card-featured:hover {
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.2);
}

.package-card-featured .package-image {
    height: 200px;
}

.btn-package-featured {
    width: 100%;
    background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: var(--color-white);
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-package-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.35);
}

.btn-package-featured i {
    font-size: 1.125rem;
}

/* Badge */
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #D4A84B, #C49A3D);
    color: var(--color-secondary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 60px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=60') center/cover;
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=60') center/cover;
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: 280px 1.2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 360px;
}

/* Gallery Content Card */
.gallery-content-card {
    background: var(--color-white);
    padding: 50px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-row: 1 / 3;
}

.gallery-content-card .section-subtitle {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.gallery-content-card .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.gallery-content-card .section-title {
    color: var(--color-secondary);
    font-size: 1.625rem;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    line-height: 1.3;
}

.gallery-description {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.gallery-content-card .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 12px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-content-card .btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-content-card .btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.gallery-content-card .btn-primary:hover i {
    transform: translateX(5px);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.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;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--color-white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Item Positions - Disabled for regular grid layout */
.gallery-item-1,
.gallery-item-2,
.gallery-item-3,
.gallery-item-4,
.gallery-item-5,
.gallery-item-6,
.gallery-item-7 {
    grid-column: auto;
    grid-row: auto;
}

/* Fancybox Custom Styles */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.95) !important;
}

.fancybox__toolbar {
    background: rgba(0, 0, 0, 0.6) !important;
}

.fancybox__toolbar button {
    color: var(--color-white) !important;
}

.fancybox__toolbar button:hover {
    color: var(--color-primary) !important;
    background: rgba(212, 168, 75, 0.2) !important;
}

.fancybox__nav button {
    background: var(--color-primary) !important;
    color: var(--color-secondary) !important;
    border-radius: 0 !important;
}

.fancybox__nav button:hover {
    background: var(--color-white) !important;
}

.fancybox__thumbs {
    background: rgba(0, 0, 0, 0.8) !important;
}

.fancybox__thumb {
    border-radius: 0 !important;
    opacity: 0.6;
}

.fancybox__thumb.is-selected {
    opacity: 1;
    border: 2px solid var(--color-primary) !important;
}

.fancybox__caption {
    font-family: var(--font-primary);
    color: var(--color-white) !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent) !important;
    padding: 20px !important;
}

/* Fancybox Video Fullscreen */
.fancybox__container[data-fancybox="video"] .fancybox__content {
    width: 90vw !important;
    height: 80vh !important;
    max-width: 1400px;
}

.fancybox__container[data-fancybox="video"] .fancybox__backdrop {
    background: rgba(0, 0, 0, 0.95) !important;
}

.fancybox__container[data-fancybox="video"] iframe {
    border-radius: 0;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(75, 0, 130, 0.05) 0%, transparent 70%);
}

.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.why-choose-header .section-title {
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-subtitle {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.why-choose-subtitle strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.why-choose-tagline {
    color: #4B0082;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.why-choose-tagline::before,
.why-choose-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4B0082);
}

.why-choose-tagline::before {
    right: calc(100% + 15px);
}

.why-choose-tagline::after {
    left: calc(100% + 15px);
    background: linear-gradient(90deg, #4B0082, transparent);
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #4B0082);
    transition: width 0.4s ease;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.why-choose-item:hover::before {
    width: 100%;
}

.why-choose-number {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px #e8d5a3;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.why-choose-item:hover .why-choose-number {
    -webkit-text-stroke-color: var(--color-primary);
    transform: scale(1.1);
}

.why-choose-content {
    flex: 1;
}

.why-choose-title {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: #4B0082;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.why-choose-item:hover .why-choose-title {
    color: var(--color-primary);
}

.why-choose-desc {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: stretch;
}

.testimonials-title-card {
    background: var(--color-white);
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonials-title-card .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.testimonials-title-card .section-title {
    font-size: 1.875rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.testimonials-desc {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonials-nav {
    display: flex;
    gap: 15px;
}

.testimonial-prev,
.testimonial-next {
    width: 60px;
    height: 45px;
    background: var(--color-secondary);
    border: none;
    color: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* Testimonial Cards */
.testimonials-carousel {
    overflow: hidden;
    height: 100%;
}

.testimonials-carousel .swiper {
    height: 100%;
}

.testimonials-carousel .swiper-wrapper {
    align-items: stretch;
}

.testimonials-carousel .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: #000000;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: #ffffff;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 0;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.8125rem;
    color: #ffffff;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.cta-parallax {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-buttons {
    display: inline-flex;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
}

.cta-buttons .btn {
    width: auto !important;
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.875rem;
}

.cta-buttons .btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: auto;
}

.cta-buttons .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn-whatsapp i {
    font-size: 1.125rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light i {
    font-size: 1rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--color-white);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-header .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.faq-header .section-title {
    font-size: 2.25rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.faq-subtitle {
    color: var(--color-gray-600);
    font-size: 1rem;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 168, 75, 0.3);
}

.faq-item.active {
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 1.25rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--color-secondary);
}

.faq-item.active .faq-icon i {
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f5f5 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-info .section-title {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-social a i {
    font-size: 1.125rem;
    color: var(--color-white);
}

.contact-social a:hover {
    background: var(--color-primary);
}

.contact-social a:hover i {
    color: var(--color-secondary);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--color-white);
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-secondary);
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-submit i {
    font-size: 1.125rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-secondary);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-logo .logo-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-about {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a i {
    font-size: 1rem;
    color: var(--color-white);
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-social a:hover i {
    color: var(--color-secondary);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-primary);
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-links a:hover::before {
    width: 15px;
    margin-right: 10px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact li span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ===== Page Banner for Inner Pages ===== */
.page-banner {
    position: relative;
    padding: 120px 0 80px;
    margin-top: 80px;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner-content {
    text-align: center;
}

.page-banner-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.breadcrumb span i {
    font-size: 1rem;
}

.breadcrumb .current {
    color: var(--color-primary);
    font-weight: 500;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--color-white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    font-size: 1.5rem;
    color: #000000;
}

.back-to-top:hover {
    background: var(--color-secondary);
}

.back-to-top:hover i {
    color: var(--color-white);
}

/* ===== About Page Styles ===== */
.about-intro-section {
    padding: 80px 0;
    background: var(--color-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.about-intro-image .image-main {
    position: relative;
    grid-row: 1 / 3;
}

.about-intro-image .image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-intro-image .image-secondary img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

.about-intro-content .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about-intro-content .section-title {
    font-size: 2.25rem;
    margin-bottom: 25px;
}

.about-intro-content .lead-text {
    font-size: 1.125rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-intro-content p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    width: 55px;
    height: 55px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.highlight-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.mv-card {
    background: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-primary);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 75, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.mv-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* About Stats Section */
.about-stats-section {
    position: relative;
    padding: 80px 0;
}

.about-stats-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

.about-stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.about-stats-section .container {
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--color-white);
}

.section-header {
    margin-bottom: 50px;
}

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

.section-header .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-header .section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.section-header .section-desc {
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--color-secondary);
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.team-info span {
    font-size: 0.875rem;
    color: var(--color-primary);
}

/* ===== Services Page Styles ===== */
.services-intro-section {
    padding: 60px 0;
    background: var(--color-white);
}

.services-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro-content .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.services-intro-content .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.services-intro-content p {
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* Services Grid */
.services-grid-section {
    padding: 0 0 80px;
    background: var(--color-white);
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-main-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.service-main-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-main-image {
    position: relative;
    overflow: hidden;
}

.service-main-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-main-card:hover .service-main-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-main-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-main-card:hover .service-link {
    transform: scale(1);
}

.service-link i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.service-main-content {
    padding: 35px 30px;
}

.service-main-content .service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-main-content .service-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

.service-main-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.375rem;
    margin-bottom: 15px;
}

.service-main-content h3 a {
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.service-main-content h3 a:hover {
    color: var(--color-primary);
}

.service-main-content > p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--color-primary);
    font-size: 1rem;
}

.btn-link {
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 15px;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--color-white);
    position: relative;
    transition: all 0.3s ease;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    transform: translateY(-50%);
}

.process-item:last-child::after {
    display: none;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(212, 168, 75, 0.3);
    margin-bottom: 15px;
}

.process-item:hover .process-number {
    -webkit-text-stroke-color: var(--color-primary);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 75, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    background: var(--color-primary);
}

.process-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.process-item:hover .process-icon i {
    color: var(--color-secondary);
}

.process-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.process-item p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ===== Menu Page Styles ===== */
.menu-filter-section {
    padding: 40px 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Menu Grid */
.menu-grid-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.menu-item {
    background: var(--color-white);
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.menu-item.hidden {
    display: none;
}

.menu-item-image {
    position: relative;
    overflow: hidden;
}

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

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

.menu-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-tag.veg {
    background: #28a745;
    color: var(--color-white);
}

.menu-tag.non-veg {
    background: #dc3545;
    color: var(--color-white);
}

.menu-item-content {
    padding: 20px;
}

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

.menu-item-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.3;
}

.menu-price {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.menu-item-content p {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.menu-note {
    margin-top: 40px;
    padding: 20px 25px;
    background: rgba(212, 168, 75, 0.1);
    border-left: 4px solid var(--color-primary);
}

.menu-note p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin: 0;
}

.menu-note i {
    font-size: 1.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Download Menu Section */
.download-menu-section {
    padding: 60px 0;
    background: var(--color-secondary);
}

.download-menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.download-info .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.download-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.download-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* ===== Packages Page Styles ===== */
.packages-intro-section {
    padding: 60px 0;
    background: var(--color-white);
}

.packages-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.packages-intro-content .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.packages-intro-content .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.packages-intro-content p {
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* Packages Page Grid */
.packages-page-section {
    padding: 0 0 80px;
    background: var(--color-white);
}

.packages-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.package-page-card {
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.package-page-card.featured {
    background: var(--color-secondary);
    transform: scale(1.05);
    z-index: 2;
}

.package-page-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    display: none; /* Hidden - was causing diagonal line issue */
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.package-page-card.featured .package-badge {
    background: var(--color-white);
}

.package-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-page-card.featured .package-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.package-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.package-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.package-page-card.featured .package-name {
    color: var(--color-white);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.package-page-card.featured .price-amount {
    color: var(--color-white);
}

.price-unit {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.package-page-card.featured .price-unit {
    color: rgba(255, 255, 255, 0.7);
}

.package-tagline {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.package-page-card.featured .package-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.package-body {
    padding: 30px;
}

.package-features-list {
    list-style: none;
}

.package-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.package-page-card.featured .package-features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.package-features-list li:last-child {
    border-bottom: none;
}

.package-features-list li i {
    font-size: 1.125rem;
    color: var(--color-primary);
}

.package-features-list li.disabled {
    color: var(--color-gray-500);
}

.package-page-card.featured .package-features-list li.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.package-features-list li.disabled i {
    color: var(--color-gray-400);
}

.package-footer {
    padding: 20px 30px 30px;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-package-featured {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: var(--color-white);
    color: var(--color-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package-featured:hover {
    background: var(--color-primary);
}

/* Package Notes */
.package-notes {
    margin-top: 50px;
    padding: 30px;
    background: #f8f8f8;
    border-left: 4px solid var(--color-primary);
}

.package-notes h4 {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.package-notes ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    list-style: none;
}

.package-notes li {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    padding-left: 20px;
    position: relative;
}

.package-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Custom Package Section */
.custom-package-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.custom-package-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-package-text .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.custom-package-text h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.custom-package-text p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 25px;
}

.custom-features {
    list-style: none;
}

.custom-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-gray-700);
    margin-bottom: 12px;
}

.custom-features li i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.custom-package-form {
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.custom-package-form h4 {
    font-size: 1.375rem;
    color: var(--color-secondary);
    margin-bottom: 25px;
    text-align: center;
}

/* ===== Gallery Page Styles ===== */
.gallery-filter-section {
    padding: 40px 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Gallery Page Grid */
.gallery-page-section {
    padding: 60px 0;
    background: #f8f8f8;
}

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

.gallery-page-item {
    position: relative;
    overflow: hidden;
    display: block;
}

.gallery-page-item.hidden {
    display: none;
}

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

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

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-page-overlay i {
    font-size: 2rem;
    color: var(--color-white);
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-page-item:hover .gallery-page-overlay i {
    transform: scale(1);
}

.gallery-page-overlay span {
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

/* ===== Contact Page Styles ===== */
.contact-cards-section {
    padding: 60px 0;
    background: var(--color-white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 25px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: var(--color-primary);
    transform: translateY(-10px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--color-secondary);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    color: var(--color-primary);
}

.contact-card h4 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-card:hover h4 {
    color: var(--color-secondary);
}

.contact-card p,
.contact-card a {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.contact-card:hover p,
.contact-card:hover a {
    color: var(--color-secondary);
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-form-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--color-gray-600);
}

.contact-page-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

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

/* Map */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    min-height: 400px;
}

.map-container iframe {
    display: block;
}

.map-info {
    background: var(--color-secondary);
    padding: 30px;
}

.map-info h4 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.map-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 15px;
}

.map-info .btn-link {
    color: var(--color-primary);
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 60px 0;
    background: var(--color-secondary);
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.quick-contact-text h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.quick-contact-text p {
    color: rgba(255, 255, 255, 0.7);
}

.quick-contact-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* ===== Service Details Page ===== */
.service-detail-section {
    padding: 80px 0;
    background: var(--color-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.service-detail-image {
    margin-bottom: 30px;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-detail-content .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.service-detail-content .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.service-detail-desc {
    font-size: 1.0625rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-text p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin: 35px 0 20px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    background: rgba(212, 168, 75, 0.1);
}

.service-feature-item i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.service-feature-item span {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.service-packages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-package-tag {
    padding: 10px 25px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
}

.service-cta {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid var(--color-primary);
}

.service-cta p {
    color: var(--color-gray-600);
    margin-bottom: 20px;
}

.service-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Sidebar */
.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    padding: 30px;
    background: #f9f9f9;
}

.sidebar-card h4 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.enquiry-card {
    background: var(--color-secondary);
}

.enquiry-card h4 {
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.enquiry-card .form-group input,
.enquiry-card .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.enquiry-card .form-group input::placeholder,
.enquiry-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-services-list {
    list-style: none;
}

.sidebar-services-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-services-list li:last-child {
    border-bottom: none;
}

.sidebar-services-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.sidebar-services-list li a:hover,
.sidebar-services-list li.active a {
    color: var(--color-primary);
    padding-left: 10px;
}

.sidebar-services-list li a i {
    font-size: 1.125rem;
}

.contact-card {
    background: var(--color-primary);
    text-align: center;
}

.contact-card h4 {
    color: var(--color-secondary);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.sidebar-contact-icon {
    width: 70px;
    height: 70px;
    background: var(--color-secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-contact-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.contact-card p {
    color: var(--color-secondary);
    opacity: 0.8;
    margin-bottom: 10px;
}

.sidebar-phone {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* ===== Responsive Styles ===== */

/* Extra Large Devices (1400px and below) */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Large Devices (1200px and below) */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
    
    .nav-list {
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-nav {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .hero-nav.hero-prev {
        left: 20px;
    }
    
    .hero-nav.hero-next {
        right: 20px;
    }
    
    .about-grid {
        gap: var(--spacing-xl);
    }
    
    .about-image img {
        height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-badge {
        right: -20px;
    }
    
    .packages-grid {
        gap: 24px;
    }
    
    .package-card-featured {
        transform: scale(1.03);
    }
    
    .package-card-featured:hover {
        transform: scale(1.03) translateY(-10px);
    }
}

/* Medium Devices (992px and below) */
@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-secondary);
        padding: 80px var(--spacing-xl) var(--spacing-xl);
        transition: var(--transition-normal);
        overflow-y: auto;
        z-index: var(--z-fixed);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: var(--spacing-md) 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-whatsapp-nav {
        display: none;
    }
    
    .hero {
        height: 75vh;
        min-height: 480px;
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    /* How It Works - 992px */
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .hiw-title {
        font-size: 2.25rem;
    }
    
    .hiw-steps {
        gap: 15px;
    }
    
    .hiw-step {
        max-width: 180px;
    }
    
    .hiw-icon-box {
        width: 80px;
        height: 80px;
    }
    
    .hiw-icon-box i {
        font-size: 2rem;
    }
    
    .hiw-step-title {
        font-size: 1.125rem;
    }
    
    .hiw-arrow {
        gap: 4px;
        padding-top: 40px;
    }
    
    .hiw-arrow span {
        width: 10px;
        height: 10px;
    }
    
    /* Stats Section - 992px */
    .stats-section {
        padding: 80px 0 70px;
    }
    
    .stats-flex {
        gap: 40px;
    }
    
    .stat-circle-wrap {
        width: 130px;
        height: 130px;
    }
    
    .stat-circle-wrap.small {
        width: 110px;
        height: 110px;
    }
    
    .stat-hex {
        width: 150px;
        height: 170px;
    }
    
    .stat-diamond {
        width: 110px;
        height: 110px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-creative.featured .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.125rem;
    }
    
    .bg-num {
        font-size: 10rem;
    }
    
    .stats-tagline {
        margin-top: 60px;
    }
    
    /* Menu Showcase - 992px */
    .menu-showcase-section {
        padding: 80px 0;
    }
    
    .menu-showcase-title {
        font-size: 2.5rem;
    }
    
    .menu-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .menu-gallery {
        position: relative;
        top: 0;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .menu-tab {
        padding: 12px 25px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 40px;
    }
    
    .services-nav {
        width: 40px;
        height: 40px;
    }
    
    .services-nav i {
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .hero-nav.hero-prev {
        left: 15px;
    }
    
    .hero-nav.hero-next {
        right: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .video-play-btn {
        width: 80px;
        height: 80px;
    }
    
    .play-btn-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-btn-icon i {
        font-size: 1.5rem;
    }
    
    .play-btn-ripple {
        width: 80px;
        height: 80px;
    }
    
    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-content .btn {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .packages-parallax {
        background-attachment: scroll;
    }
    
    .packages-section {
        padding: 50px 0;
    }
    
    .packages-header {
        margin-bottom: 30px;
    }
    
    .packages-header .section-subtitle::before,
    .packages-header .section-subtitle::after {
        display: none;
    }
    
    .packages-title {
        font-size: 2rem;
    }
    
    .packages-carousel-wrapper {
        padding: 0 40px;
    }
    
    .packages-nav {
        width: 40px;
        height: 40px;
    }
    
    .packages-nav i {
        font-size: 1.25rem;
    }
    
    /* Gallery Responsive */
    .gallery-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto 120px 120px 120px;
        height: auto;
        gap: 10px;
    }
    
    .gallery-content-card {
        grid-column: 1 / 4;
        grid-row: 1;
        text-align: center;
        max-width: 450px;
        margin: 0 auto;
        padding: 35px 20px;
    }
    
    .gallery-content-card .section-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5,
    .gallery-item-6,
    .gallery-item-7 {
        grid-column: auto;
        grid-row: auto;
    }
    
    /* Why Choose Responsive 992px */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-header {
        margin-bottom: 50px;
    }
    
    .why-choose-header .section-title {
        font-size: 2rem;
    }
    
    .why-choose-tagline::before,
    .why-choose-tagline::after {
        display: none;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }
    
    /* Testimonials Responsive 992px */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .testimonials-title-card {
        padding: 35px 25px;
    }
    
    .testimonials-title-card .section-title {
        font-size: 1.625rem;
    }
    
    /* CTA Responsive 992px */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* FAQ Responsive 992px */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header .section-title {
        font-size: 2rem;
    }
    
    /* Contact Responsive 992px */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .contact-info .section-title {
        font-size: 1.75rem;
    }
    
    /* Footer Responsive 992px */
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* Small Devices (768px and below) */
@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .header {
        top: 0;
    }
    
    .hero {
        height: 70vh;
        min-height: 450px;
        max-height: 550px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* How It Works - 768px */
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .hiw-header {
        margin-bottom: 40px;
    }
    
    .hiw-title {
        font-size: 1.875rem;
    }
    
    .hiw-subtitle {
        font-size: 0.9375rem;
    }
    
    .hiw-steps {
        flex-wrap: wrap;
        gap: 30px 20px;
    }
    
    .hiw-step {
        flex: 0 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
    
    .hiw-arrow {
        display: none;
    }
    
    .hiw-icon-box {
        width: 75px;
        height: 75px;
        border-radius: 16px;
    }
    
    .hiw-icon-box i {
        font-size: 1.875rem;
    }
    
    .hiw-icon-badge {
        width: 30px;
        height: 30px;
    }
    
    .hiw-icon-badge i {
        font-size: 0.9375rem;
    }
    
    .hiw-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.6875rem;
    }
    
    .hiw-step-title {
        font-size: 1.0625rem;
    }
    
    .hiw-cta {
        margin-top: 40px;
    }
    
    .btn-hiw-cta {
        padding: 14px 32px;
        font-size: 0.9375rem;
    }
    
    /* Stats Section - 768px */
    .stats-section {
        padding: 70px 0 60px;
    }
    
    .stats-flex {
        flex-wrap: wrap;
        gap: 40px 30px;
    }
    
    .stat-creative {
        flex: 0 0 calc(50% - 15px);
    }
    
    .stat-creative.featured {
        transform: translateY(0);
        order: -1;
        flex: 0 0 100%;
    }
    
    .stat-circle-wrap {
        width: 120px;
        height: 120px;
    }
    
    .stat-circle-wrap.small {
        width: 100px;
        height: 100px;
    }
    
    .stat-hex {
        width: 140px;
        height: 160px;
    }
    
    .stat-diamond {
        width: 100px;
        height: 100px;
    }
    
    .stat-diamond .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
    
    .stat-creative.featured .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-sublabel {
        font-size: 0.75rem;
    }
    
    .stat-line {
        display: none;
    }
    
    .bg-num {
        font-size: 8rem;
    }
    
    .stats-tagline {
        margin-top: 50px;
        gap: 15px;
    }
    
    .stats-tagline span {
        font-size: 1rem;
    }
    
    .stats-floating-icons {
        display: none;
    }
    
    /* Menu Showcase - 768px */
    .menu-showcase-section {
        padding: 60px 0;
    }
    
    .menu-showcase-header {
        margin-bottom: 40px;
    }
    
    .menu-showcase-title {
        font-size: 2rem;
    }
    
    .menu-showcase-desc {
        font-size: 0.9375rem;
    }
    
    .menu-tabs-wrapper {
        margin-bottom: 40px;
    }
    
    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        gap: 5px;
    }
    
    .menu-tab {
        padding: 10px 20px;
        border-radius: 30px;
    }
    
    .tab-text {
        font-size: 0.8125rem;
    }
    
    .menu-layout {
        padding: 25px;
        border-radius: 20px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-category {
        padding: 20px;
    }
    
    .category-header h3 {
        font-size: 1rem;
    }
    
    .item-name {
        font-size: 0.875rem;
    }
    
    .menu-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }
    
    .btn-menu-explore,
    .btn-menu-whatsapp {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .menu-decor {
        display: none;
    }
    
    .services-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header .section-title {
        font-size: 1.75rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 35px;
    }
    
    .services-nav {
        width: 36px;
        height: 36px;
    }
    
    .services-nav i {
        font-size: 1.125rem;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .hero-nav.hero-prev {
        left: 10px;
    }
    
    .hero-nav.hero-next {
        right: 10px;
    }
    
    .about-section {
        padding: var(--spacing-xl) 0;
    }
    
    .about-image img {
        height: 320px;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .play-btn-icon {
        width: 50px;
        height: 50px;
    }
    
    .play-btn-icon i {
        font-size: 1.25rem;
        margin-left: 3px;
    }
    
    .play-btn-ripple {
        width: 70px;
        height: 70px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .experience-badge {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .experience-number {
        font-size: 2rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .about-feature {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.9375rem;
    }
    
    .packages-section {
        padding: 40px 0;
    }
    
    .packages-header {
        margin-bottom: 25px;
    }
    
    .packages-title {
        font-size: 1.75rem;
    }
    
    .packages-description {
        font-size: 0.9375rem;
    }
    
    .packages-carousel-wrapper {
        padding: 0 35px;
    }
    
    .packages-nav {
        width: 35px;
        height: 35px;
    }
    
    .packages-nav i {
        font-size: 1.125rem;
    }
    
    /* Gallery Responsive 768px */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 100px 100px 100px 100px;
        height: auto;
    }
    
    .gallery-content-card {
        grid-column: 1 / 3;
        grid-row: 1;
        padding: 30px 18px;
    }
    
    .gallery-content-card .section-title {
        font-size: 1.5rem;
    }
    
    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5,
    .gallery-item-6,
    .gallery-item-7 {
        grid-column: auto;
        grid-row: auto;
    }
    
    /* Why Choose Responsive 768px */
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-header .section-title {
        font-size: 1.625rem;
    }
    
    .why-choose-subtitle {
        font-size: 0.9375rem;
    }
    
    .why-choose-tagline {
        font-size: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-item {
        padding: 20px;
        gap: 15px;
    }
    
    .why-choose-number {
        font-size: 3rem;
    }
    
    .why-choose-title {
        font-size: 1rem;
    }
    
    /* Testimonials Responsive 768px */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-title-card {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-nav {
        justify-content: center;
    }
    
    .testimonials-swiper {
        max-width: 100%;
    }
    
    /* CTA Responsive 768px */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-desc {
        font-size: 0.9375rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp,
    .btn-outline-light {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* FAQ Responsive 768px */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header .section-title {
        font-size: 1.625rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.9375rem;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
    }
    
    .faq-icon i {
        font-size: 1rem;
    }
    
    /* Contact Responsive 768px */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .contact-form-card {
        padding: 35px 25px;
    }
    
    /* Footer Responsive 768px */
    .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-col:first-child .footer-logo {
        align-items: center;
    }
    
    .footer-col:first-child .footer-about {
        max-width: 400px;
        margin: 0 auto 25px;
    }
    
    .footer-col:first-child .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .package-image {
        height: 180px;
    }
    
    .package-content {
        padding: 18px 20px 20px;
    }
    
    .package-title {
        font-size: 1.25rem;
    }
}

/* Extra Small Devices (576px and below) */
@media screen and (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-right {
        gap: var(--spacing-sm);
    }
    
    .top-bar-divider {
        display: none;
    }
    
    .header {
        top: 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.75rem;
    }
    
    .hero {
        height: 65vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    /* How It Works - 576px */
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .hiw-header {
        margin-bottom: 30px;
    }
    
    .hiw-title {
        font-size: 1.625rem;
    }
    
    .hiw-subtitle {
        font-size: 0.875rem;
    }
    
    .hiw-steps {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .hiw-step {
        flex: 0 0 auto;
        max-width: 280px;
        width: 100%;
    }
    
    .hiw-icon-box {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }
    
    .hiw-icon-box i {
        font-size: 1.75rem;
    }
    
    .hiw-icon-badge {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }
    
    .hiw-icon-badge i {
        font-size: 0.875rem;
    }
    
    .hiw-step-number {
        width: 26px;
        height: 26px;
        font-size: 0.625rem;
    }
    
    .hiw-step-title {
        font-size: 1rem;
    }
    
    .hiw-step-desc {
        font-size: 0.8125rem;
    }
    
    .hiw-cta {
        margin-top: 30px;
    }
    
    .btn-hiw-cta {
        padding: 12px 28px;
        font-size: 0.875rem;
        border-radius: 30px;
    }
    
    .btn-hiw-cta i {
        font-size: 1.125rem;
    }
    
    /* Stats Section - 576px */
    .stats-section {
        padding: 60px 0 50px;
    }
    
    .stats-flex {
        gap: 35px 20px;
    }
    
    .stat-creative {
        flex: 0 0 calc(50% - 10px);
    }
    
    .stat-circle-wrap {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .stat-circle-wrap.small {
        width: 80px;
        height: 80px;
    }
    
    .stat-hex {
        width: 110px;
        height: 125px;
        margin-bottom: 15px;
    }
    
    .stat-diamond {
        width: 80px;
        height: 80px;
    }
    
    .stat-diamond .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-creative.featured .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .stat-sublabel {
        font-size: 0.625rem;
        letter-spacing: 1px;
    }
    
    .stat-badge {
        font-size: 0.5rem;
        padding: 4px 8px;
        top: -10px;
        right: -10px;
    }
    
    .bg-num {
        display: none;
    }
    
    .stats-tagline {
        margin-top: 40px;
        flex-direction: column;
        gap: 8px;
    }
    
    .stats-tagline span {
        font-size: 0.875rem;
    }
    
    .stats-tagline .dot {
        display: none;
    }
    
    /* Menu Showcase - 576px */
    .menu-showcase-section {
        padding: 50px 0;
    }
    
    .menu-header-badge {
        padding: 8px 18px;
    }
    
    .menu-header-badge span {
        font-size: 0.6875rem;
        letter-spacing: 1px;
    }
    
    .menu-showcase-title {
        font-size: 1.625rem;
    }
    
    .menu-showcase-title span::after {
        height: 6px;
        bottom: 3px;
    }
    
    .menu-showcase-desc {
        font-size: 0.875rem;
    }
    
    .menu-tabs-wrapper {
        margin-bottom: 30px;
    }
    
    .menu-tabs {
        padding: 6px;
        gap: 3px;
    }
    
    .menu-tab {
        padding: 8px 15px;
        gap: 6px;
    }
    
    .tab-icon {
        width: 16px;
        height: 16px;
    }
    
    .tab-icon.veg-icon::after {
        width: 6px;
        height: 6px;
    }
    
    .tab-text {
        font-size: 0.75rem;
    }
    
    .menu-layout {
        padding: 20px;
        border-radius: 15px;
        gap: 30px;
    }
    
    .gallery-main {
        border-radius: 15px;
    }
    
    .dish-name {
        font-size: 1.25rem;
    }
    
    .dish-tag {
        font-size: 0.75rem;
    }
    
    .gallery-thumbs {
        gap: 8px;
    }
    
    .thumb {
        border-radius: 8px;
    }
    
    .menu-category {
        padding: 15px;
        border-radius: 15px;
    }
    
    .category-icon {
        width: 35px;
        height: 35px;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .category-header h3 {
        font-size: 0.9375rem;
    }
    
    .item-name {
        font-size: 0.8125rem;
    }
    
    .item-tag {
        font-size: 0.5625rem;
        padding: 3px 8px;
    }
    
    .menu-cta {
        margin-top: 30px;
        gap: 12px;
    }
    
    .btn-menu-explore,
    .btn-menu-whatsapp {
        padding: 12px 25px;
        font-size: 0.875rem;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header .section-title {
        font-size: 1.5rem;
    }
    
    .section-header .section-desc {
        font-size: 0.875rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 30px;
    }
    
    .services-nav {
        width: 32px;
        height: 32px;
    }
    
    .services-nav i {
        font-size: 1rem;
    }
    
    .service-card-image {
        height: 160px;
    }
    
    .service-card-content {
        padding: 20px 15px;
    }
    
    .service-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-card-icon i {
        font-size: 1.25rem;
    }
    
    .service-card-title {
        font-size: 1.125rem;
    }
    
    .service-card-features li {
        font-size: 0.8125rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-pagination {
        margin-top: 20px;
    }
    
    .services-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-nav {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .hero-nav.hero-prev {
        left: 8px;
    }
    
    .hero-nav.hero-next {
        right: 8px;
    }
    
    .about-section {
        padding: var(--spacing-lg) 0;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .section-subtitle {
        font-size: 0.8125rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .about-text {
        font-size: 0.875rem;
    }
    
    .experience-badge {
        padding: var(--spacing-xs) var(--spacing-sm);
        right: 10px;
        bottom: 10px;
    }
    
    .experience-number {
        font-size: 1.75rem;
    }
    
    .experience-text {
        font-size: 0.6875rem;
    }
    
    .about-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-feature-icon i {
        font-size: 1rem;
    }
    
    .about-feature-text h4 {
        font-size: 0.9375rem;
    }
    
    .stats-section {
        padding: var(--spacing-lg) 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-item:not(:last-child)::after {
        height: 50%;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .packages-section {
        padding: 30px 0;
    }
    
    .packages-title {
        font-size: 1.5rem;
    }
    
    .packages-description {
        font-size: 0.875rem;
    }
    
    .packages-carousel-wrapper {
        padding: 0;
    }
    
    .packages-nav {
        display: none;
    }
    
    .package-image {
        height: 160px;
    }
    
    .package-content {
        padding: 15px;
    }
    
    .package-title {
        font-size: 1.125rem;
    }
    
    .package-features li {
        font-size: 0.8125rem;
        padding: 6px 0;
    }
    
    .btn-package,
    .btn-package-featured {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .package-badge {
        font-size: 0.5625rem;
        padding: 6px 12px;
        top: 12px;
        left: 12px;
    }
    
    .packages-pagination {
        margin-top: 20px;
    }
    
    .packages-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    /* Gallery Responsive 576px */
    .gallery-section {
        padding: 35px 0;
    }
    
    .gallery-section::before,
    .gallery-section::after {
        display: none;
    }
    
    .gallery-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 85px 85px 85px 85px;
        gap: 8px;
    }
    
    .gallery-content-card {
        grid-column: 1 / 3;
        grid-row: 1;
        padding: 25px 15px;
    }
    
    .gallery-content-card .section-title {
        font-size: 1.25rem;
    }
    
    .gallery-description {
        font-size: 0.8125rem;
    }
    
    .gallery-content-card .btn-primary {
        padding: 10px 18px;
        font-size: 0.6875rem;
    }
    
    .gallery-overlay i {
        font-size: 1.25rem;
    }
    
    /* Why Choose Responsive 576px */
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-section::before,
    .why-choose-section::after {
        display: none;
    }
    
    .why-choose-header {
        margin-bottom: 30px;
    }
    
    .why-choose-header .section-title {
        font-size: 1.375rem;
    }
    
    .why-choose-subtitle {
        font-size: 0.875rem;
    }
    
    .why-choose-tagline {
        font-size: 0.9375rem;
    }
    
    .why-choose-item {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .why-choose-number {
        font-size: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 0.9375rem;
        margin-bottom: 8px;
    }
    
    .why-choose-desc {
        font-size: 0.8125rem;
    }
    
    /* Testimonials Responsive 576px */
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-title-card {
        padding: 25px 20px;
    }
    
    .testimonials-title-card .section-title {
        font-size: 1.375rem;
    }
    
    .testimonials-desc {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 50px;
        height: 40px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 0.9375rem;
    }
    
    /* CTA Responsive 576px */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-desc {
        font-size: 0.875rem;
        margin-bottom: 25px;
    }
    
    .btn-whatsapp,
    .btn-outline-light {
        padding: 14px 25px;
        font-size: 0.875rem;
    }
    
    /* FAQ Responsive 576px */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-header .section-title {
        font-size: 1.375rem;
    }
    
    .faq-subtitle {
        font-size: 0.875rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.875rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.8125rem;
    }
    
    /* Contact Responsive 576px */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info .section-title {
        font-size: 1.375rem;
    }
    
    .contact-desc {
        font-size: 0.875rem;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-text h4 {
        font-size: 0.9375rem;
    }
    
    .contact-text p {
        font-size: 0.8125rem;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.875rem;
    }
    
    .btn-submit {
        padding: 14px 25px;
        font-size: 0.9375rem;
    }
    
    /* Footer Responsive 576px */
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-col:first-child {
        grid-column: auto;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8125rem;
    }
}

/* Mobile Close Button for Nav */
.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    background-color: var(--color-primary);
    border-radius: 0;
}

@media screen and (max-width: 992px) {
    .nav-close {
        display: flex;
    }
}

/* Body Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-fixed) - 1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

/* Swiper Custom Styles */
.hero-swiper .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.hero-swiper .swiper-slide-active {
    opacity: 1;
}

.hero-swiper .swiper-slide-active .hero-title,
.hero-swiper .swiper-slide-active .hero-description,
.hero-swiper .swiper-slide-active .hero-buttons {
    animation-play-state: running;
}

.hero-swiper .swiper-slide:not(.swiper-slide-active) .hero-title,
.hero-swiper .swiper-slide:not(.swiper-slide-active) .hero-description,
.hero-swiper .swiper-slide:not(.swiper-slide-active) .hero-buttons {
    opacity: 0;
    animation: none;
}

/* Service Card Responsive Adjustments */
@media screen and (max-width: 480px) {
    .service-card-content {
        padding: var(--spacing-md);
    }
    
    .btn-whatsapp {
        padding: 12px 16px;
        font-size: 0.8125rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .header,
    .search-modal {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        page-break-after: always;
    }
    
    .hero-slide {
        background: none !important;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: var(--color-black);
    }
    
    .hero-title {
        color: var(--color-black);
    }
    
    .service-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States */
.btn:focus-visible,
.nav-link:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #FFD700;
        --color-accent: #00FF00;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* ===== Responsive Styles for Inner Pages ===== */

/* 992px */
@media (max-width: 992px) {
    /* Page Banner */
    .page-banner {
        padding: 100px 0 60px;
    }
    
    .page-banner-title {
        font-size: 2.5rem;
    }
    
    /* About Page */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Page */
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    
    .service-main-card {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-item::after {
        display: none;
    }
    
    /* Menu Page */
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .download-menu-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Packages Page */
    .packages-page-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .package-page-card.featured {
        transform: none;
    }
    
    .package-page-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .custom-package-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .package-notes ul {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Page */
    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Contact Page */
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Service Details */
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .enquiry-card {
        grid-column: 1 / -1;
    }
}

/* 768px */
@media (max-width: 768px) {
    /* Page Banner */
    .page-banner {
        padding: 80px 0 50px;
        margin-top: 70px;
    }
    
    .page-banner-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
    
    /* About Page */
    .about-intro-image .image-main img {
        height: 350px;
    }
    
    .about-intro-image .image-secondary img {
        height: 165px;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card:last-child {
        max-width: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Services Page */
    .services-intro-content .section-title {
        font-size: 1.75rem;
    }
    
    .service-main-card {
        grid-template-columns: 1fr;
    }
    
    .service-main-image img {
        height: 250px;
        min-height: auto;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Menu Page */
    .menu-filter-wrapper {
        gap: 10px;
    }
    
    .menu-filter-btn {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery Page */
    .gallery-filter-wrapper {
        gap: 10px;
    }
    
    .gallery-filter-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Page */
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    /* Service Details */
    .service-detail-image img {
        height: 300px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }
    
    /* Floating Buttons */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* 576px */
@media (max-width: 576px) {
    /* Page Banner */
    .page-banner {
        padding: 70px 0 40px;
    }
    
    .page-banner-title {
        font-size: 1.5rem;
    }
    
    /* About Page */
    .about-intro-section {
        padding: 50px 0;
    }
    
    .about-intro-image {
        grid-template-columns: 1fr;
    }
    
    .about-intro-image .image-main {
        grid-row: auto;
    }
    
    .about-intro-image .image-secondary {
        display: none;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    /* Services Page */
    .services-intro-section {
        padding: 40px 0;
    }
    
    .service-main-content {
        padding: 25px 20px;
    }
    
    /* Menu Page */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item-image img {
        height: 200px;
    }
    
    /* Packages Page */
    .package-header {
        padding: 30px 20px 20px;
    }
    
    .package-body {
        padding: 20px;
    }
    
    .package-footer {
        padding: 15px 20px 20px;
    }
    
    .custom-package-form {
        padding: 25px 20px;
    }
    
    /* Gallery Page */
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-page-item img {
        height: 220px;
    }
    
    /* Contact Page */
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-main-section {
        padding: 50px 0;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .quick-contact-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Service Details */
    .service-detail-section {
        padding: 50px 0;
    }
    
    .service-detail-image img {
        height: 250px;
    }
    
    .service-detail-content .section-title {
        font-size: 1.625rem;
    }
    
    .service-cta {
        padding: 20px;
    }
    
    .service-cta-buttons {
        flex-direction: column;
    }
    
    .service-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar-card {
        padding: 25px 20px;
    }
}

/* ===== New Wireframe Styles ===== */

/* Page Header Section (No Banner) */
.page-header-section {
    padding: 120px 0 50px;
    background: #f5f5f5;
    margin-top: 80px;
}

.page-header-content {
    text-align: center;
}

.page-main-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--color-gray-600);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid 2x3 */
.services-grid-section {
    padding: 60px 0;
    background: var(--color-white);
}

.services-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-box-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-box-icon i {
    font-size: 2rem;
    color: var(--color-gray-600);
}

.service-box-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.service-box-content p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-service i {
    font-size: 1.125rem;
}

/* Custom Planning Section */
.custom-planning-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

.custom-planning-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.custom-planning-icon {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-planning-icon i {
    font-size: 2.5rem;
    color: var(--color-gray-600);
}

.custom-planning-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.custom-planning-content p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

/* Why Choose Us Simple */
.why-choose-simple {
    padding: 60px 0;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title-center {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 20px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--color-gray-600);
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Menu Cards Section */
.menu-cards-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.menu-card.hidden {
    display: none;
}

.menu-card-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.menu-card-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.menu-card-icon i {
    font-size: 1.5rem;
    color: var(--color-gray-600);
}

.menu-card-body {
    padding: 25px;
}

.menu-category {
    margin-bottom: 20px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.menu-category ul {
    list-style: none;
}

.menu-category ul li {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.menu-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.menu-card-footer {
    padding: 20px 25px 25px;
}

.menu-card-footer .btn-service {
    width: 100%;
    justify-content: center;
}

/* Custom Menu Note */
.custom-menu-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.custom-menu-note p {
    color: var(--color-gray-600);
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-custom-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-menu:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.btn-custom-menu i {
    font-size: 1.25rem;
}

/* Package Cards Section */
.packages-cards-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

.packages-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.package-card.hidden {
    display: none;
}

.package-card-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.package-card-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.package-card-icon i {
    font-size: 1.5rem;
    color: var(--color-gray-600);
}

.package-card-body {
    padding: 25px;
}

.package-category {
    margin-bottom: 20px;
}

.package-category:last-child {
    margin-bottom: 0;
}

.package-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.package-category ul {
    list-style: none;
}

.package-category ul li {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.package-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.package-card-footer {
    padding: 20px 25px 25px;
}

.package-card-footer .btn-service {
    width: 100%;
    justify-content: center;
}

/* Customize Package Section */
.customize-package-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

.customize-package-box {
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.customize-package-box h2 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.customize-package-box > p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    margin-bottom: 30px;
}

.customize-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.customize-option {
    padding: 25px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.customize-option-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.customize-option-icon i {
    font-size: 1.25rem;
    color: var(--color-gray-600);
}

.customize-option h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.customize-option p {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    line-height: 1.4;
}

/* ===== Responsive for New Wireframe Styles ===== */
@media (max-width: 992px) {
    .page-header-section {
        padding: 100px 0 40px;
    }
    
    .page-main-title {
        font-size: 2rem;
    }
    
    .services-grid-2x3 {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-cards-grid,
    .packages-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customize-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 90px 0 30px;
        margin-top: 70px;
    }
    
    .page-main-title {
        font-size: 1.75rem;
    }
    
    .service-box {
        flex-direction: column;
        text-align: center;
    }
    
    .service-box-icon {
        margin: 0 auto;
    }
    
    .custom-planning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .menu-cards-grid,
    .packages-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .customize-options-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .menu-filter-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .page-header-section {
        padding: 80px 0 25px;
    }
    
    .page-main-title {
        font-size: 1.5rem;
    }
    
    .service-box {
        padding: 25px 20px;
    }
    
    .service-box-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-box-icon i {
        font-size: 1.5rem;
    }
    
    .why-choose-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .customize-options-grid {
        grid-template-columns: 1fr;
    }
    
    .customize-package-box {
        padding: 25px 20px;
    }
    
    .section-title-center {
        font-size: 1.5rem;
    }
}

/* ===== New Footer Styles (Wireframe) ===== */
.footer-new {
    background: #f5f5f5;
}

.footer-top-bar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-700);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--color-primary);
}

.footer-phone i {
    font-size: 1.125rem;
}

.footer-divider {
    color: var(--color-gray-400);
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-600);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Footer Main */
.footer-main {
    padding: 40px 0;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-col-new h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.footer-col-new ul {
    list-style: none;
}

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

.footer-col-new ul li a {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-col-new ul li a:hover {
    color: var(--color-primary);
}

.footer-cta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.btn-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-footer-whatsapp:hover {
    background: #25D366;
}

.btn-footer-whatsapp i {
    font-size: 1.25rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.float-btn i {
    font-size: 1.5rem;
    color: var(--color-white);
}

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

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.call-btn {
    background: var(--color-secondary);
}

.call-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.call-btn:hover i {
    color: var(--color-secondary);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-cta {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-top-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-cta {
        justify-content: center;
    }
    
    .btn-footer-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ===== New Header Styles (Wireframe) ===== */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-new {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-text-new {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.nav-menu-new {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list-new {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-list-new li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: color 0.3s ease;
    position: relative;
}

.nav-list-new li a:hover,
.nav-list-new li a.active {
    color: var(--color-secondary);
}

.nav-list-new li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-secondary);
}

.btn-book-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-book-whatsapp:hover {
    background: #25D366;
}

.btn-book-whatsapp i {
    font-size: 1.125rem;
}

.nav-toggle-new {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-secondary);
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-menu-new {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu-new.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list-new li a {
        display: block;
        padding: 10px 0;
    }
    
    .nav-toggle-new {
        display: block;
    }
    
    .btn-book-whatsapp {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo-text-new {
        font-size: 1rem;
    }
}

/* Update page header section margin for new header */
.page-header-section {
    padding: 100px 0 50px;
    margin-top: 70px;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 90px 0 40px;
        margin-top: 70px;
    }
}

/* ===== Inner Page Banner ===== */
.inner-banner {
    position: relative;
    padding: 180px 0 100px;
    margin-top: 0;
    overflow: hidden;
}

.inner-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.inner-banner-content {
    text-align: center;
}

.inner-banner-content h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--color-primary);
}

.breadcrumb-nav a i {
    font-size: 1.125rem;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-separator i {
    font-size: 1.125rem;
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* ===== Improved Inner Page Styles ===== */

/* Page Intro Section */
.page-intro {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.page-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-intro-content .subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.page-intro-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.page-intro-content p {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.8;
}

/* Improved Service Box */
.service-box {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-box:hover::before {
    height: 100%;
}

.service-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-box:hover .service-box-icon {
    background: var(--color-primary);
}

.service-box-icon i {
    font-size: 2.25rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.service-box:hover .service-box-icon i {
    color: var(--color-secondary);
}

.service-box-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.service-box-content p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Improved Button Styles */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c9a227 100%);
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.3);
}

.btn-service:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d4a 100%);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Improved Menu Card */
.menu-card {
    background: var(--color-white);
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.menu-card-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid rgba(212, 168, 75, 0.2);
    text-align: center;
}

.menu-card-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.menu-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c9a227 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(212, 168, 75, 0.4);
}

.menu-card-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

.menu-card-body {
    padding: 30px 25px;
}

.menu-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.menu-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.menu-category h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-category h4::before {
    content: '';
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 0;
}

.menu-category ul li {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.menu-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.menu-card-footer {
    padding: 20px 25px 30px;
    background: #fafafa;
}

/* Improved Package Card */
.package-card {
    background: var(--color-white);
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.package-card-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d4a 100%);
    text-align: center;
}

.package-card-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.package-card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.package-card-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

.package-card-body {
    padding: 30px 25px;
}

.package-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.package-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.package-category h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-category h4::before {
    content: '';
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 0;
}

.package-category ul li {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.package-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.package-card-footer {
    padding: 20px 25px 30px;
    background: #fafafa;
}

/* Custom Planning Box Improved */
.custom-planning-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(212, 168, 75, 0.2);
    border-radius: 0;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.custom-planning-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c9a227 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
}

.custom-planning-icon i {
    font-size: 3rem;
    color: var(--color-secondary);
}

.custom-planning-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.custom-planning-content p {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Why Choose Us Improved */
.why-choose-simple {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-white);
    border-radius: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c9a227 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(212, 168, 75, 0.3);
}

.why-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

.why-item h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Customize Package Section Improved */
.customize-package-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d4a 100%);
    border-radius: 0;
    padding: 60px 50px;
    text-align: center;
}

.customize-package-box h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.customize-package-box > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 40px;
}

.customize-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.customize-option {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.customize-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.customize-option-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.customize-option-icon i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.customize-option h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.customize-option p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.btn-custom-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(212, 168, 75, 0.4);
}

.btn-custom-menu:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* Custom Menu Note Improved */
.custom-menu-note {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0;
    border: 2px dashed rgba(212, 168, 75, 0.3);
}

.custom-menu-note p {
    color: var(--color-gray-700);
    font-size: 1.125rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Inner Banner Responsive */
@media (max-width: 768px) {
    .inner-banner {
        padding: 120px 0 60px;
    }
    
    .inner-banner-content h1 {
        font-size: 2.25rem;
    }
    
    .breadcrumb-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .inner-banner {
        padding: 100px 0 50px;
    }
    
    .inner-banner-content h1 {
        font-size: 1.75rem;
    }
    
    .breadcrumb-nav a,
    .breadcrumb-current {
        font-size: 0.875rem;
    }
}

/* ===== Contact Page Improved Styles ===== */
.contact-info-section {
    padding: 60px 0;
    background: var(--color-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 168, 75, 0.3);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c9a227 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(212, 168, 75, 0.3);
}

.contact-info-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

.contact-info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.contact-info-card p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.contact-info-card p a {
    color: var(--color-gray-600);
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--color-primary);
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.contact-form-box > p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    margin-bottom: 30px;
}

.contact-form-box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-box .form-group {
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.1);
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: var(--color-gray-500);
}

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

/* Contact Map */
.contact-map-box {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Quick CTA Section */
.quick-cta-section {
    padding: 60px 0;
    background: var(--color-white);
}

.quick-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d4a 100%);
    border-radius: 0;
}

.quick-cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.quick-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-box iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form-box {
        padding: 30px 25px;
    }
    
    .contact-form-box .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 30px;
    }
}

/* Services Grid Section Background Fix */
.services-grid-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

.services-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Custom Planning Section Fix */
.custom-planning-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

/* Menu Cards Section Background Fix */
.menu-cards-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

/* Packages Cards Section Background Fix */
.packages-cards-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

/* Customize Package Section Fix */
.customize-package-section {
    padding: 0 0 60px;
    background: var(--color-white);
}

/* Filter Section Fix */
.menu-filter-section {
    padding: 30px 0;
    background: var(--color-white);
}

.menu-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-filter-btn,
.package-filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-filter-btn:hover,
.menu-filter-btn.active,
.package-filter-btn:hover,
.package-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* ===== Testimonials Equal Height Fix ===== */
.testimonials-swiper {
    height: 100%;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-swiper .swiper-slide .testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .testimonial-text {
    flex: 1;
}

/* ===== NEW FLOATING HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header .nav-logo .logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.header .nav-logo .logo-tagline {
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation Menu - Desktop */
.header .nav-menu {
    display: flex;
    align-items: center;
}

.header .nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: var(--color-primary);
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
    width: 100%;
}

/* Header WhatsApp Button */
.btn-header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-header-whatsapp i {
    font-size: 1.125rem;
}

/* Nav Close Button (Mobile) */
.header .nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .nav-close:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* Nav Toggle (Mobile) */
.header .nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .nav-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ===== MOBILE MENU - SLIDE FROM RIGHT ===== */
@media (max-width: 992px) {
    .header .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        z-index: 999;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .header .nav-menu.active {
        right: 0;
    }

    .header .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
    }

    .header .nav-link::after {
        display: none;
    }

    .header .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-header-whatsapp span {
        display: none;
    }

    .btn-header-whatsapp {
        padding: 10px;
    }
}

/* ===== BLACK FOOTER ===== */
.footer {
    background: #000000;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo .logo-tagline {
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* Footer Columns */
.footer-col h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact li i {
    color: var(--color-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

/* Footer WhatsApp Button */
.btn-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-footer-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.float-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    background: #25D366;
}

.whatsapp-float:hover {
    background: #128C7E;
}

.call-float {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.call-float:hover {
    background: #c9a227;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border: none;
    color: #000000;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: #000000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.top-bar-item i {
    color: var(--color-primary);
    font-size: 0.9375rem;
}

.top-bar-item:hover {
    color: var(--color-primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* ===== MAIN HEADER - BELOW TOP BAR ===== */
.header {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

/* Scrolled State - White Background */
.header.scrolled {
    top: 0;
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hide top bar on scroll */
.top-bar.hidden {
    transform: translateY(-100%);
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.header .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header .nav-logo .logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.header .nav-logo .logo-tagline {
    font-size: 0.6875rem;
    color: var(--color-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Scrolled - Logo Dark */
.header.scrolled .nav-logo .logo-text {
    color: var(--color-secondary);
}

/* Navigation Menu - Desktop */
.header .nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.header .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

/* Default State - Active Link Golden */
.header .nav-link:hover {
    color: var(--color-primary);
}

.header .nav-link.active {
    color: var(--color-primary);
}

.header .nav-link:hover::after,
.header .nav-link.active::after {
    width: 100%;
}

/* Scrolled State - Links Dark, Active Primary */
.header.scrolled .nav-link {
    color: var(--color-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary);
}

.header.scrolled .nav-link::after {
    background: var(--color-primary);
}

/* Header WhatsApp Button */
.btn-header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header-whatsapp:hover {
    background: #c9a227;
    transform: translateY(-2px);
}

.btn-header-whatsapp i {
    font-size: 1.125rem;
}

/* Nav Close Button (Mobile) */
.header .nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .nav-close:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* Nav Toggle (Mobile) */
.header .nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .nav-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Scrolled State - Toggle Dark */
.header.scrolled .nav-toggle {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--color-secondary);
}

.header.scrolled .nav-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* ===== MOBILE MENU - SLIDE FROM RIGHT ===== */
@media (max-width: 1024px) {
    .top-bar-left {
        gap: 15px;
    }
    
    .top-bar-item span {
        display: none;
    }
    
    .top-bar-text {
        display: none;
    }
    
    .header .nav-list {
        gap: 20px;
    }
    
    .header .nav-link {
        font-size: 0.875rem;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
    }
    
    .header .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        z-index: 999;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .header .nav-menu.active {
        right: 0;
    }

    .header .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1rem;
        color: var(--color-white) !important;
    }
    
    .header .nav-link.active {
        color: var(--color-primary) !important;
    }
    
    .header .nav-link:hover {
        color: var(--color-primary) !important;
    }

    .header .nav-link::after {
        display: none;
    }

    .header .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-header-whatsapp span {
        display: none;
    }

    .btn-header-whatsapp {
        padding: 12px;
    }
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-filter-section {
    padding: 30px 0;
    background: var(--color-white);
}

.gallery-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 0 0 80px;
    background: var(--color-white);
}

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

.gallery-grid-section .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.gallery-grid-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

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

.gallery-grid-section .gallery-overlay i {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.gallery-grid-section .gallery-overlay span {
    font-size: 0.9375rem;
    color: var(--color-white);
    font-weight: 500;
}

/* Gallery CTA */
.gallery-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-cta-box {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d4a 100%);
}

.gallery-cta-box h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.gallery-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 25px;
}

.gallery-cta-box .btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    padding: 14px 28px;
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== HEADER OVERRIDE - EXACTLY LIKE REFERENCE ===== */

/* Top Bar Override */
.top-bar {
    background: #0a0a0a !important;
    padding: 12px 0 !important;
}

.top-bar-left {
    gap: 30px !important;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.7) !important;
}

.top-bar-item:hover {
    color: var(--color-white) !important;
}

.top-bar-social {
    gap: 5px !important;
}

.top-bar-social a {
    width: 30px !important;
    height: 30px !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.top-bar-social a:hover {
    background: transparent !important;
    color: var(--color-primary) !important;
}

/* Main Header Override */
.header {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 15px 0 !important;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Logo Override - Golden Like Reference */
.header .nav-logo {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}

.header .nav-logo .logo-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.header .nav-logo .logo-text {
    font-size: 1.625rem !important;
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

.header.scrolled .nav-logo .logo-text {
    color: var(--color-primary) !important;
}

/* Nav Links Override */
.header .nav-list {
    gap: 35px !important;
}

.header .nav-link {
    padding: 5px 0 !important;
}

.header .nav-link::after {
    bottom: -2px !important;
}

.header.scrolled .nav-link {
    color: var(--color-white) !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary) !important;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Book Now Button - Orange Rounded Like Reference */
.btn-get-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #25D366;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-get-quote:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-get-quote i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-get-quote:hover i {
    transform: scale(1.1);
}

/* Hamburger Menu Toggle - 3 Lines Like Reference */
.header .nav-toggle {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 35px !important;
    height: 35px !important;
    background: transparent !important;
    border: none !important;
    padding: 5px !important;
}

.header .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.header .nav-toggle:hover span {
    background: var(--color-white);
}

.header.scrolled .nav-toggle {
    border: none !important;
}

.header.scrolled .nav-toggle span {
    background: var(--color-primary);
}

/* Mobile Menu Override */
@media (max-width: 992px) {
    .header {
        top: 0 !important;
    }
    
    .btn-get-quote {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }
    
    .btn-get-quote i {
        display: none;
    }
}

@media (max-width: 768px) {
    .btn-get-quote {
        padding: 10px 15px;
    }
    
    .btn-get-quote i {
        display: inline-block !important;
        font-size: 1.25rem;
    }
    
    .btn-get-quote {
        font-size: 0;
    }
    
    .btn-get-quote i {
        font-size: 1.25rem;
    }
}

/* ===== FLOATING HEADER - EXACTLY LIKE REFERENCE ===== */

/* Top Bar - Absolute Position Over Banner */
.top-bar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1001 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px) !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

/* Header - Absolute Position */
.header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(8px) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

/* When Scrolled - Fixed Position with Solid Background */
.header.scrolled {
    position: fixed !important;
    top: 0 !important;
    background: rgba(20, 20, 20, 0.98) !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3) !important;
}

/* When top bar hidden on scroll */
.top-bar.hide {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.header.scrolled.no-topbar {
    top: 0 !important;
}

/* Top Bar Content */
.top-bar-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.top-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
}

.top-bar-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.8125rem !important;
    transition: color 0.3s ease !important;
}

.top-bar-item i {
    color: var(--color-primary) !important;
    font-size: 0.9375rem !important;
}

.top-bar-item:hover {
    color: var(--color-white) !important;
}

.top-bar-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8125rem !important;
}

.top-bar-social {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.top-bar-social a {
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9375rem !important;
    transition: color 0.3s ease !important;
}

.top-bar-social a:hover {
    color: var(--color-primary) !important;
}

/* Logo - Golden Like Reference */
.header .nav-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
}

.header .nav-logo .logo-icon {
    font-size: 1.75rem !important;
    color: var(--color-primary) !important;
}

.header .nav-logo .logo-text {
    font-family: var(--font-secondary) !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
}

/* Nav Links - White, Active Golden with Underline */
.header .nav-list {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

.header .nav-link {
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: var(--color-white) !important;
    position: relative !important;
    padding: 5px 0 !important;
    transition: color 0.3s ease !important;
}

.header .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: -3px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--color-primary) !important;
    transition: width 0.3s ease !important;
}

.header .nav-link:hover {
    color: var(--color-primary) !important;
}

.header .nav-link.active {
    color: var(--color-primary) !important;
}

.header .nav-link.active::after,
.header .nav-link:hover::after {
    width: 100% !important;
}

/* Scrolled - Keep same colors */
.header.scrolled .nav-link {
    color: var(--color-white) !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary) !important;
}

/* Get a Quote Button - WhatsApp Green */
.btn-get-quote {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 22px !important;
    background: #25D366 !important;
    color: var(--color-white) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.btn-get-quote:hover {
    background: #1da851 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.btn-get-quote i {
    font-size: 1.125rem !important;
}

/* Hamburger - 3 Lines */
.header .nav-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 30px !important;
    height: 30px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.header .nav-toggle span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: var(--color-primary) !important;
    transition: all 0.3s ease !important;
}

/* Hero/Banner Adjustment */
.hero {
    margin-top: 0 !important;
}

.inner-banner {
    padding-top: 150px !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .top-bar-item span {
        display: none !important;
    }
    
    .top-bar-text {
        display: none !important;
    }
    
    .header .nav-list {
        gap: 20px !important;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none !important;
    }
    
    .header {
        top: 0 !important;
        position: fixed !important;
        background: rgba(10, 10, 10, 0.95) !important;
    }
    
    .header .nav-toggle {
        display: flex !important;
    }
    
    .header .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        width: 320px !important;
        height: 100vh !important;
        background: #0a0a0a !important;
        flex-direction: column !important;
        padding: 80px 30px 30px !important;
        z-index: 9999 !important;
        transition: right 0.4s ease !important;
    }
    
    .header .nav-menu.active {
        right: 0 !important;
    }
    
    .header .nav-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    .header .nav-list li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .header .nav-link {
        display: block !important;
        padding: 15px 0 !important;
    }
    
    .header .nav-link::after {
        display: none !important;
    }
    
    .header .nav-close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .inner-banner {
        padding-top: 120px !important;
    }
}

@media (max-width: 576px) {
    .btn-get-quote {
        padding: 10px 14px !important;
        font-size: 0 !important;
    }
    
    .btn-get-quote i {
        font-size: 1.25rem !important;
        margin: 0 !important;
    }
}

/* ===== SERVICES SPLIT LAYOUT - 48% Image | 48% Content ===== */
.services-split-section {
    padding: 80px 0;
    background: #fff;
}

.service-split-row {
    display: flex;
    align-items: center;
    gap: 4%;
    margin-bottom: 80px;
}

.service-split-row:last-child {
    margin-bottom: 0;
}

/* Reverse layout for alternating rows */
.service-split-row.reverse {
    flex-direction: row-reverse;
}

/* Image Side - 48% */
.service-split-image {
    flex: 0 0 48%;
    max-width: 48%;
    position: relative;
    overflow: hidden;
}

.service-split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-split-row:hover .service-split-image img {
    transform: scale(1.05);
}

/* Content Side - 48% */
.service-split-content {
    flex: 0 0 48%;
    max-width: 48%;
}

.service-number {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 168, 75, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.service-split-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-split-content p {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--color-primary);
    font-size: 1.125rem;
}

/* Services CTA Section */
.services-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-cta-box {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d4a 100%);
}

.services-cta-box h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.services-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-split-row,
    .service-split-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-split-image,
    .service-split-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .service-split-image img {
        height: 300px;
    }
    
    .service-split-row {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .services-split-section {
        padding: 60px 0;
    }
    
    .service-split-image img {
        height: 250px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-split-content h3 {
        font-size: 1.5rem;
    }
    
    .services-cta-box {
        padding: 40px 25px;
    }
}

/* ===== CTA SECTION BUTTONS ===== */
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp i {
    font-size: 1.25rem;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--color-white);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.btn-cta-outline i {
    font-size: 1.125rem;
}

.cta-subtitle {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* CTA Section Background Fix */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-outline {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Packages View More Button */
.packages-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-packages-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6b82e 100%);
    color: var(--dark-color);
    padding: 16px 40px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-packages-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-packages-more i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

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


/* Phone Button in Navigation */
.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #D4A84B;
    color: #D4A84B;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #D4A84B;
    color: #1A1A1A;
}

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

.header.scrolled .btn-phone {
    border-color: #D4A84B;
    color: #D4A84B;
}

.header.scrolled .btn-phone:hover {
    background: #D4A84B;
    color: #1A1A1A;
}

@media (max-width: 1024px) {
    .btn-phone {
        display: none;
    }
}