/* ===========================
   BI-NA-BI Catering - CSS
   =========================== */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary: #D20C1B;
    --primary-dark: #A00A15;
    --primary-light: #FF3C4A;
    --white: #FFFFFF;
    --black: #1a1a1a;

    /* Grays */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(210, 12, 27, 0.95) 0%, rgba(160, 10, 21, 0.85) 100%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    line-height: 1.7;
    color: var(--gray-700);
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section--alt {
    background-color: var(--gray-50);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D20C1B 0%, #FF3C4A 50%, #D20C1B 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShift 4s ease infinite;
    position: relative;
}

@keyframes gradientTextShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== CREATIVE DECORATIVE ELEMENTS ===== */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(210, 12, 27, 0.05), transparent);
    border-radius: 50%;
    animation: floatSlow 15s infinite ease-in-out;
    pointer-events: none;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(210, 12, 27, 0.04), transparent);
    border-radius: 50%;
    animation: floatSlow 18s infinite ease-in-out reverse;
    pointer-events: none;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-15px, -50px) rotate(180deg);
    }

    75% {
        transform: translate(-25px, -20px) rotate(270deg);
    }
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.visible {
    opacity: 1;
}

/* ===== NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition-base);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 100%;
    transition: width 0.3s ease;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.nav__link:hover {
    color: var(--primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(210, 12, 27, 0.3);
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(210, 12, 27, 0.4);
}

.btn--primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn--secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 50%, #FFFFFF 100%);
    padding-top: 5rem;
    overflow: hidden;
}

/* Hero background image will be added via inline style in template */

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(210, 12, 27, 0.3) 100%);
    z-index: 1;
}

/* Animated geometric shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 12, 27, 0.25) 0%, rgba(210, 12, 27, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatReverse 25s infinite ease-in-out;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: translate(30px, -40px) scale(1.05) rotate(5deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, -50px) scale(1.1) rotate(-3deg);
        opacity: 1;
    }

    75% {
        transform: translate(-30px, 20px) scale(1.08) rotate(4deg);
        opacity: 0.9;
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.8;
    }

    33% {
        transform: translate(-40px, 30px) scale(1.15) rotate(-8deg);
        opacity: 1;
    }

    66% {
        transform: translate(40px, -30px) scale(0.95) rotate(6deg);
        opacity: 0.85;
    }
}

.hero__container {
    position: relative;
    z-index: 10;
}

.hero__content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ===== FEATURES/WHY US ===== */
.why-us {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 12, 27, 0.12) 0%, rgba(210, 12, 27, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(210, 12, 27, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatReverse 25s infinite ease-in-out;
    pointer-events: none;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(210, 12, 27, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(210, 12, 27, 0.2));
    transition: all 0.4s ease;
    color: var(--primary);
}

.feature-card__icon i {
    display: block;
}

.feature-card:hover .feature-card__icon {
    animation: iconBounce 0.6s ease;
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(210, 12, 27, 0.3));
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1.2) rotate(5deg);
    }

    50% {
        transform: scale(1.3) rotate(-5deg);
    }
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.feature-card__description {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Staggered animation for cards */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===== SERVICES ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--gray-100);
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(210, 12, 27, 0.03), rgba(210, 12, 27, 0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(210, 12, 27, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card__image {
    position: relative;
    height: 220px;
    background-color: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.service-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.service-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card__title {
    margin-bottom: 1rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.service-title-icon {
    color: var(--primary);
    font-size: 1.25rem;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.service-card__description {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.service-card__features {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.service-card__features li {
    position: relative;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: -1.25rem;
    color: var(--primary);
    font-weight: bold;
}

/* ===== TIMELINE/PROCESS ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.timeline__item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline__item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(210, 12, 27, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
    position: relative;
}

.timeline__number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.5;
    animation: ripple 3s infinite;
    position: relative;
}

.timeline__content {
    flex: 1;
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.timeline__title {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline__description {
    color: var(--gray-600);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(210, 12, 27, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(210, 12, 27, 0.4);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== WHO WE SERVE ===== */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.serve-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-100);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.serve-card__icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.serve-card__icon i {
    display: block;
}

.serve-card__title {
    color: var(--black);
    margin-bottom: 0.75rem;
}

.serve-card__description {
    color: var(--gray-600);
}

/* ===== DIETARY ===== */
.dietary__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dietary__text {
    max-width: 600px;
}

.dietary__description {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    font-size: 1.05rem;
}

.dietary__features {
    margin-top: 2rem;
}

.dietary__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
}

.dietary__check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.dietary__image {
    height: 500px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.dietary__image::before {
    content: '🥗';
    position: absolute;
    font-size: 12rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.9));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 12, 27, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(210, 12, 27, 0.15);
    border-color: rgba(210, 12, 27, 0.3);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card__quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    animation: quoteFloat 4s ease-in-out infinite;
}

@keyframes quoteFloat {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: rotate(5deg) scale(1.05);
        opacity: 0.2;
    }
}

.testimonial-card__text {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    color: var(--gray-700);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-card__name {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.testimonial-card__location {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    position: sticky;
    top: 100px;
}

.contact__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact__description {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact__method:hover {
    background-color: var(--gray-100);
}

.contact__method-icon {
    font-size: 2rem;
    color: var(--primary);
    min-width: 50px;
    text-align: center;
}

.contact__method-icon i {
    display: block;
}

.contact__method-info h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.contact__method-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ===== FORMS ===== */
.contact__form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background-color: var(--white);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(210, 12, 27, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FAQ ===== */
.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq__question:hover {
    background-color: var(--gray-50);
}

.faq__icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq__answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--gray-50);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.faq__item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq__item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-base);
}

.faq__question:hover {
    color: var(--primary);
}

.faq__item.active .faq__question {
    color: var(--primary);
    background: rgba(210, 12, 27, 0.03);
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq__answer p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

.faq__item.active .faq__answer {
    padding: 0 1.5rem 1.25rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 20s infinite ease-in-out;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    animation: morphBlob 15s infinite ease-in-out reverse;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 50% 50% / 30% 60% 70% 40%;
        transform: translate(50px, 30px) rotate(90deg);
    }

    50% {
        border-radius: 50% 60% 30% 70% / 50% 40% 60% 50%;
        transform: translate(20px, -40px) rotate(180deg);
    }

    75% {
        border-radius: 30% 50% 70% 50% / 60% 30% 50% 60%;
        transform: translate(-30px, 20px) rotate(270deg);
    }
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta .btn--primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta .btn--primary:hover {
    background-color: var(--gray-100);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer__description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer__title {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__links li {
    color: var(--gray-400);
}

.footer__links li i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 16px;
    display: inline-block;
}

.footer__bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline__item {
        flex-direction: row !important;
    }

    .timeline__number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .dietary__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dietary__image {
        height: 300px;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact__info {
        position: static;
    }

    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        padding: 2rem 0;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .timeline__content {
        padding: 1rem 1.5rem;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .service-card__content {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaFloat 15s infinite ease-in-out;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 20px) rotate(5deg);
    }
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta__title {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA button override - white button on red background */
.cta .btn--primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: none;
}

.cta .btn--primary:hover {
    background: var(--gray-100);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== CREATIVE CURSOR TRAIL ===== */
.cursor-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== SPARKLE EFFECT ===== */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnimation 1s ease-out forwards;
}

@keyframes sparkleAnimation {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== EVENT CATERING HERO SPECIFIC STYLES ===== */
.hero__content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.hero__content .hero__title,
.hero__content .hero__subtitle,
.hero__content .hero__description {
    text-align: center;
}

.hero__content .hero__features {
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}