/* ===================== CSS VARIABLES ===================== */
:root {
    --orange: #fda03e;
    --orange-dark: #e8541e;
    --gold: #FFD166;
    --charcoal: #1F1F1F;
    --charcoal-soft: #2d2d2d;
    --bg: #FFF8F3;
    --white: #ffffff;
    --text-muted: #6b6b6b;
    --border: rgba(255, 107, 53, 0.15);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Lora', serif;
    --shadow-sm: 0 4px 20px rgba(255, 107, 53, 0.12);
    --shadow-md: 0 12px 40px rgba(31, 31, 31, 0.15);
    --shadow-lg: 0 24px 80px rgba(31, 31, 31, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== BASE ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--orange);
    color: #fff;
}

/* ===================== CUSTOM CURSOR ===================== */
#cursor {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.25s, height 0.25s, background 0.25s;
    mix-blend-mode: multiply;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover #cursor {
    opacity: 1;
}

/* ===================== SCROLL PROGRESS ===================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s;
}


/* ===================== LOADER - PREMIUM ===================== */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f08 50%, #0d0704 100%);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* Particle Background */
.loader-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.loader-bg-particles::before,
.loader-bg-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.loader-bg-particles::before {
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.loader-bg-particles::after {
    bottom: 10%;
    right: -100px;
    animation-delay: 4s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(50px, 50px) scale(1.3);
        opacity: 0.8;
    }
}

/* Loader Content */
.loader-content {
    text-align: center;
    z-index: 1;
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo Wrapper with Glow */
.loader-logo-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.loader-logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loader-logo {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    animation: logoBounce 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes logoBounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-8px);
    }
}

.loader-logo span {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    position: relative;
    display: inline-block;
    animation: textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }

    to {
        text-shadow: 0 0 25px rgba(255, 107, 53, 0.9), 0 0 5px var(--gold);
    }
}

/* Loader Bar Container */
.loader-bar-container {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-bar {
    width: 280px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.loader-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
    background-size: 200% 100%;
    border-radius: 4px;
    animation: loadBar 2s cubic-bezier(0.65, 0, 0.35, 1) forwards, gradientShift 1.5s ease infinite;
    width: 0%;
    position: relative;
}

@keyframes loadBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Percentage Counter */
.loader-percent {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    min-width: 50px;
    text-align: left;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.percent-num {
    display: inline-block;
    transition: all 0.1s ease;
    font-size: 1.2rem;
    font-weight: 900;
}

/* Tagline */
.loader-tagline {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .loader-logo {
        font-size: 2.5rem;
    }

    .loader-bar {
        width: 200px;
    }

    .loader-tagline {
        font-size: 0.7rem;
    }
}















/* ===================== NAVBAR - PREMIUM ===================== */
#navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: #000000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky on Scroll - Premium */
#navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 107, 53, 0.1);
    padding: 16px 0;
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Nav Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Premium */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    color: #000000;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    position: relative;
}

.logo span {
    color: #fda03e;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    position: relative;
}

.logo::before {
    content: '🍽️';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
    left: -35px;
}

.logo:hover {
    transform: scale(1.02);
    letter-spacing: -0.5px;
}

#navbar.sticky .logo {
    color: #1F1F1F;
}

#navbar.sticky .logo span {
    text-shadow: none;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

/* Premium Underline Effect */
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Active Link */
.nav-menu a.active {
    color: #fda03e;
}

.nav-menu a.active::before {
    width: 100%;
    background: linear-gradient(90deg, #fda03e, #fda03e);
}

/* Sticky State Links */
#navbar.sticky .nav-menu a {
    color: #ffffff;
}

#navbar.sticky .nav-menu a:hover {
    color: #fda03e;
    transform: translateY(-2px);
}

#navbar.sticky .nav-menu a.active {
    color: #fda03e;
}

/* Order Button - Premium */
.order-btn {
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: #FFFFFF !important;
    padding: 12px 32px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    letter-spacing: 0.5px;
}

.order-btn i {
    transition: transform 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C5A, #fda03e);
}

.order-btn:hover i {
    transform: translateX(6px);
}

/* Shine Effect */
.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.order-btn:hover::before {
    left: 100%;
}

#navbar.sticky .order-btn {
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hamburger - Premium */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 12px;
    border-radius: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hamburger:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.sticky .hamburger {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
}

#navbar.sticky .hamburger span {
    background: #1F1F1F;
}

/* Hamburger Active Animation */
.hamburger.active {
    background: #fda03e;
    border-color: #fda03e;
}

