/* ========== VARIABLES ========== */
:root {
    --primary: #8B4513;
    --primary-dark: #5D2E0C;
    --primary-light: #A0522D;
    --accent: #D2691E;
    --accent-light: #CD853F;
    --cream: #FDF5E6;
    --warm-white: #FFFAF0;
    --stone: #D4C4B0;
    --earth: #6B4423;
    --white: #ffffff;
    --gray-50: #faf9f7;
    --gray-100: #f5f3f0;
    --gray-200: #e8e4de;
    --gray-300: #d4cfc6;
    --gray-400: #a39e94;
    --gray-500: #6b6660;
    --gray-600: #4a4640;
    --gray-700: #33312d;
    --gray-800: #1f1d1a;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--warm-white);
    color: var(--gray-700);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px;
}

/* ========== ANIMATED BACKGROUND ========== */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
}

.particle-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.2) 0%, transparent 70%);
    animation: float1 25s ease-in-out infinite;
}

.particle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.15) 0%, transparent 70%);
    animation: float2 30s ease-in-out infinite;
}

.particle-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(205, 133, 63, 0.2) 0%, transparent 70%);
    animation: float3 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -30px) rotate(90deg); }
    50% { transform: translate(30px, 60px) rotate(180deg); }
    75% { transform: translate(-30px, 30px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 50px) scale(1.1); }
    66% { transform: translate(50px, -25px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(80px, 40px); }
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--stone);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1000;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-bar-item:hover {
    color: var(--accent);
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-600);
    font-weight: 500;
}

.top-bar-right svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-30%, -30%); }
    50% { transform: translate(30%, 30%); }
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

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

.logo-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.6rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

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

/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 0.7rem 1.4rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.mobile-menu-btn svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: var(--warm-white);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--stone);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: var(--cream);
    color: var(--accent);
}

.mobile-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--stone);
}

.mobile-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--earth) 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 46, 12, 0.85) 0%, rgba(139, 69, 19, 0.7) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: heroParticle 25s linear infinite;
}

@keyframes heroParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(210, 105, 30, 0.3);
    border: 1px solid rgba(205, 133, 63, 0.5);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-light) 0%, #DEB887 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 1.25rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
    flex: 1;
    min-width: 110px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-product-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 14px;
    padding: 0.6rem;
    box-shadow: var(--shadow-lg);
    animation: productFloat 4s ease-in-out infinite;
}

.hero-product-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== TRADITION SECTION ========== */
.tradition {
    position: relative;
    padding: 5rem 0;
    background: var(--cream);
    overflow: hidden;
}

.tradition-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.tradition-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    position: relative;
}

.tradition-quote::before,
.tradition-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.tradition-quote::before {
    top: -20px;
    left: -10px;
}

.tradition-quote::after {
    bottom: -40px;
    right: -10px;
}

.tradition-author {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ========== SECTION COMMON STYLES ========== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
    border: 1px solid rgba(210, 105, 30, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-badge-light {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: var(--cream);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PROCESS SECTION ========== */
.process {
    position: relative;
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--stone), var(--accent), var(--primary), var(--stone));
    border-radius: 2px;
    z-index: 0;
}

.process-step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent);
}

.process-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    position: relative;
    padding: 5rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--gray-100);
    max-width: 500px;
    margin: 0 auto;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.product-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--stone) 100%);
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-info {
    padding: 1.75rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-weight {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: var(--cream);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.price-unit {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--cream);
    padding: 0.4rem 0.7rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(210, 105, 30, 0.15);
}

.feature-tag svg {
    width: 14px;
    height: 14px;
}

/* ========== ORIGIN SECTION ========== */
.origin {
    position: relative;
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.origin-visual {
    position: relative;
}

.origin-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.origin-image img {
    width: 100%;
    height: auto;
    display: block;
}

.origin-stat-card {
    position: absolute;
    bottom: -25px;
    right: -15px;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: statFloat 3s ease-in-out infinite;
    border: 2px solid var(--cream);
}

.origin-stat-icon {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.origin-stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.origin-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.origin-stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

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

.origin-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

.origin-features {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.origin-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.origin-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.origin-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.origin-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.origin-feature-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.origin-feature-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========== QUALITY SECTION ========== */
.quality {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    overflow: hidden;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    color: var(--white);
}

.quality-description {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.quality-feature {
    padding: 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.quality-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.quality-feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.quality-feature-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.quality-feature-desc {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.4;
}

.quality-visual {
    position: relative;
}

.quality-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.2);
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== TESTIMONIAL ========== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.75rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.testimonial-author {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.testimonial-author::before {
    content: '';
    width: 25px;
    height: 2px;
    background: var(--accent-light);
}

/* ========== CONTACT SECTION ========== */
.contact {
    position: relative;
    padding: 5rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

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

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

.contact-info {
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-card-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-card-text {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.map-container {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.map-placeholder {
    height: 150px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--stone) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, var(--gray-300) 1px, transparent 0);
    background-size: 16px 16px;
    opacity: 0.3;
}

.map-placeholder svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    animation: mapPin 2s ease-in-out infinite;
}

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

.map-placeholder span {
    font-weight: 600;
    color: var(--primary);
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.map-address {
    margin-top: 0.75rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ========== CTA SECTION ========== */
.cta {
    position: relative;
    padding: 4rem 0;
    background: var(--cream);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: var(--gray-600);
    font-size: 1rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.3rem;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo-subtitle {
    font-size: 0.6rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-light);
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .process-timeline::before {
        display: none;
    }

    .origin-content,
    .quality-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .quality-content {
        text-align: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .navbar .btn-primary {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .quality-features {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .tradition-quote {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}
