/* Foodifest Static Styles */
:root {
    --color-primary: #2E8B57;
    /* Forest Green */
    --color-secondary: #FFD700;
    /* Sunny Yellow */
    --color-accent: #8B4513;
    /* Havana Brown */
    --color-orange: #FF8C00;
    /* Logo Orange */
    --color-bg: #F0FFF0;
    /* Honeydew */
    --color-text: #333333;
    --color-white: #ffffff;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition-fast: 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(46, 139, 87, 0.2);

    --radius-organic: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-secondary);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn:hover {
    background: #FFED4A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: bold;
}

.btn-outline:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

/* Header */
.site-header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 90px;
    width: auto;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    will-change: height, transform;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.site-logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(46, 139, 87, 0.3));
}

/* Scrolled Header State */
.site-header.scrolled .site-logo img {
    height: 60px;
}

body:not(.home) .site-header:not(.scrolled) .nav-links a,
body:not(.home) .site-header:not(.scrolled) .stand-link {
    color: var(--color-text);
}

.site-header.scrolled .nav-links a,
.site-header.scrolled .stand-link {
    color: var(--color-text);
}

.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}

.stand-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.stand-link:hover {
    color: var(--color-orange);
}

.header-cta a {
    display: inline-block;
    background: var(--color-secondary);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 2px solid var(--color-secondary);
    white-space: nowrap;
}

.header-cta a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
    background: #fff;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* Sections */
.festival-date {
    color: var(--color-orange);
    font-weight: bold;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
}

.organic-shape {
    border-radius: var(--radius-organic);
    overflow: hidden;
    position: relative;
}