.hamburger.active span {
    background: #FFFFFF !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================== MOBILE MENU - PREMIUM ===================== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F5 100%);
    z-index: 2000;
    padding: 40px 30px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid linear-gradient(90deg, #fda03e, #FFD166);
    position: relative;
}

.mobile-menu-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
}

.mobile-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1F1F1F;
}

.mobile-logo span {
    color: #fda03e;
}

.mobile-close {
    width: 44px;
    height: 44px;
    background: #F5F5F5;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F1F1F;
}

.mobile-close:hover {
    background: #fda03e;
    color: #FFFFFF;
    transform: rotate(90deg);
}

/* Mobile Links - Staggered Animation */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F1F1F;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::before {
    width: 100%;
}

.mobile-nav-links a:hover {
    color: #fda03e;
    transform: translateX(8px);
}

/* Staggered Animation when menu opens */
.mobile-menu.active .mobile-nav-links a {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
    transform: translateX(40px);
}

.mobile-menu.active .mobile-nav-links a:nth-child(1) {
    animation-delay: 0.05s;
}

.mobile-menu.active .mobile-nav-links a:nth-child(2) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-links a:nth-child(3) {
    animation-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-links a:nth-child(4) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-links a:nth-child(5) {
    animation-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-links a:nth-child(6) {
    animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-links a:nth-child(7) {
    animation-delay: 0.35s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Order Button */
.mobile-order-btn {
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 50px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.mobile-order-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
}

.mobile-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.mobile-social a {
    width: 44px;
    height: 44px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F1F1F;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-social a:hover {
    background: #fda03e;
    color: white;
    transform: translateY(-5px);
}

.mobile-contact-info {
    margin-top: 20px;
}

.mobile-contact-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-contact-info i {
    color: #fda03e;
    width: 20px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #navbar {
        padding: 18px 0;
    }

    #navbar.sticky {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .mobile-nav-links a {
        font-size: 1.2rem;
    }
}

/* ===================== HERO - PREMIUM ===================== */
#hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f08 50%, #0a0502 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Image with Parallax */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?w=1800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    animation: heroPan 25s ease-in-out infinite alternate;
    transform: scale(1.05);
}

@keyframes heroPan {
    0% {
        transform: scale(1.05) translateX(0);
    }

    100% {
        transform: scale(1.1) translateX(-3%);
    }
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 100%);
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Hero Content */
.hero-content {
    max-width: 700px;
}

/* Badge - Premium */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(12px);
    padding: 10px 24px;
    border-radius: 100px;
    color: #FFD166;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease 0.2s both;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

.hero-badge i {
    font-size: 0.8rem;
    color: #fda03e;
}

/* Title - Premium */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-title .highlight {
    color: #fda03e;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #fda03e, #FFD166);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    opacity: 0.4;
    border-radius: 4px;
    filter: blur(2px);
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 520px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* CTA Buttons - Premium */
.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    gap: 15px;
}

.btn-primary:hover i {
    transform: scale(1.1);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.btn-secondary .arrow-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-secondary:hover {
    border-color: #fda03e;
    color: #fda03e;
    transform: translateY(-3px);
    gap: 15px;
    background: rgba(255, 107, 53, 0.05);
}

.btn-secondary:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Badges - Premium */
.hero-floating-badges {
    position: absolute;
    right: 20%;
    top: 26%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
    animation: fadeInRight 0.8s ease 0.6s both;
}

.float-badge {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 14px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatY 4s ease-in-out infinite;
    cursor: pointer;
}

.float-badge:hover {
    transform: translateX(-8px) translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.15);
}

.float-badge:nth-child(1) {
    animation-delay: 0s;
}

.float-badge:nth-child(2) {
    animation-delay: 0.8s;
}

.float-badge:nth-child(3) {
    animation-delay: 1.6s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.icon-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: rgba(255, 107, 53, 0.4);
    animation: pulseIcon 2s ease infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.3);
    }
}

.float-badge-text strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.float-badge-text small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Scroll Cue - Premium */
.hero-scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-scroll-cue span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fda03e;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 24px;
        opacity: 0.3;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fda03e;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-floating-badges {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #hero {
        min-height: 90vh;
    }

    .hero-wrapper {
        min-height: 90vh;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-scroll-cue {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: -1px;
    }

    .hero-ctas {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 0.8rem;
    }
}

/* ===================== SECTION COMMONS ===================== */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 0.78rem;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--charcoal);
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: var(--font-body);
    font-weight: 300;
    max-width: 540px;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.65);
}

.divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}




/* ===================== ABOUT SECTION - PREMIUM ===================== */
#about {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
#about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#about::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ==================== IMAGE SECTION ==================== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Image Overlay Gradient */
.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 209, 102, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-image:hover .image-overlay-gradient {
    opacity: 1;
}

/* Floating Badges */
.image-badge {
    position: absolute;
    background: rgba(31, 31, 31, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.image-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.95);
}

.badge-1 {
    top: 20px;
    left: -10px;
    animation: slideInLeft 0.6s ease 0.2s backwards;
}

.badge-2 {
    bottom: 30px;
    left: 20px;
    animation: slideInUp 0.6s ease 0.4s backwards;
}

.badge-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.badge-text strong {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.badge-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
}

/* Circle Badge */
.circle-badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    z-index: 3;
    animation: slideInRight 0.6s ease 0.3s backwards;
}

.circle-badge-inner {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.circle-badge-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.circle-badge:hover .circle-badge-inner {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.4);
}

.circle-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.circle-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== CONTENT SECTION ==================== */
.about-content {
    padding-left: 20px;
}

/* Section Badge */
.section-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
}

.section-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fda03e;
}

/* Title */
.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    color: #1F1F1F;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* Description */
.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #777;
    margin-bottom: 36px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #FEF9F5;
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #fda03e;
    transform: scale(1.1);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-icon i {
    font-size: 22px;
    color: #fda03e;
    transition: all 0.3s ease;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fda03e;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    transition: width 0.6s ease;
}

.stat-card:hover .stat-progress {
    width: 100%;
}

/* Explore Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.explore-btn i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.explore-btn:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.explore-btn:hover i {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.explore-btn:hover .btn-shine {
    left: 100%;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .about-grid {
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-image img {
        height: 450px;
    }

    .badge-1 {
        left: 10px;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .circle-badge {
        bottom: -15px;
        right: -10px;
    }

    .circle-badge-inner {
        width: 100px;
        height: 100px;
    }

    .circle-number {
        font-size: 32px;
    }

    .image-badge {
        padding: 8px 15px;
    }

    .badge-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .badge-1,
    .badge-2 {
        display: none;
    }

    .circle-badge {
        bottom: 10px;
        right: 10px;
    }

    .circle-badge-inner {
        width: 80px;
        height: 80px;
    }

    .circle-number {
        font-size: 26px;
    }

    .circle-label {
        font-size: 8px;
    }
}


/* ==================== MENU SECTION - PREMIUM ==================== */
#menu {
    background: #fff9e9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
#menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

#menu::after {
    content: '🍽️';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 200px;
    opacity: 0.03;
    pointer-events: none;
}

/* Section Header */
.menu-header {
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 18px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fda03e;
    margin-bottom: 16px;
}

.section-badge::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #1F1F1F;
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* Filter Tabs */
.menu-filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}

.filter-tab {
    padding: 10px 28px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    background: white;
    color: #555;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    transition: width 0.3s ease;
}

.filter-tab:hover::before {
    width: 50%;
}

.filter-tab:hover {
    transform: translateY(-2px);
    color: #fda03e;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.12);
}

.filter-tab.active {
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
    transform: translateY(-2px);
}

.filter-tab.active::before {
    width: 0;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Menu Card */
.menu-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 50px rgba(255, 107, 53, 0.15);
}

/* Card Image */
.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.15) rotate(2deg);
}

/* Image Overlay */
.menu-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover .menu-card-img::after {
    opacity: 1;
}

/* Card Tags */
.menu-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: tagPulse 2s ease infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    }
}

/* Favorite Button */
.menu-card-fav {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-card-fav:hover {
    transform: scale(1.15);
    background: #FF4757;
    color: white;
}

.menu-card-fav.active {
    background: #FF4757;
    color: white;
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Card Body */
.menu-card-body {
    padding: 20px;
    position: relative;
    background: white;
}

.menu-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #1F1F1F;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.menu-card:hover .menu-card-title {
    color: #fda03e;
}

.menu-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.55;
    margin-bottom: 20px;
}

/* Card Footer */
.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #fda03e;
}

/* Add to Cart Button */
.btn-add {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1F1F1F, #2d2d2d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-add:hover {
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
}

.btn-add:active {
    transform: rotate(90deg) scale(0.95);
}

/* Menu Item Filter Animation */
.menu-item {
    transition: all 0.3s ease;
}

