/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors - Warm Premium Palette */
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --text-primary: #f5f5f5;
    --text-secondary: #e0e0e0;
    --text-light: #bdbdbd;
    
    /* Accent Colors */
    --accent-brown: #8b6f47;
    --accent-brown-light: #d4c4a8;
    --accent-green: #2d5016;
    --accent-green-light: #e8f5e3;
    --accent-gold: #d4af37;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: linear-gradient(135deg, #4a7c5f 0%, #1f4433 30%, #3d6b4f 60%, #1f4433 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(61, 107, 79, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 68, 51, 0.15) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

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

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

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

/* ============================================
   Container (Wide: almost full width)
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.hero-container {
    max-width: 1400px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-img {
        width: 28px !important;
        height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        min-width: 28px;
        min-height: 28px;
    }

    .logo-link {
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(31, 68, 51, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(45, 90, 61, 0.4);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.logo-img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition-base);
    flex-shrink: 0;
    display: block;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-brown);
    letter-spacing: -0.5px;
    transition: var(--transition-base);
}

.logo-link:hover .logo-text {
    color: var(--accent-gold);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link.active {
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-link-cta {
    background: var(--accent-gold);
    color: var(--accent-green);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
    margin-left: 0.5rem;
}

.nav-link-cta:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Language Toggle Button */
.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-base);
    margin-left: var(--spacing-sm);
    backdrop-filter: blur(10px);
    min-width: 50px;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lang-toggle:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .lang-toggle {
        margin-left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.btn-header {
    padding: 0.75rem 1.5rem;
    background: var(--accent-brown);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

@media (max-width: 968px) {
    .header {
        background: rgba(31, 68, 51, 0.95);
        backdrop-filter: blur(15px);
    }
    
    .logo-text {
        color: var(--accent-gold);
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 999;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        color: var(--accent-green);
        font-weight: 600;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        display: block;
        width: 100%;
        text-align: left;
        transition: var(--transition-base);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(31, 68, 51, 0.1);
        color: var(--accent-green);
    }
    
    .nav-menu .nav-link.active {
        background: rgba(31, 68, 51, 0.15);
        color: var(--accent-green);
    }
    
    .nav-menu .nav-link-cta {
        background: var(--accent-gold);
        color: var(--accent-green);
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .nav-menu .nav-link-cta:hover {
        background: rgba(212, 175, 55, 0.9);
        color: var(--accent-green);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle span {
        background: var(--accent-gold);
        width: 26px;
        height: 3px;
    }
    
    .btn-header {
        display: none;
    }
    
    .lang-toggle {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        color: var(--accent-gold);
        font-weight: 700;
    }
    
    .lang-toggle:hover {
        background: rgba(255, 255, 255, 0.35);
        color: var(--accent-gold);
    }
}

/* ============================================
   Hero Section (COMPACT)
   ============================================ */
.hero {
    padding: calc(80px + 3rem) 0 3rem;
    background: transparent;
    position: relative;
    overflow: visible;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

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

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

/* LEFT: Text Content */
.hero-text {
    z-index: 2;
    max-width: 100%;
}

.eyebrow-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.hero-headline {
    font-family: var(--font-secondary);
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-headline span {
    display: block;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 52ch;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0.75rem 0 0.25rem 0;
    padding: 0.5rem 0;
}

.logo-image {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-image:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    height: 44px;
}

.btn-primary {
    background: var(--accent-brown);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1f4433;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-gold);
    color: #1f4433;
    transform: translateY(-2px);
}

/* Hero Stats (compact, within hero) */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-brown);
    font-family: var(--font-secondary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* CENTER: Portrait + Floating Chips (centered) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: visible;
}

.portrait-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    margin: 0 auto;
}

/* Subtle background blob (Italian themed) */
.portrait-blob {
    position: absolute;
    width: 550px;
    height: 550px;
    background: 
        radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle, rgba(45, 80, 22, 0.06) 0%, transparent 60%);
    border-radius: var(--radius-full);
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.portrait-blob::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(139, 111, 71, 0.02) 10deg,
            transparent 20deg
        );
    border-radius: var(--radius-full);
}

/* Portrait card (larger) */
.portrait-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    height: 620px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-lg);
    padding: 15px;
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.portrait-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.portrait-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.portrait-image.active {
    opacity: 1;
    z-index: 1;
}

.portrait-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-brown);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

/* Floating Chips (clustered: 20-60px from card, smaller) */
.floating-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #1f4433;
    padding: 10px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(31, 68, 51, 0.2);
    display: flex;
    align-items: center;
}

