/* ==========================================
   FOOD FUSION PAGE - COMPLETE CSS
   Fresh, Vibrant, Health-Focused Design
   assets/css/food-fusion.css
   ========================================== */

/* ==========================================
   PRELOADER
   ========================================== */

.foodfusion-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.foodfusion-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
}

.preloader-spinner {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(229, 113, 18, 0.7);
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: rgba(229, 113, 18, 0.4);
    animation-delay: 0.4s;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.preloader-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffa94d);
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(229, 113, 18, 0.5);
}

.preloader-percentage {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================
   HERO SECTION WITH IMAGE
   ========================================== */

.foodfusion-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.foodfusion-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.foodfusion-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.foodfusion-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(39, 48, 108, 0.88) 0%,
            rgba(26, 35, 71, 0.82) 50%,
            rgba(229, 113, 18, 0.78) 100%
    );
}

.foodfusion-overlay-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 25% 50%, rgba(229, 113, 18, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 75% 80%, rgba(229, 113, 18, 0.12) 0%, transparent 50%);
}

.foodfusion-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
}

.foodfusion-floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(229, 113, 18, 0.12);
    animation: floatShape 18s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: -90px;
    animation-delay: 8s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 20%;
    animation-delay: 12s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.15);
        opacity: 0.5;
    }
}

.foodfusion-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.foodfusion-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
}

.foodfusion-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.foodfusion-separator {
    color: rgba(255, 255, 255, 0.4);
}

.foodfusion-current {
    color: var(--white);
}

.foodfusion-hero-badge {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 38px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.5);
    animation: gentleFloat 4s ease-in-out infinite;
}

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

.foodfusion-page-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.foodfusion-page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 35px;
}

.foodfusion-hero-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-feature-pill:hover {
    background: rgba(229, 113, 18, 0.25);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-feature-pill i {
    font-size: 16px;
    color: var(--primary);
}

/* ==========================================
   INTRODUCTION SECTION
   ========================================== */

.foodfusion-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.foodfusion-intro-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-visual {
    position: relative;
}

.intro-visual-card {
    width: 280px;
    height: 280px;
    position: relative;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(229, 113, 18, 0.3);
}

.visual-icon {
    font-size: 100px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.visual-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(
            circle,
            rgba(229, 113, 18, 0.3) 0%,
            transparent 70%
    );
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.intro-content {
    flex: 1;
}

.intro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(229, 113, 18, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.intro-label i {
    font-size: 12px;
}

.intro-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.intro-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d96510);
    margin-bottom: 24px;
    border-radius: 2px;
}

.intro-description {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 16px;
}

.intro-description:last-child {
    margin-bottom: 0;
}

/* ==========================================
   MISSION STATEMENT
   ========================================== */

.foodfusion-mission-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 100%);
}

.mission-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-background {
    position: absolute;
    inset: 0;
}

.mission-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
}

.mission-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(229, 113, 18, 0.2) 0%,
            transparent 70%
    );
}

.mission-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mission-quote-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 113, 18, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-size: 30px;
    margin: 0 auto 24px;
}

.mission-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    font-style: italic;
}

.mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.mission-signature {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
}

/* ==========================================
   THINKER'S LOUNGE SECTION
   ========================================== */

.foodfusion-thinkers-section {
    padding: 80px 0;
    background: var(--white);
}

.thinkers-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.thinkers-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.3);
}

.thinkers-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.thinkers-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.thinkers-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.thinkers-feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.thinkers-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d96510);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.thinkers-feature-card:hover {
    border-color: rgba(229, 113, 18, 0.3);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.thinkers-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 113, 18, 0.1), rgba(229, 113, 18, 0.05));
    border-radius: 50%;
    color: var(--primary);
    font-size: 34px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.thinkers-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), #d96510);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(229, 113, 18, 0.3);
    transform: scale(1.1);
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 113, 18, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.feature-highlight i {
    font-size: 11px;
}

/* ==========================================
   VALUES SECTION
   ========================================== */

.foodfusion-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    position: relative;
    overflow: hidden;
}

.foodfusion-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(229, 113, 18, 0.1) 0%,
            transparent 70%
    );
}

.values-wrapper {
    position: relative;
    z-index: 1;
}

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

.values-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.values-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 113, 18, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    margin: 0 auto 16px;
}

.value-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.value-description {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================
   HIGHLIGHTS SECTION
   ========================================== */

.foodfusion-highlights-section {
    padding: 80px 0;
    background: var(--white);
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.primary-highlight {
    padding: 45px 40px;
}

.highlight-background {
    position: absolute;
    inset: 0;
}

.highlight-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
}

.highlight-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 70% 30%,
            rgba(229, 113, 18, 0.2) 0%,
            transparent 60%
    );
}

.highlight-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.4);
}

.highlight-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.highlight-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.highlight-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(229, 113, 18, 0.15);
    border: 1px solid rgba(229, 113, 18, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.highlight-badge i {
    color: var(--primary);
    font-size: 12px;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: rgba(229, 113, 18, 0.3);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.foodfusion-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.3);
}

.gallery-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: 100%;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(39, 48, 108, 0.85) 0%,
            rgba(229, 113, 18, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 48px;
    margin-bottom: 12px;
    animation: zoomPulse 2s ease-in-out infinite;
}

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

.gallery-overlay-content p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 113, 18, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 113, 18, 0.4);
}

.gallery-btn:active {
    transform: translateY(-1px);
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-indicators {
    display: flex;
    gap: 10px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-indicator:hover {
    background: #94a3b8;
}

.gallery-indicator.active {
    background: linear-gradient(135deg, var(--primary), #d96510);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.foodfusion-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 40px;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 30% 50%,
            rgba(229, 113, 18, 0.2) 0%,
            transparent 70%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.4);
}

.cta-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.cta-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), #d96510);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(229, 113, 18, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 113, 18, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
    .foodfusion-hero {
        height: 500px;
    }

    .foodfusion-page-title {
        font-size: 44px;
    }

    .foodfusion-hero-features {
        gap: 12px;
    }

    .foodfusion-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .intro-visual {
        display: flex;
        justify-content: center;
    }

    .intro-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .thinkers-content-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .foodfusion-hero {
        height: 450px;
    }

    .foodfusion-page-title {
        font-size: 38px;
    }

    .foodfusion-page-subtitle {
        font-size: 17px;
    }

    .intro-visual-card {
        width: 220px;
        height: 220px;
    }

    .visual-icon {
        font-size: 80px;
    }

    .intro-title {
        font-size: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image-wrapper {
        height: 400px;
    }

    .cta-card {
        padding: 50px 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    .foodfusion-hero {
        height: 400px;
    }

    .foodfusion-page-title {
        font-size: 32px;
    }

    .foodfusion-hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-feature-pill {
        width: 100%;
        justify-content: center;
    }

    .intro-visual-card {
        width: 200px;
        height: 200px;
    }

    .visual-icon {
        font-size: 70px;
    }

    .intro-title {
        font-size: 26px;
    }

    .thinkers-title,
    .gallery-title,
    .values-title,
    .cta-title {
        font-size: 28px;
    }

    .mission-title,
    .highlight-title {
        font-size: 26px;
    }

    .gallery-image-wrapper {
        height: 320px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}