.menu-item.hidden {
    display: none;
}

/* Staggered Animation */
.menu-item {
    animation: fadeInUp 0.5s ease backwards;
}

.menu-item:nth-child(1) {
    animation-delay: 0.05s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.15s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.25s;
}

.menu-item:nth-child(6) {
    animation-delay: 0.3s;
}

.menu-item:nth-child(7) {
    animation-delay: 0.35s;
}

.menu-item:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Full Menu Button */
.btn-full-menu {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fda03e;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #fda03e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-full-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.btn-full-menu:hover::before {
    width: 300px;
    height: 300px;
}

.btn-full-menu:hover {
    background: #fda03e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    gap: 16px;
}

.btn-full-menu:hover i {
    transform: translateX(6px);
}

.btn-full-menu i {
    transition: transform 0.3s ease;
}

/* Cart Toast */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1F1F1F, #2d2d2d);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast i {
    color: #fda03e;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    #menu {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .filter-tab {
        padding: 8px 20px;
        font-size: 12px;
    }

    .menu-card-img {
        height: 200px;
    }

    .menu-card-title {
        font-size: 16px;
    }

    .menu-price {
        font-size: 20px;
    }

    .btn-add {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .filter-tab {
        padding: 6px 16px;
        font-size: 11px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}







/* ==================== WHY CHOOSE US - PREMIUM ==================== */
#why {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f08 50%, #0a0502 100%);
    padding: 65px 0;
    position: relative;
    overflow: hidden;
}

/* Background Animation */
#why::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#why::after {
    content: '🌮';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 180px;
    opacity: 0.03;
    pointer-events: none;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFD166;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 14px;
    animation: iconSpin 3s ease infinite;
}

@keyframes iconSpin {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.why-title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.why-title-main span {
    color: #fda03e;
    position: relative;
    display: inline-block;
}

.why-title-main span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
    opacity: 0.4;
}

.why-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Why Card */
.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 25px 45px rgba(255, 107, 53, 0.15);
}

.why-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fda03e, #FFD166, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover .why-card-glow {
    transform: scaleX(1);
}

/* Icon Wrapper */
.why-icon-wrapper {
    position: relative;
    width: 69px;
    height: 69px;
    margin: 0 auto 28px;
}

.why-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-radius: 20px;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.why-icon {
    position: relative;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #f8c40b, #FF8C5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

/* Card Title */
.why-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: white;
    margin-bottom: 7px;
    transition: color 0.3s ease;
}

.why-card:hover .why-card-title {
    color: #fda03e;
}

/* Card Description */
.why-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 9px;

}

/* Card Number */
.why-card-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover .why-card-number {
    color: rgba(255, 107, 53, 0.2);
    font-size: 52px;
}

/* Card Line */
.why-card-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.why-card:hover .why-card-line {
    width: 60%;
}

/* Responsive */
@media (max-width: 1200px) {
    .why-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-title-main {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    #why {
        padding: 60px 0;
    }

    .why-title-main {
        font-size: 32px;
    }

    .why-subtitle {
        font-size: 14px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}




/* ==================== OFFERS SECTION - PROFESSIONAL ==================== */
#offers {
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF9F5 100%);
    padding: 100px 0;
    position: relative;
}

/* Header */
.offers-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f7c30b;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 13px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #1F1F1F;
    letter-spacing: -1px;
    margin: 0;
}

.section-title span {
    color: #f7c30b;
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7c30b, #FFD166);
    border-radius: 2px;
    opacity: 0.4;
}

.offers-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Offers Grid - 4 Cards */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Offer Card - Uniform Design */
.offer-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.offer-card-inner {
    padding: 28px 24px;
    position: relative;
}

/* Offer Icon */
.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f7c30b, #FF8C5A);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.05);
    border-radius: 20px;
}

.offer-icon i {
    font-size: 28px;
    color: white;
}

/* Offer Tag */
.offer-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #f7c30b;
    margin-bottom: 15px;
}

/* Offer Title */
.offer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Offer Description */
.offer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
}

/* Offer Price */
.offer-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.price-old {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000000;
}

/* Offer Code */
.offer-code {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #555;
}

.offer-code strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
}

.copy-code {
    background: rgba(255, 107, 53, 0.1);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #f7c30b;
    margin-left: auto;
}

.copy-code:hover {
    background: #f7c30b;
    color: white;
    transform: scale(1.05);
}