.floating-chip:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(31, 68, 51, 0.4);
    color: #1f4433;
}

/* Connection lines from chips to portrait card */
.chip-line {
    position: absolute;
    background: rgba(139, 111, 71, 0.25);
    z-index: 1;
    pointer-events: none;
}

/* Left side chips - line goes right */
.chip-line-1,
.chip-line-3,
.chip-line-5 {
    width: 50px;
    height: 2px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

/* Right side chips - line goes left */
.chip-line-2,
.chip-line-4,
.chip-line-6 {
    width: 55px;
    height: 2px;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
}

/* Chip Positions (clustered around card: 20-60px) */
.chip-1 {
    top: 8%;
    left: -60px;
    animation: float1 5s ease-in-out infinite;
}

.chip-2 {
    top: 12%;
    right: -65px;
    animation: float2 5.5s ease-in-out infinite 0.5s;
}

.chip-3 {
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    animation: float3 5.2s ease-in-out infinite 1s;
}

.chip-4 {
    top: 55%;
    right: -65px;
    transform: translateY(-50%);
    animation: float4 5.8s ease-in-out infinite 1.5s;
}

.chip-5 {
    bottom: 18%;
    left: -60px;
    animation: float5 5.3s ease-in-out infinite 2s;
}

.chip-6 {
    bottom: 12%;
    right: -65px;
    animation: float6 5.6s ease-in-out infinite 2.5s;
}

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

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

@keyframes float3 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

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

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

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

/* RIGHT: Neden Chef KocaSakal Section */
.hero-why {
    z-index: 2;
    max-width: 100%;
    padding-left: 1rem;
}

.why-emphasis {
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-emphasis p {
    color: var(--text-primary);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.why-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #c53030;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-content {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.why-content p {
    margin-bottom: 1rem;
}

.why-highlight {
    background: var(--accent-brown-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-brown);
    margin: 1.25rem 0;
}

.why-highlight strong {
    color: var(--accent-green);
    font-size: 1.05rem;
}

.why-list {
    list-style: none;
    margin-top: 1rem;
}

.why-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   İmza Lezzetler Section (Premium)
   ============================================ */
.signature-dishes-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
    background: rgba(31, 68, 51, 0.15);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) auto;
    max-width: 1400px;
}

.signature-dishes-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.signature-text {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.signature-description {
    font-family: 'Inter', 'Plus Jakarta Sans', 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.3px;
    margin: 0;
}

.signature-plates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    padding: var(--spacing-md) 0;
}

.signature-plate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: floatSignaturePlate 8s ease-in-out infinite;
}

.signature-plate:nth-child(2) {
    animation-delay: 1s;
}

.signature-plate:nth-child(3) {
    animation-delay: 2s;
}

.signature-plate:nth-child(4) {
    animation-delay: 3s;
}

.signature-plate:nth-child(5) {
    animation-delay: 4s;
}

.signature-plate:nth-child(6) {
    animation-delay: 5s;
}

.signature-plate:nth-child(7) {
    animation-delay: 6s;
}

.signature-plate:nth-child(8) {
    animation-delay: 7s;
}

.signature-plate-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-base);
    position: relative;
}

.signature-plate:hover .signature-plate-image {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

.signature-plate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition-base);
}

.signature-plate:hover .signature-plate-image img {
    transform: scale(1.02);
}

.signature-plate-label {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

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

/* Responsive */
@media (max-width: 968px) {
    .signature-dishes-section {
        margin: var(--spacing-md) var(--spacing-sm);
        padding: var(--spacing-lg) 0;
    }
    
    .signature-plates {
        gap: 20px;
    }
    
    .signature-plate-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 640px) {
    .signature-dishes-section {
        margin: var(--spacing-md) var(--spacing-sm);
        padding: var(--spacing-md) 0;
        border-radius: var(--radius-md);
    }
    
    .signature-dishes-content {
        padding: 0 var(--spacing-sm);
    }
    
    .signature-text {
        margin-bottom: var(--spacing-md);
    }
    
    .signature-plates {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: var(--spacing-md) var(--spacing-sm);
        justify-content: flex-start;
        scrollbar-width: thin;
        scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
    }
    
    .signature-plates::-webkit-scrollbar {
        height: 4px;
    }
    
    .signature-plates::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .signature-plates::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.3);
        border-radius: 2px;
    }
    
    .signature-plate {
        flex-shrink: 0;
        scroll-snap-align: center;
        min-width: 170px;
    }
    
    .signature-plate-image {
        width: 110px;
        height: 110px;
    }
    
    .signature-plate-label {
        font-size: 0.85rem;
    }
}