.hero-section {
    padding: 160px 0 100px;
    text-align: left;
    background: radial-gradient(circle at center, var(--color-bg), #d4edda);
    position: relative;
    overflow: hidden;
}

.page-hero {
    position: relative;
    padding: 180px 0 80px;
    background: var(--color-bg);
    overflow: hidden;
    text-align: center;
    margin-bottom: 0;
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Stand Form */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: -50px;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    /* Hidden on desktop */
    cursor: pointer;
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 9999;
    /* Very high z-index */
    margin-left: auto;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000000;
    /* Pure black for maximum visibility */
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
    background: var(--color-orange);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
    background: var(--color-orange);
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {

    /* Header & Nav */
    .site-header {
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.95);
        /* Always background on mobile */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .site-logo img {
        height: 50px;
    }

    .nav-flex {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .main-navigation.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .header-actions {
        flex-direction: column;
        margin: 0;
        gap: 15px;
    }

    .hamburger {
        display: block;
        /* Show hamburger */
    }

    .nav-links a,
    .stand-link {
        color: #333 !important;
        /* Force dark color on mobile menu */
    }

    .nav-links a:hover,
    .stand-link:hover {
        color: var(--color-primary) !important;
    }

    /* Hero */
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem !important;
    }

    .hero-text p {
        font-size: 1.1rem !important;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    /* Forms */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* General */
    .container {
        padding: 0 20px;
    }

    /* Teaser */
    .future-teaser h2 {
        font-size: 2.5rem !important;
    }

    .future-teaser .teaser-date {
        font-size: 4rem !important;
    }

    /* Festival Cards - Mobile Fix */
    .festival-card {
        flex-direction: column !important;
        gap: 30px !important;
        margin-bottom: 50px !important;
    }

    .fest-img {
        width: 100% !important;
        height: 250px !important;
    }

    .fest-content {
        text-align: center;
        width: 100%;
    }

    .fest-content h3 {
        font-size: 2rem !important;
    }
}



/* Future Teaser Section */
.future-teaser .organic-shape {
    animation: pulse-bg 6s infinite ease-in-out;
}

.future-teaser .teaser-date {
    background: linear-gradient(45deg, var(--color-secondary), #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 0.5s ease;
}

.future-teaser:hover .teaser-date {
    transform: scale(1.05);
}

@keyframes pulse-bg {
    0% {
        transform: translateX(-50%) scale(0.95);
        opacity: 0.1;
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: translateX(-50%) scale(0.95);
        opacity: 0.1;
    }
}

/* Stand Gallery - Premium Design */
.stand-gallery-section {
    padding: 0 0 60px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.stand-gallery-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
    z-index: 0;
}

.stand-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.05;
    z-index: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    /* Safari-compatible border-radius with webkit prefix */
    -webkit-border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

    /* Force GPU rendering for Safari clip */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    /* Ensure overflow hidden works in Safari */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);

    overflow: hidden;
    height: 350px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid #fff;
    position: relative;

    /* Hint for browser to optimize */
    will-change: transform, border-radius;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Specific shapes for variety - with webkit prefixes */
.gallery-item:nth-child(2) {
    -webkit-border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
}

.gallery-item:nth-child(3) {
    -webkit-border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

.gallery-item:hover {
    -webkit-transform: translateY(-15px) rotate(2deg) translateZ(0);
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 50px rgba(46, 139, 87, 0.25);
    border-color: var(--color-secondary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 0.6s ease;
    transition: transform 0.6s ease;
    /* Safari fix: ensure image respects parent border-radius */
    -webkit-border-radius: inherit;
    border-radius: inherit;
}

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

/* Caption Overlay on Hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Countdown Timer Styles */
#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 5px;
}

/* Chic Buttons */
.btn-chic {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d4af37 100%);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-chic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #fff 0%, #eee 100%);
}

.btn-chic-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 13px 38px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-chic-outline:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    #countdown-timer {
        gap: 15px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Info Highlights (Chic Organic Shapes) */
.info-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -30px auto 40px;
    /* Negative margin to overlap slightly or sit close to banner */
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.highlight-item {
    background: #fff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 250px;
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-item i,
.highlight-item .emoji {
    font-size: 1.5rem;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Specific Chic Styles - Unified Orange Theme */
.h-style-1,
.h-style-2,
.h-style-3,
.h-style-4,
.h-style-5,
.h-style-6,
.h-style-7 {
    background: #fdc52c;
    color: #000;
    border: 2px solid #e0ac1c;
    /* Slightly darker shade of #fdc52c */
}

.h-style-1 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.h-style-2 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.h-style-3 {
    border-radius: 50% 50% 60% 40% / 50% 60% 40% 50%;
}

.h-style-4 {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.h-style-5 {
    border-radius: 40% 60% 40% 60% / 40% 50% 50% 60%;
}

.h-style-6 {
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
}

.h-style-7 {
    border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
}

@media (max-width: 768px) {
    .info-highlights {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .highlight-item {
        width: 90%;
        max-width: none;
        border-radius: 50px !important;
        /* Simpler shape for mobile */
        justify-content: center;
    }
}

/* Artist Card Styles */
.artist-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.artist-image {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.artist-info {
    flex: 1;
}

.artist-info h4 {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .artist-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .artist-image {
        margin: 0 auto;
    }
}

/* Game Banner Styles (Foodiefest 4) */
.game-banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-banner-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.game-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.2) 100%);
}

.game-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    z-index: 2;
}

.game-banner-content h3 {
    color: #fdc52c;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.game-banner-content p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    max-width: 650px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.game-surprise-box {
    background: rgba(253, 197, 44, 0.2);
    border-left: 4px solid #fdc52c;
    padding: 12px 20px;
    border-radius: 0 10px 10px 0;
    color: white;
    display: inline-block;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.game-play-btn {
    background: #fdc52c;
    color: #000;
    padding: 15px 40px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(253, 197, 44, 0.4);
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 197, 44, 0.6);
    background: #fff;
}

@media (max-width: 768px) {
    .game-banner-image {
        height: 500px;
        /* Taller on mobile to fit content */
    }

    .game-banner-overlay {
        background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.95) 60%, rgba(26, 26, 46, 1) 100%);
    }

    .game-banner-content {
        padding: 30px 20px;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .game-banner-content h3 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .game-banner-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .game-surprise-box {
        width: 100%;
        border-radius: 10px;
        border-left: none;
        border-top: 3px solid #fdc52c;
        margin-bottom: 25px;
    }
}

/* ========================================
   Katılımcı Firmalar - Logo Slider
   ======================================== */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 50%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.2), transparent);
}

.partners-section h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.partners-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-orange));
    margin: 15px auto 0;
    border-radius: 2px;
}

.logo-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Fade edges for premium look */
.logo-slider-container::before,
.logo-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg), transparent);
}

.logo-slider-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg), transparent);
}

.logo-slider {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.logo-slide {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.logo-slide:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.15);
    border-color: var(--color-secondary);
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }

    .partners-section h2 {
        font-size: 1.8rem;
    }

    .logo-slider {
        gap: 25px;
    }

    .logo-slide {
        width: 90px;
        height: 90px;
        padding: 10px;
        border-radius: 12px;
    }

    .logo-slider-container::before,
    .logo-slider-container::after {
        width: 50px;
    }
}