/* Offer Button */
.offer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #f7c30b, #FF8C5A);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.offer-btn i {
    transition: transform 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.offer-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .offers-grid {
        gap: 20px;
    }
    
    .offer-title {
        font-size: 18px;
    }
    
    .price-new {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .offer-desc {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    #offers {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .offers-description {
        margin-top: 15px;
        font-size: 14px;
    }
    
    .offer-card-inner {
        padding: 22px 18px;
    }
    
    .offer-icon {
        width: 50px;
        height: 50px;
    }
    
    .offer-icon i {
        font-size: 24px;
    }
    
    .offer-title {
        font-size: 18px;
    }
    
    .price-new {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
}





/* ==================== TESTIMONIALS SECTION - PREMIUM ==================== */
#testimonials {
    background: #fff9e9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decor */
#testimonials::before {
    content: '“';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 300px;
    font-family: 'Georgia', serif;
    color: rgba(255, 107, 53, 0.05);
    pointer-events: none;
}

#testimonials::after {
    content: '”';
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 300px;
    font-family: 'Georgia', serif;
    color: rgba(255, 107, 53, 0.05);
    pointer-events: none;
}

/* Header */
.testimonials-header {
    margin-bottom: 60px;
}

.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fda03e;
    margin-bottom: 20px;
}

.testi-badge i {
    font-size: 10px;
    opacity: 0.8;
}

.testi-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #1F1F1F;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.testi-title span {
    color: #fda03e;
    position: relative;
}

.testi-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
    opacity: 0.4;
}

.testi-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
}

/* Track Wrapper */
.testi-track-wrap {
    overflow: hidden;
    position: relative;
    margin: 0 -15px;
    padding: 20px 0;
}

.testi-track-wrap::before,
.testi-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testi-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #FEF9F5, transparent);
}

.testi-track-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, #FEF9F5, transparent);
}

/* Track */
.testi-track {
    display: flex;
    gap: 28px;
    animation: scrollTrack 35s linear infinite;
    width: max-content;
}

.testi-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTrack {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.testi-card {
    background: white;
    border-radius: 28px;
    padding: 32px 28px;
    width: 360px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.testi-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testi-card:hover .testi-card-glow {
    opacity: 1;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Quote Icon */
.testi-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(255, 107, 53, 0.08);
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.testi-card:hover .testi-quote-icon {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* Stars */
.testi-stars {
    margin-bottom: 20px;
}

.testi-stars i {
    color: #FFD166;
    font-size: 14px;
    margin-right: 2px;
    text-shadow: 0 2px 5px rgba(255, 209, 102, 0.3);
}

/* Text */
.testi-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 120px;
}

/* Author */
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar-wrapper {
    position: relative;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fda03e;
    transition: all 0.3s ease;
}

.testi-card:hover .testi-avatar {
    transform: scale(1.05);
    border-color: #FFD166;
}

.avatar-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    animation: avatarPulse 2s ease infinite;
    opacity: 0;
}

.testi-card:hover .avatar-pulse {
    opacity: 1;
}

@keyframes avatarPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.testi-info {
    flex: 1;
}

.testi-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #1F1F1F;
    margin-bottom: 4px;
}

.testi-location {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testi-location i {
    font-size: 10px;
    color: #fda03e;
}

/* Rating Badge */
.testi-rating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.testi-card:hover .testi-rating-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Pagination Dots */
.testi-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot:hover {
    background: #fda03e;
    transform: scale(1.2);
}

.pagination-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #fda03e, #FF8C5A);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .testi-title {
        font-size: 36px;
    }

    .testi-card {
        width: 320px;
        padding: 28px 24px;
    }

    .testi-text {
        font-size: 14px;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    #testimonials {
        padding: 60px 0;
    }

    .testi-title {
        font-size: 32px;
    }

    .testi-subtitle {
        font-size: 14px;
    }

    .testi-card {
        width: 300px;
        padding: 24px 20px;
    }

    .testi-avatar {
        width: 44px;
        height: 44px;
    }

    .testi-name {
        font-size: 14px;
    }

    .testi-text {
        min-height: 120px;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .testi-card {
        width: 280px;
    }

    .testi-text {
        font-size: 13px;
        min-height: 140px;
    }

    .testi-quote-icon {
        font-size: 30px;
    }
}






/* ==================== GALLERY SECTION - PREMIUM ==================== */
#gallery {
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF9F5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decor */
#gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Header */
.gallery-header {
    margin-bottom: 50px;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fda03e;
    margin-bottom: 20px;
}

.gallery-badge i {
    font-size: 12px;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #1F1F1F;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.gallery-title span {
    color: #fda03e;
    position: relative;
}

.gallery-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
    opacity: 0.4;
}