/* ============================================
   Gallery Section (Horizontal Scroll - Auto Loop)
   ============================================ */
.gallery-section {
    padding: var(--spacing-lg) 0;
    background: rgba(31, 68, 51, 0.3);
    background-image: 
        linear-gradient(180deg, rgba(31, 68, 51, 0.4) 0%, rgba(45, 90, 61, 0.3) 50%, rgba(31, 68, 51, 0.4) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(61, 107, 79, 0.5);
    border-bottom: 2px solid rgba(61, 107, 79, 0.5);
}

.gallery-scroll-wrapper {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-sm) 0;
}

.gallery-scroll {
    display: flex;
    gap: var(--spacing-md);
    overflow: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--spacing-sm) 0;
    cursor: grab;
    will-change: transform;
    width: fit-content;
}

.gallery-scroll-reverse {
    margin-top: var(--spacing-md);
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll:active {
    cursor: grabbing;
}

.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-cream);
    border-radius: var(--radius-full);
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-brown);
    border-radius: var(--radius-full);
}

.gallery-image-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
    background: var(--bg-light);
}

.gallery-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-image-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-tag {
    background: var(--accent-brown);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    background: transparent;
    border-radius: var(--radius-lg);
    max-width: 95%;
    max-height: 95vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-modal-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-track {
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-modal-slide {
    min-width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal-slide.active {
    display: flex;
}

.gallery-modal-slide img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--accent-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-modal-prev {
    left: -25px;
}

.gallery-modal-next {
    right: -25px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.gallery-modal .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--accent-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-modal .modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-modal-prev,
    .gallery-modal-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal .modal-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .gallery-modal-slide img {
        max-height: 85vh;
    }
}


@media (max-width: 768px) {
    .gallery-image-item {
        flex: 0 0 280px;
    }
    
    .gallery-image-item img {
        height: 220px;
    }
    
    .gallery-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: transparent;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-text {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-brown);
    font-weight: 500;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* ============================================
   Floating Buttons (Sticky)
   ============================================ */
.floating-buttons {
    position: fixed;
    right: var(--spacing-md);
    bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    font-size: 1.5rem;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: scale(1.1);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.email-btn {
    background: #c53030;
    color: white;
}

.email-btn:hover {
    background: #a02626;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================
   Fade In Animation
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive (Tablet & Mobile)
   ============================================ */
@media (max-width: 968px) {
    .hero {
        padding: calc(80px + 1.5rem) 0 1.5rem;
        max-height: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        max-width: 100%;
        height: 400px;
    }
    
    .hero-why {
        order: 3;
        max-width: 100%;
    }
    
    .portrait-container {
        max-width: 380px;
        height: 400px;
    }
    
    .portrait-card {
        max-width: 360px;
        height: 380px;
    }
    
    .portrait-blob {
        width: 320px;
        height: 320px;
    }
    
    /* Reposition chips for tablet */
    .chip-1 {
        left: -30px;
    }
    
    .chip-2 {
        right: -35px;
    }
    
    .chip-3 {
        left: -35px;
    }
    
    .chip-4 {
        right: -35px;
    }
    
    .chip-5 {
        left: -30px;
    }
    
    .chip-6 {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(80px + 1rem) 0 1rem;
    }
    
    .hero-headline {
        font-size: clamp(32px, 8vw, 42px);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-cta {
        margin-bottom: 1.25rem;
    }

    .hero-logo {
        margin: 1rem 0;
        justify-content: flex-start;
    }

    .logo-image {
        max-width: 140px;
        max-height: 90px;
        border-radius: 10px;
    }
    
    .btn {
        height: 42px;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .portrait-container {
        max-width: 100%;
        height: 350px;
    }
    
    .portrait-card {
        max-width: 300px;
        height: 330px;
    }
    
    .portrait-blob {
        width: 280px;
        height: 280px;
    }
    
    /* Smaller chips on mobile, repositioned */
    .floating-chip {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .chip-1 {
        top: 5%;
        left: 5px;
    }
    
    .chip-2 {
        top: 10%;
        right: 5px;
    }
    
    .chip-3 {
        top: 45%;
        left: 5px;
    }
    
    .chip-4 {
        top: 50%;
        right: 5px;
    }
    
    .chip-5 {
        bottom: 15%;
        left: 5px;
    }
    
    .chip-6 {
        bottom: 10%;
        right: 5px;
    }
}

/* ============================================
   Accessibility
   ============================================ */
:focus-visible {
    outline: 2px solid var(--accent-brown);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
