/* ========================================
   Altınkum Spot - Ana Stil Dosyası
   Orijinal React Tasarımına Sadık
   ======================================== */

/* CSS Variables - Orijinal Tasarım Renkleri */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding-top: 80px; /* FIXED HEADER OFFSET */
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

/* NAV FIX */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 1rem;

}

/* MENU */
.nav-menu {
    display: flex;
    gap: 2rem;

}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
        margin-left: 100px;
}

.nav-link.active {
    color: #007bff;
}

/* CTA */
.header-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #007bff;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: black;
}

/* HERO */
.page-hero {
    margin-top: 20px;
    padding: 60px 0;
    background: #f8f9fa;
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* GRID SYSTEM FIX */
.about-story-grid,
.mv-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mv-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* CONTACT CARD */
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* FORM */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* ANIMATION FIX */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

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

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 250px;
        height: 100vh;
        padding: 2rem;
        transition: 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
:root {
    --background: #faf8f5;
    --foreground: #1c1917;
    --card: #ffffff;
    --card-foreground: #1c1917;
    --primary: #a67c52;
    --primary-foreground: #faf8f5;
    --secondary: #f3efe9;
    --secondary-foreground: #44403c;
    --muted: #f5f2ed;
    --muted-foreground: #78716c;
    --accent: #c2410c;
    --accent-foreground: #faf8f5;
    --border: #e7e5e4;
    --input: #f3efe9;
    --ring: #a67c52;
    
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    
    --radius: 0.75rem;
    --radius-sm: calc(var(--radius) - 4px);
    --radius-md: calc(var(--radius) - 2px);
    --radius-lg: var(--radius);
    --radius-xl: calc(var(--radius) + 4px);
    --radius-2xl: calc(var(--radius) + 8px);
    --radius-full: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Icons */
.icon-sm {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

/* ========================================
   Header - Orijinal Tasarım
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-slow);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.header.scrolled .header-topbar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.header-topbar {
    border-bottom: 1px solid rgba(231, 229, 228, 0.3);
    transition: all var(--transition-slow);
    max-height: 3rem;
    opacity: 1;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-normal);
}

.topbar-link:hover {
    color: var(--primary);
}

.topbar-location {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .topbar-location {
        display: flex;
    }
}

.topbar-right {
    display: none;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .topbar-right {
        display: block;
    }
}

.header-main {
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-xl);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-icon span {
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-dot {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: var(--radius-full);
    background: var(--accent);
    animation: pulse 2s infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: -0.125rem;
}

/* Navigation Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--foreground);
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--foreground);
    transition: color var(--transition-normal);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-menu-btn .icon-close {
    display: none;
}

.mobile-menu-btn.active .icon-menu {
    display: none;
}

.mobile-menu-btn.active .icon-close {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--foreground);
    border-bottom: 1px solid rgba(231, 229, 228, 0.3);
    transition: color var(--transition-normal);
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-rounded {
    border-radius: var(--radius-full);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--primary) 90%, black);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border-color: var(--foreground);
    color: var(--foreground);
    background: transparent;
}

.btn-outline:hover {
    background: var(--foreground);
    color: var(--background);
}

.btn-white {
    background: var(--background);
    color: var(--foreground);
}

.btn-white:hover {
    background: color-mix(in srgb, var(--background) 90%, black);
    transform: scale(1.05);
}

.btn-outline-white {
    border-color: var(--primary-foreground);
    color: var(--primary-foreground);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--primary-foreground);
    color: var(--primary);
}

.btn-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:url(/assets/hero-bg.jpg) ;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 3s ease-in-out infinite;
}

.hero-blob-1 {
    top: 25%;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(166, 124, 82, 0.1);
}
.color{
    color:white;
}
.hero-blob-2 {
    bottom: 25%;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(194, 65, 12, 0.1);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.hero-badge svg {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--foreground);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(28, 25, 23, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

/* ========================================
   Marquee Section
   ======================================== */
.marquee-section {
    background: var(--primary);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-foreground);
    font-weight: 500;
    font-size: 1.125rem;
    margin: 0 2rem;
}

.marquee-item svg {
    color: var(--primary-foreground);
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 6rem 0;
}

.bg-background {
    background: var(--background);
}

.bg-secondary {
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-title.text-left {
    text-align: left;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary);
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: rgba(166, 124, 82, 0.5);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    padding: 2rem;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-2xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: color var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-card:hover .service-icon svg {
    color: var(--primary-foreground);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ========================================
   Features Section
   ======================================== */
.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.features-content .section-title {
    margin-bottom: 1.5rem;
}

.features-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(166, 124, 82, 0.5);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.testimonial-text {
    color: var(--foreground);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: rgba(166, 124, 82, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--primary);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-circle {
    position: absolute;
    background: var(--background);
    border-radius: 50%;
}

.cta-circle-1 {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    transform: translate(-50%, -50%);
}

.cta-circle-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    transform: translate(50%, 50%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--foreground);
    color: var(--background);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand .logo-light .logo-icon {
    background: var(--primary);
}

.footer-brand .logo-light .logo-title {
    color: var(--background);
}

.footer-desc {
    color: rgba(250, 248, 245, 0.7);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: rgba(250, 248, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(250, 248, 245, 0.7);
    transition: color var(--transition-normal);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(250, 248, 245, 0.7);
}

.footer-contact li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(250, 248, 245, 0.7);
    transition: color var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.5);
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse-glow-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 2rem;
    height: 2rem;
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@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 pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(166, 124, 82, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(166, 124, 82, 0.6);
    }
}

@keyframes pulse-glow-green {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 211, 102, 0.7);
    }
}

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Gallery Page Styles
   ======================================== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.page-hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.search-box {
    position: relative;
    max-width: 28rem;
    margin: 2rem auto 0;
}

.search-box svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}

.search-input::placeholder {
    color: var(--muted-foreground);
}

/* Filters */
.filters-section {
    padding: 2rem 0;
}

.filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.filter-btn svg {
    width: 1rem;
    height: 1rem;
}

.view-buttons {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    transition: all var(--transition-normal);
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.view-btn svg {
    width: 1rem;
    height: 1rem;
}

.results-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-0.5rem);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    z-index: 1;
}