.gallery-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #777;
}

.instagram-link {
    color: #fda03e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-link i {
    margin-right: 4px;
}

.instagram-link:hover {
    color: #e8541e;
    text-decoration: underline;
}

/* Gallery Grid - Premium Masonry */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.medium-large {
    grid-column: span 2;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

/* Gallery Overlay - Premium */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(31, 31, 31, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.gallery-item:hover .overlay-icon {
    transform: scale(1.1);
}

.overlay-icon i {
    font-size: 20px;
    color: #fda03e;
}

.overlay-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.overlay-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.overlay-social {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #FFD166;
}

.overlay-social i {
    margin-right: 4px;
}

/* Instagram Button */
.gallery-more {
    margin-top: 50px;
}

.gallery-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1F1F1F, #2d2d2d);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-instagram-btn i:first-child {
    font-size: 18px;
    color: #fda03e;
}

.gallery-instagram-btn:hover {
    transform: translateY(-3px);
    gap: 16px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
}

.gallery-instagram-btn:hover i:first-child {
    color: white;
}

/* ==================== LIGHTBOX MODAL ==================== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: #fda03e;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    font-size: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: #fda03e;
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: -60px;
}

.modal-next {
    right: -60px;
}

.modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .gallery-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    #gallery {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 32px;
    }

    .gallery-subtitle {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .gallery-item.large,
    .gallery-item.medium-large {
        grid-column: span 1;
    }

    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-prev {
        left: -50px;
    }

    .modal-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 10px;
        grid-auto-rows: 140px;
    }

    .overlay-title {
        font-size: 14px;
    }

    .overlay-desc {
        font-size: 10px;
    }

    .overlay-icon {
        width: 36px;
        height: 36px;
    }

    .overlay-icon i {
        font-size: 14px;
    }

    .modal-prev,
    .modal-next {
        width: 35px;
        height: 35px;
    }

    .modal-prev {
        left: -45px;
    }

    .modal-next {
        right: -45px;
    }
}






/* ==================== CTA SECTION - PREMIUM ==================== */
#cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f08 50%, #0d0704 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Glows */
.cta-bg-glow-1 {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.cta-bg-glow-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite reverse;
}

.cta-bg-glow-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FFD166;
    margin-bottom: 24px;
}

.cta-badge i {
    font-size: 12px;
    animation: iconBounce 2s ease infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-title span {
    color: #fda03e;
    position: relative;
    display: inline-block;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
    opacity: 0.4;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-btn-primary i {
    font-size: 16px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    gap: 16px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn-primary:hover .btn-glow {
    left: 100%;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-btn-secondary i:last-child {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: #fda03e;
    color: #fda03e;
    transform: translateY(-3px);
    gap: 15px;
}

.cta-btn-secondary:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Info Grid */
.cta-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.1);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.info-icon i {
    font-size: 20px;
    color: #fda03e;
}

.info-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.info-content p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.info-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    transition: width 0.3s ease;
}

.info-card:hover .info-hover {
    width: 100%;
}

/* Social Proof */
.cta-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fda03e;
    margin-right: -12px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    z-index: 4;
}

.avatar-stack img:nth-child(2) {
    z-index: 3;
}

.avatar-stack img:nth-child(3) {
    z-index: 2;
}

.avatar-stack img:nth-child(4) {
    z-index: 1;
}

.avatar-count {
    width: 40px;
    height: 40px;
    background: #fda03e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: white;
    border: 2px solid #fda03e;
}

.social-text {
    font-family: 'Inter', sans-serif;
}

.social-text strong {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.social-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

/* Image Section */
.cta-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image-mockup {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mockup-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #fda03e, #FFD166, #fda03e);
    border-radius: 34px;
    opacity: 0.5;
    z-index: -1;
    filter: blur(8px);
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(6px);
    }

    50% {
        opacity: 0.7;
        filter: blur(12px);
    }
}

.cta-main-image {
    width: 354px;
    max-width: 100%;
    border-radius: 28px;
    display: block;
    transition: all 0.4s ease;
}

.cta-image-wrapper:hover .cta-main-image {
    transform: scale(1.02);
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 28px;
    pointer-events: none;
}

/* Floating Badges on Image */
.image-floating-badge {
    position: absolute;
    background: rgba(31, 31, 31, 0.9);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

.image-floating-badge i {
    color: #FFD166;
    font-size: 14px;
}

.badge-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1s;
}

.badge-3 {
    top: 40%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.image-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    animation: pulseRing 2s ease infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0;
    }
}

/* Wave Bottom */
.cta-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.cta-wave-bottom svg {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .cta-title {
        font-size: 40px;
    }

    .cta-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .badge-1,
    .badge-2,
    .badge-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    #cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-social-proof {
        justify-content: center;
    }

    .cta-image-wrapper {
        margin-top: 40px;
    }

    .cta-main-image {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .cta-badge {
        font-size: 10px;
        padding: 6px 18px;
    }
}



/* ==================== CONTACT SECTION - PREMIUM ==================== */
#contact {
    background: #fff9e9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fda03e;
    margin-bottom: 20px;
}

.contact-badge i {
    font-size: 12px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size:30px;
    font-weight: 900;
    color: #1F1F1F;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contact-title span {
    color: #fda03e;
    position: relative;
}

.contact-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
    opacity: 0.4;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #777;
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 28px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.08);
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.contact-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fda03e, #FFD166, #fda03e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-card-glow {
    transform: scaleX(1);
}

/* Contact Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.icon-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: rgba(255, 107, 53, 0.4);
    animation: iconPulse 2s ease infinite;
    opacity: 0;
}

.contact-card:hover .icon-pulse {
    opacity: 1;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.contact-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 20px;
}

/* Address */
.contact-address {
    display: flex;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-address i {
    color: #fda03e;
    margin-top: 3px;
}

.contact-direction {
    margin-bottom: 20px;
}

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fda03e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.direction-link:hover {
    background: #fda03e;
    color: white;
    gap: 12px;
}

/* Status */
.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.status.open {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.status.open i {
    font-size: 8px;
    color: #27ae60;
    animation: blink 1.5s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Hours List */
.hours-list {
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1F1F1F;
}

.time {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #fda03e;
    font-weight: 600;
}

.holiday-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.05);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    color: #888;
}

.holiday-note i {
    color: #fda03e;
}

/* Social Links */
.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f8f8;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link i:first-child {
    font-size: 20px;
    width: 24px;
}

.social-link span {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.social-link i:last-child {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateX(5px);
}

.social-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

.social-link.instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.08);
}

.social-link.instagram:hover {
    background: #E4405F;
    color: white;
}

.social-link.facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.08);
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-link.twitter {
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.08);
}

.social-link.twitter:hover {
    background: #1DA1F2;
    color: white;
}

/* Order Button */
.order-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-now-btn i {
    transition: transform 0.3s ease;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    gap: 16px;
}

.order-now-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .contact-card {
        padding: 30px 24px;
    }
}










/* ==================== FOOTER - PREMIUM ==================== */
#footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