.product-content {
    padding: 1.25rem;
}

.product-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color var(--transition-normal);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 0.5rem 1rem;
    background: rgba(166, 124, 82, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.product-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--muted-foreground);
}

.empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.empty-text {
    color: var(--muted-foreground);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-2xl);
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--foreground);
    color: var(--background);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .modal-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-image {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

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

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    width: fit-content;
}

.modal-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.modal-price-wrapper {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.modal-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.modal-buttons {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.modal-buttons .btn {
    flex: 1;
}

/* ========================================
   About Page Styles
   ======================================== */
.about-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(to bottom, var(--secondary), var(--background));
    overflow: hidden;
}

.about-hero .hero-blob {
    opacity: 0.5;
}

.stats-section {
    background: var(--primary);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: var(--radius-2xl);
    background: rgba(250, 248, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    color: rgba(250, 248, 245, 0.8);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content .section-title {
    text-align: left;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

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

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.4), transparent);
}

.story-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-xl);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-badge-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-foreground);
}

.story-badge-text .stat-value {
    font-size: 1.5rem;
}

/* Vision Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vm-card {
    padding: 2rem;
}

.vm-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-2xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.vm-card:hover .vm-icon {
    background: var(--primary);
}

.vm-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: color var(--transition-normal);
}

.vm-card:hover .vm-icon svg {
    color: var(--primary-foreground);
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.vm-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 2rem;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-2xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: color var(--transition-normal);
}

.value-card:hover .value-icon svg {
    color: var(--primary-foreground);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--border);
    margin-top: 1rem;
}

.timeline-content {
    padding-top: 0.5rem;
}

.timeline-year {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: var(--muted-foreground);
}

/* Commitments */
.commitments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius-xl);
}

.commitment-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.commitment-item span {
    color: var(--foreground);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    display: block;
    padding: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-0.25rem);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-2xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    transition: color var(--transition-normal);
}

.contact-card:hover .contact-icon svg {
    color: var(--primary-foreground);
}

.contact-card-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-card-value {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 0;
    background: var(--secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-card {
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}

.form-textarea {
    resize: none;
    min-height: 8rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-full);
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: scaleIn 0.6s ease-out;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #16a34a;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--muted-foreground);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-card {
    overflow: hidden;
}

.map-wrapper {
    aspect-ratio: 16/9;
    position: relative;
    background: var(--muted);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--primary);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.map-link:hover {
    text-decoration: underline;
}

.map-link svg {
    width: 1rem;
    height: 1rem;
}

.hours-card {
    padding: 1.5rem;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hours-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.hours-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-weight: 500;
    color: var(--foreground);
}

.hours-time {
    color: var(--primary);
    font-weight: 600;
}

.hours-time.closed {
    color: var(--muted-foreground);
    font-weight: 400;
}

.social-card {
    padding: 1.5rem;
}

.social-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.social-grid {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(166, 124, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.social-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    padding: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--muted-foreground);
    line-height: 1.6;
}
/* =========================
   🍎 PREMIUM UI UPGRADE
========================= */

/* Renk sistemi */
:root {
    --primary: #0071e3;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --bg: #f5f5f7;
    --white: #ffffff;
    --border: #e5e5e5;
}

/* Body */
body {
    background: var(--bg);
    color: var(--text);
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
}

/* HEADER GLASS EFFECT */
.header {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* NAV LINK HOVER */
.nav-link {
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* HERO */
.page-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
}

.page-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* CARD DESIGN */
.contact-info-card,
.contact-form-card,
.mv-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

/* Hover efekti */
.contact-info-card:hover,
.contact-form-card:hover,
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ICON */
.contact-info-icon {
    background: #f0f0f0;
    padding: 12px;
    border-radius: 10px;
}

/* BUTTON */
button,
.header-cta {
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-cta {
    background: var(--primary);
}

.header-cta:hover {
    background: #005bb5;
    transform: scale(1.05);
}

/* FORM PREMIUM */
.contact-form input,
.contact-form textarea,
.contact-form select {
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fafafa;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

/* SECTION SPACING */
section {
    padding: 80px 0;
}

/* GRID GAP LUXURY */
.contact-grid {
    gap: 40px;
}

/* SOCIAL ICON */
.social-link-large {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 12px;
    transition: 0.3s;
}

.social-link-large:hover {
    background: #eaeaea;
    transform: scale(1.1);
}

/* FOOTER */
.footer {
    background: #1d1d1f;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #aaa;
}

.footer a:hover {
    color: #fff;
}