/* Footer Logo */
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo span {
    color: #fda03e;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-color: #fda03e;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Footer Titles */
.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #fda03e, #FFD166);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 12px;
    color: #fda03e;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fda03e;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter */
.newsletter-form {
    position: relative;
    margin-top: 16px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 55px 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: #fda03e;
    background: rgba(255, 107, 53, 0.05);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 45px 0 25px;
}

/* Footer Bottom */
.footer-bottom {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.footer-bottom a {
    color: #fda03e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
    #footer {
        padding: 60px 0 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

























/* ===================== MOUSE GLOW ===================== */
.mouse-glow {
    pointer-events: none;
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: all 0.15s ease;
}

/* ===================== RIPPLE ===================== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===================== TILT ===================== */
.tilt {
    transform-style: preserve-3d;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .hero-floating-badges {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .testi-card {
        width: 290px;
    }
}

/* ===================== MISC ===================== */
.text-orange {
    color: var(--orange);
}

.bg-orange {
    background: var(--orange);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

/* hours widget */
.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li .day {
    font-weight: 600;
    color: var(--charcoal);
    font-family: var(--font-head);
}

/* info cards */
.info-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 14px;
}



/* ==================== SCROLL TO TOP BUTTON - PREMIUM ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.scroll-top-inner {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.scroll-top-inner i {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.scroll-top-inner:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.scroll-top-inner:hover i {
    transform: translateY(-3px);
}

/* Tooltip */
.scroll-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #1F1F1F;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.scroll-tooltip::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #1F1F1F;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 2px;
}

.scroll-top-inner:hover .scroll-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Progress Ring */
.scroll-progress-ring {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 56px;
    height: 56px;
    z-index: 1;
}

.progress-ring-circle-bg {
    stroke: rgba(255, 107, 53, 0.15);
}

.progress-ring-circle {
    stroke: #fda03e;
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
    transition: stroke-dashoffset 0.1s linear;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Scroll Progress Ring Animation */
.scroll-top-inner:active {
    transform: scale(0.95);
}

.scroll-top-inner:active i {
    transform: translateY(0);
}

/* Ripple Effect on Click */
.scroll-top-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleTop 0.6s linear;
    pointer-events: none;
}

@keyframes rippleTop {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-inner {
        width: 48px;
        height: 48px;
    }

    .scroll-progress-ring {
        width: 52px;
        height: 52px;
    }

    .scroll-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .scroll-top {
        bottom: 15px;
        right: 15px;
    }

    .scroll-top-inner {
        width: 44px;
        height: 44px;
    }

    .scroll-top-inner i {
        font-size: 18px;
    }

    .scroll-progress-ring {
        width: 48px;
        height: 48px;
    }
}



/* my css */

.hero_ji {
    padding: 10px 0px;
}


.logo_ji {
    width: 198px;
}









/* ==================== TOP HEADER / TOP BAR - PREMIUM ==================== */
.top-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 4px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

/* Animated Gradient Border Bottom */
.top-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fda03e, #FFD166, #fda03e, transparent);
    animation: borderGlide 3s linear infinite;
}

@keyframes borderGlide {
    0% {
        background-position: -100%;
    }

    100% {
        background-position: 200%;
    }
}

.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Left Side */
.top-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 10px;
    border-radius: 50px;
}

.top-contact-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(3px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.top-contact-item:hover .contact-icon {
    background: #fda03e;
    transform: scale(1.05);
}

.contact-icon i {
    font-size: 9px;
    color: #fda03e;
    transition: all 0.3s ease;
}

.top-contact-item:hover .contact-icon i {
    color: white;
}

/* Pulse Ring on Phone Icon */
.icon-pulse-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.4);
    animation: iconPulseRing 1.5s ease infinite;
    opacity: 0;
}

.top-contact-item:hover .icon-pulse-ring {
    opacity: 1;
}

@keyframes iconPulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.top-contact-item:hover .contact-value {
    color: #fda03e;
}

.top-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hours Section */
.top-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 50px;
    background: rgba(255, 107, 53, 0.05);
}

.top-hours .contact-icon {
    background: rgba(255, 107, 53, 0.2);
}

/* Right Side */
.top-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Offer Badge */
.top-offer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fda03e, #FF8C5A);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease infinite;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    }
}

.top-offer-badge i:first-child {
    font-size: 11px;
    animation: giftShake 2s ease infinite;
}

.top-offer-badge i:last-child {
    font-size: 10px;
    animation: fireFlicker 1s ease infinite;
}

@keyframes giftShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

@keyframes fireFlicker {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Social Media Icons */
.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icon:nth-child(1):hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-icon:nth-child(2):hover {
    background: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-icon:nth-child(3):hover {
    background: #1DA1F2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.social-icon:nth-child(4):hover {
    background: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-icon:nth-child(5):hover {
    background: #D32323;
    box-shadow: 0 4px 15px rgba(211, 35, 35, 0.4);
}

/* Social Tooltip */
.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: #1F1F1F;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.social-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #1F1F1F;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    bottom: -40px;
}

/* Hide Top Header on Scroll (Optional) */
.top-header.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Add spacing for navbar when top header is present */
#navbar {
    top: 0;
}

/* If you want navbar to be below top header */
body:not(.top-header-hidden) #navbar {
    top: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .top-header-wrapper {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .top-header-left {
        justify-content: center;
    }

    .top-header-right {
        justify-content: center;
    }

    .top-divider {
        display: none;
    }

    .top-contact-item {
        background: rgba(255, 255, 255, 0.03);
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .top-header-left {
        gap: 12px;
    }

    .top-contact-item {
        padding: 4px 8px;
    }

    .contact-text .contact-label {
        display: none;
    }

    .contact-text .contact-value {
        font-size: 11px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-icon i {
        font-size: 12px;
    }

    .top-offer-badge span {
        font-size: 9px;
    }

    .top-offer-badge {
        padding: 4px 12px;
    }

    .top-social {
        gap: 6px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 6px 0;
    }

    .top-contact-item .contact-value {
        font-size: 10px;
    }

    .top-offer-badge span {
        font-size: 8px;
    }

    .top-offer-badge i {
        font-size: 9px;
    }

    .top-social {
        gap: 5px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}



@media (max-width: 580px) {}