/* Short, bulleted mobile/tablet nav menu */
@media (max-width: 1023px) {
    .nav-menu-short {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        min-width: 180px;
        max-width: 90vw;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        z-index: 2000;
        padding: 12px 0;
        border-radius: var(--radius-md);
        animation: slideInMenu 0.4s cubic-bezier(0.4,0,0.2,1);
        margin: 0;
    }
    .nav-menu-short li {
        display: flex;
        align-items: center;
        padding: 0 18px;
        min-height: 44px;
        border-bottom: 1px solid var(--gray);
        font-size: var(--text-base);
        background: none;
    }
    .nav-menu-short li:last-child {
        border-bottom: none;
    }
    .nav-bullet {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        margin-right: 12px;
    }
    .nav-menu-short .nav-link {
        color: var(--primary-dark);
        padding: 0;
        background: none;
        border: none;
        width: auto;
        text-align: left;
        min-height: 44px;
        font-size: var(--text-base);
        transition: color 0.2s;
    }
    .nav-menu-short .nav-link:hover,
    .nav-menu-short .nav-link:focus-visible {
        color: var(--accent);
        background: none;
    }
    .nav-menu-short .nav-btn {
        margin: 10px 0 0 20px;
        width: calc(100% - 40px);
        justify-content: center;
        font-size: var(--text-base);
        min-height: 44px;
    }
}
/* ==========================================
   PENUEL CHOCOLATE - FULLY RESPONSIVE CSS
   ========================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --primary: #8B4513;
    --primary-dark: #5D2E0F;
    --primary-light: #A0522D;
    --secondary: #D2691E;
    --accent: #F4A460;
    --gold: #DAA520;
    --cream: #FFF8DC;
    --dark: #2C1810;
    --text: #3E2723;
    --text-light: #6D4C41;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    
    /* Status Colors */
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    --gradient-gold: linear-gradient(135deg, #DAA520 0%, #F4A460 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 20px rgba(139, 69, 19, 0.3);
    
    /* Typography - Fluid Scaling */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
    --text-5xl: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: clamp(14px, 12px + 0.5vw, 18px);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1rem;
}

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;
    touch-action: manipulation;
}

ul {
    list-style: none;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

section {
    padding: clamp(60px, 12vw, 100px) 0;
    position: relative;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.cocoa-bean {
    width: clamp(60px, 15vw, 100px);
    height: clamp(60px, 15vw, 100px);
    margin: 0 auto 30px;
    position: relative;
    animation: rotate 2s linear infinite;
}

.bean-half {
    width: 50%;
    height: 100%;
    background: var(--cream);
    position: absolute;
    border-radius: 50px;
}

.bean-left {
    left: 0;
    transform-origin: right center;
    animation: beanLeft 1.5s ease-in-out infinite;
}

.bean-right {
    right: 0;
    transform-origin: left center;
    animation: beanRight 1.5s ease-in-out infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

@keyframes beanLeft {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes beanRight {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(-180deg); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--cream);
    margin-bottom: 20px;
}

.progress-bar {
    width: clamp(150px, 40vw, 200px);
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: var(--cream);
    border-radius: var(--radius-full);
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(10px, 2vw, 15px) 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1000;
    transition: all var(--transition-base);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* Desktop: logo left, menu right, all items on one line, no wrap */
@media (min-width: 1024px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(10px, 3vw, 20px);
    }
    .nav-logo {
        justify-content: flex-start;
        flex: 0 0 auto;
    }
    .nav-menu-wrapper {
        flex: 1 1 auto;
        display: flex;
        justify-content: flex-end;
        min-width: 0;
    }
    .nav-menu {
        display: flex;
        align-items: center;
        gap: clamp(24px, 3vw, 40px);
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .nav-link {
        white-space: nowrap;
        padding: 8px 0;
        font-size: var(--text-base);
        font-family: var(--font-body);
        font-weight: 500;
        position: relative;
        transition: color 0.2s, transform 0.2s;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-gold);
        border-radius: 2px;
        transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--accent);
        transform: scale(1.08);
    }
    .nav-link:hover::after,
    .nav-link:focus-visible::after,
    .nav-link.active::after {
        width: 100%;
    }
    .hamburger {
        display: none !important;
    }
}

/* Tablet: hamburger menu only, no multi-line */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex !important;
    }
    .nav-menu-wrapper.open .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        z-index: 2000;
        padding: 24px 0;
        gap: 0;
    }
    .nav-link {
        color: var(--primary-dark);
        padding: 18px 32px;
        font-size: var(--text-lg);
        border-bottom: 1px solid var(--gray);
        width: 100%;
        text-align: left;
        transition: background 0.2s, color 0.2s;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        background: var(--gray);
        color: var(--accent);
    }
}

/* Mobile: hamburger, full screen or slide-in menu */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex !important;
        z-index: 2001;
    }
    .nav-menu-wrapper.open .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        z-index: 3000;
        padding: 80px 0 0 0;
        gap: 0;
        animation: slideInMenu 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    @keyframes slideInMenu {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .nav-link {
        color: var(--primary-dark);
        padding: 18px 32px;
        font-size: var(--text-lg);
        border-bottom: 1px solid var(--gray);
        width: 100%;
        text-align: left;
        transition: background 0.2s, color 0.2s;
        min-height: 44px;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        background: var(--gray);
        color: var(--accent);
    }
}

/* Hamburger accessibility and animation */
.hamburger[aria-expanded="true"] span {
    background: var(--primary);
}
.hamburger:focus-visible {
    outline: 2px solid var(--primary);
}

/* Prevent nav item wrapping */
.nav-link {
    white-space: nowrap;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: clamp(8px, 1.5vw, 12px) 0;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 20px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-base);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.navbar.scrolled .nav-logo {
    color: var(--primary-dark);
    text-shadow: none;
}

.logo-img {
    width: clamp(35px, 8vw, 50px);
    height: clamp(35px, 8vw, 50px);
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition-base);
    display: block;
    background: rgba(255, 255, 255, 0.1);
}

.logo-img[src=""],
.logo-img:not([src]) {
    background: var(--gradient-gold);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 35px);
    flex-wrap: nowrap;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: var(--transition-base);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    padding: 8px 0;
    white-space: nowrap;
}

.navbar.scrolled .nav-link {
    color: var(--text);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--accent);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus-visible,
.navbar.scrolled .nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    flex-shrink: 0;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 1.5vw, 13px) clamp(12px, 2.5vw, 26px);
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    box-shadow: 0 4px 15px rgba(244,164,96,0.4);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left var(--transition-base);
}

.nav-btn:hover,
.nav-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,164,96,0.6), var(--shadow-glow);
}

.nav-btn:hover::before,
.nav-btn:focus-visible::before {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    background: transparent;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu-close {
    display: none;
}

/* ========== HERO SECTION - FULLY RESPONSIVE ========== */
.hero {
    min-height: 80vh;
    min-height: 80dvh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12dvh, 130px) 0 clamp(30px, 5dvh, 50px);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    background-color: var(--primary-dark);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

/* Hero slide images */
.hero-slide:nth-child(1) {
    background-image: url('img/home-one.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('img/home-six.jpg');
}

.hero-slide:nth-child(3) {
    background-image: url('img/home-three.png');
}

.hero-slide:nth-child(4) {
    background-image: url('img/new\ bg.jpg');
}

.hero-slide:nth-child(5) {
    background-image: url('img/home-five.png');
}

/* Responsive background positioning */
@media (min-width: 1200px) {
    .hero-slide {
        background-position: 65% center;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-slide {
        background-position: 55% center;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        background-position: center center;
    }
}

/* Gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Desktop overlay - horizontal gradient */
@media (min-width: 768px) {
    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }
}

/* Mobile overlay - vertical gradient */
@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-particles span {
    position: absolute;
    width: clamp(10px, 3vw, 20px);
    height: clamp(10px, 3vw, 20px);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 15s linear infinite;
    opacity: 0.5;
}

.floating-particles span[data-i="1"] { animation: float 15s linear infinite; top: -10%; left: 10%; }
.floating-particles span[data-i="2"] { animation: float 20s linear infinite; top: -20%; left: 20%; }
.floating-particles span[data-i="3"] { animation: float 25s linear infinite; top: -30%; left: 30%; }
.floating-particles span[data-i="4"] { animation: float 30s linear infinite; top: -40%; left: 40%; }
.floating-particles span[data-i="5"] { animation: float 35s linear infinite; top: -50%; left: 50%; }
.floating-particles span[data-i="6"] { animation: float 40s linear infinite; top: -60%; left: 60%; }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: clamp(300px, 90vw, 650px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 2vw, 10px);
    padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 24px);
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    margin-bottom: clamp(15px, 4vw, 30px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--gold);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(15px, 4vw, 25px);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 1vw, 5px);
}

.hero-title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: clamp(25px, 6vw, 40px);
    color: rgba(255, 255, 255, 0.9);
    max-width: clamp(280px, 85vw, 600px);
}

.hero-buttons {
    display: flex;
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
}

/* ========== ENHANCED BUTTON STYLES ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 10px);
    padding: clamp(10px, 2vw, 16px) clamp(16px, 4vw, 32px);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    will-change: transform;
}

/* Ripple Effect on Click */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Shimmer Effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before,
.btn:active::before {
    width: 400px;
    height: 400px;
}

.btn:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* Icon Animation */
.btn i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn:active i {
    transform: scale(0.95);
}

/* Primary Button with Gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
    color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 0 rgba(139, 69, 19, 0);
    border: 2px solid transparent;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 69, 19, 0.3), 0 0 60px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--white) 100%);
    border-color: rgba(139, 69, 19, 0.1);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
    box-shadow: var(--shadow-md), 0 0 20px rgba(139, 69, 19, 0.2);
    transition: all 0.1s ease;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.6);
    border-color: var(--white);
}

.btn-outline:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-stats-container {
    margin-top: clamp(40px, 8vw, 60px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: clamp(280px, 90vw, 700px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 4vw, 30px);
    padding: 0;
    background: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-radius: 0;
    border: none;
    flex-wrap: wrap;
}
    .hero-stats {
        background: transparent !important;
    }

.stat {
    flex: 1;
    text-align: center;
    padding: clamp(5px, 2vw, 10px);
    min-width: clamp(80px, 25vw, 150px);
}

.stat-icon {
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
    margin: 0 auto clamp(8px, 2vw, 12px);
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--white);
}

.stat h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    margin-bottom: clamp(3px, 1vw, 5px);
    color: var(--white);
}

.stat p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: clamp(40px, 10vw, 60px);
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(6px, 2vw, 8px) clamp(12px, 4vw, 20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 30px;
}

.chevron {
    position: absolute;
    width: 20px;
    height: 8px;
    opacity: 0;
    animation: chevronMove 2s ease-out infinite;
}

.chevron:nth-child(1) {
    animation-delay: 0s;
}

.chevron:nth-child(2) {
    animation-delay: 0.15s;
}

.chevron:nth-child(3) {
    animation-delay: 0.3s;
}

.chevron::before,
.chevron::after {
    content: '';
    position: absolute;
    top: 0;
    height: 2px;
    width: 12px;
    background: var(--white);
    border-radius: 2px;
}

.chevron::before {
    left: 0;
    transform: rotate(45deg);
    transform-origin: right;
}

.chevron::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: left;
}

@keyframes chevronMove {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* Mobile responsive adjustments for hero */
@media (max-width: 767px) {
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 320px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vw, 80px);
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 24px);
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: clamp(15px, 4vw, 25px);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(244,164,96,0.3);
}

.section-header:hover .section-tag {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244,164,96,0.5);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: clamp(15px, 3vw, 20px);
    transition: var(--transition-base);
}

.section-header.light .section-title,
.section-header.light .section-tag {
    color: var(--white);
}

.section-description,
.section-desc {
    font-size: var(--text-base);
    color: var(--text-light);
    max-width: clamp(280px, 85vw, 600px);
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-base);
    margin-top: clamp(10px, 2vw, 15px);
}

.section-tagline {
    font-size: var(--text-xl);
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
    margin-top: clamp(8px, 2vw, 10px);
    letter-spacing: 0.5px;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    background: var(--gray);
    padding-top: 30px !important;
    padding-bottom: 0px !important;
}

.products .section-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, clamp(250px, 40vw, 300px)), 1fr));
    gap: clamp(20px, 5vw, 40px);
    
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
    border: 2px solid var(--primary);
}

.product-card.featured {
    border: 3px solid var(--gold);
}

.product-badge {
    position: absolute;
    top: clamp(12px, 3vw, 20px);
    right: clamp(12px, 3vw, 20px);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.product-badge.premium {
    background: var(--gradient-gold);
}

.product-image {
    position: relative;
    height: clamp(220px, 40vw, 280px);
    overflow: hidden;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(10px, 3vw, 15px);
    transition: transform var(--transition-slow);
    max-width: 100%;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: clamp(20px, 5vw, 30px);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: clamp(8px, 2vw, 10px);
    color: var(--dark);
}

.product-cocoa {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: clamp(6px, 1.5vw, 8px);
}

.product-desc {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: clamp(15px, 3vw, 20px);
}

/* Product Card Button Enhanced Styles */
.product-info .btn {
    width: 100%;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-info .btn::before {
    background: rgba(255, 255, 255, 0.25);
}

.product-info .btn:hover,
.product-info .btn:focus-visible {
    background: linear-gradient(135deg, #5D2E0F 0%, #8B4513 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4), 0 0 30px rgba(218, 165, 32, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-info .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.about .section-header {
    margin-bottom: 10px !important;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    padding-top: 30px !important;

}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 8vw, 60px);
    
}

.about-main-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-main-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(139, 69, 19, 0.2), 0 0 80px rgba(218, 165, 32, 0.1);
}

.about-main-card:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .about-main-card {
        grid-template-columns: 1fr 1.2fr;
    }
}

.about-image-container {
    position: relative;
    overflow: hidden;
}

.about-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.about-main-card:hover .about-image-container::after {
    opacity: 1;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: clamp(250px, 50vw, 500px);
    overflow: hidden;
    background: var(--gray);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    will-change: transform;
}

.about-main-card:hover .about-image img {
    transform: scale(1.1) rotate(1deg);
}

.about-badge {
    position: absolute;
    bottom: clamp(15px, 4vw, 30px);
    left: clamp(15px, 4vw, 30px);
    display: flex;
    align-items: center;
    gap: clamp(6px, 2vw, 10px);
    padding: clamp(10px, 3vw, 15px) clamp(15px, 4vw, 25px);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--primary);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.about-main-card:hover .about-badge {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(40, 167, 69, 0.3);
    border-color: rgba(40, 167, 69, 0.2);
}

.about-badge i {
    color: var(--success);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: leafFloat 3s ease-in-out infinite;
}

.about-main-card:hover .about-badge i {
    transform: rotate(360deg) scale(1.2);
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.about-text-container {
    padding: clamp(30px, 6vw, 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary);
    margin-bottom: clamp(15px, 3vw, 20px);
    position: relative;
    padding-bottom: clamp(10px, 2vw, 15px);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main-card:hover .about-heading::after,
.about-heading::after {
    width: clamp(40px, 10vw, 60px);
    animation: expandWidth 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: clamp(40px, 10vw, 60px); }
}

.about-text-container .lead {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: clamp(15px, 3vw, 20px);
    line-height: 1.8;
}

.about-text-container p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: clamp(15px, 4vw, 25px);
}

.export-quality {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(218, 165, 32, 0.08) 100%);
    padding: clamp(15px, 4vw, 20px) clamp(18px, 5vw, 25px);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin: clamp(10px, 2vw, 10px) 0 clamp(20px, 4vw, 25px);
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 3vw, 15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.export-quality::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(139, 69, 19, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.export-quality:hover {
    transform: translateX(8px);
    border-left-width: 6px;
    box-shadow: 0 8px 25px rgba(218,165,32,0.2);
}

.export-quality:hover::before {
    opacity: 1;
}

.export-quality i {
    font-size: var(--text-2xl);
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.export-quality:hover i {
    transform: rotate(360deg) scale(1.15);
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
}

.export-quality div {
    display: flex;
    flex-direction: column;
    gap: clamp(3px, 1vw, 5px);
}

.export-quality strong {
    font-size: var(--text-base);
    color: var(--primary);
}

.export-quality span {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.6;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 12px);
    margin-top: clamp(8px, 2vw, 10px);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    background: var(--gray);
    padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cert-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 69, 19, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-badge:hover {
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(218,165,32,0.3), 0 0 30px rgba(218,165,32,0.2);
    background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
}

.cert-badge:hover::before {
    opacity: 1;
}

.cert-badge i {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.cert-badge:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.cert-badge span {
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    font-weight: 600;
    color: var(--dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.cert-badge:hover span {
    color: var(--primary);
}

/* Features Section */
.features-section {
    text-align: center;
    position: relative;
    padding: clamp(20px, 4vw, 30px);
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    opacity: 0;
    animation: slideDown 0.8s ease forwards;
    animation-delay: 0.3s;
}

.features-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(218, 165, 32, 0.05) 50%,
        transparent 70%
    );
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.features-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary);
    margin-bottom: clamp(25px, 5vw, 35px);
    margin-top: clamp(15px, 3vw, 20px);
    position: relative;
    display: inline-block;
    padding: 0 clamp(15px, 3vw, 20px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.features-title::before,
.features-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
}

.features-title::before {
    right: 100%;
    margin-right: 10px;
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.8s;
}

.features-title::after {
    left: 100%;
    margin-left: 10px;
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, clamp(200px, 40vw, 250px)), 1fr));
    gap: clamp(15px, 4vw, 25px);
    perspective: 1000px;
}

/* Staggered animation for feature boxes */
.feature-box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpBox 0.6s ease forwards;
}

.feature-box:nth-child(1) { animation-delay: 0.4s; }
.feature-box:nth-child(2) { animation-delay: 0.6s; }
.feature-box:nth-child(3) { animation-delay: 0.8s; }
.feature-box:nth-child(4) { animation-delay: 1s; }

@keyframes fadeInUpBox {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box {
    padding: clamp(25px, 5vw, 35px) clamp(20px, 4vw, 25px);
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(218, 165, 32, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-box:hover,
.feature-box:focus-within {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2), 0 0 40px rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.3);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: clamp(55px, 12vw, 70px);
    height: clamp(55px, 12vw, 70px);
    margin: 0 auto clamp(15px, 3vw, 20px);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-gold);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover .feature-icon-wrap {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.4), 0 0 30px rgba(218, 165, 32, 0.3);
}

.feature-box:hover .feature-icon-wrap::after {
    opacity: 1;
}

.feature-icon-wrap i {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--white);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-box:hover .feature-icon-wrap i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.feature-box h4 {
    font-size: var(--text-lg);
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: clamp(10px, 2vw, 12px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-box:hover h4 {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.feature-box p {
    font-size: var(--text-sm);
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-box:hover p {
    color: var(--text);
}

/* ========== STORY SECTION ========== */
.story {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 30px  !important;
    padding-bottom: 0px !important;
    margin-bottom: 10px !important;
}

.story .section-header {
    margin-bottom: 10px !important;
}

.story .timeline {
    margin-top: 0 !important;
}


.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(210, 105, 30, 0.12) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.timeline {
    max-width: clamp(300px, 90vw, 900px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    left: clamp(20px, 5vw, 50%);
    transform: translateX(0);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 0;
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    display: flex;
    gap: clamp(15px, 5vw, 40px);
    margin-bottom: clamp(50px, 10vw, 80px);
    position: relative;
    z-index: 1;
    flex-direction: column;
    padding-left: clamp(70px, 15vw, 120px);
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.timeline-icon {
    width: clamp(50px, 12vw, 80px);
    height: clamp(50px, 12vw, 80px);
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(244,164,96,0.4);
    z-index: 2;
    transition: var(--transition-base);
    border: 3px solid rgba(255,255,255,0.3);
    position: absolute;
    left: 0;
    top: 0;
}

@media (min-width: 768px) {
    .timeline-icon {
        position: static;
    }
}

.timeline-item:hover .timeline-icon,
.timeline-item:focus-within .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(244,164,96,0.6);
}

.timeline-content {
    flex: 1;
    padding: clamp(20px, 5vw, 30px);
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.25);
    transition: all var(--transition-base);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.timeline-item:hover .timeline-content,
.timeline-item:focus-within .timeline-content {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    margin-bottom: clamp(10px, 3vw, 15px);
    color: var(--accent);
    font-weight: 700;
}

.timeline-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.9;
    opacity: 0.95;
    font-weight: 400;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials{
    background: linear-gradient(135deg, #3D251A 0%, #4D2F1E 25%, #5D3924 50%, #4D2F1E 75%, #3D251A 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 10vw, 80px) clamp(20px, 5vw, 30px);
    padding: 20px 0 60px 0 !important;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(210, 105, 30, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-header {
    margin-bottom: 10px !important;
    position: relative;
    z-index: 1;
    padding-bottom: 10px !important;
}

.testimonials .section-tag {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(244, 164, 96, 0.4);
}

.testimonials .section-title {
    color: var(--white);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
}

.testimonial-card-inner {
    height: 100%;
    padding: 35px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-8px);
    border-color: rgba(248, 130, 27, 0.3);
    box-shadow: 0 20px 50px rgba(138, 78, 3, 0.3);
}

/* Featured Card - Same size as others */
.testimonial-featured .testimonial-card-inner {
    background: linear-gradient(145deg, rgba(244,164,96,0.15) 0%, rgba(210,105,30,0.08) 100%);
    border-color: rgba(244, 164, 96, 0.2);
}

/* Quote Badge */
.quote-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(244,164,96,0.3);
}

.quote-badge i {
    font-size: var(--text-lg);
    color: var(--white);
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: var(--text-base);
    filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}

/* Testimonial Text */
.testimonial-card .testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Author Section */
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card .author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(244,164,96,0.3);
    flex-shrink: 0;
}

.testimonial-card .author-info h4 {
    font-size: var(--text-base);
    color: var(--white);
    margin: 0 0 4px 0;
    font-weight: 600;
    font-family: var(--font-display);
}

.testimonial-card .author-info p {
    font-size: var(--text-xs);
    color: var(--accent);
    margin: 0;
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding: 35px 50px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card-inner {
        padding: 25px;
    }
    
    .testimonials .section-header {
        margin-bottom: 40px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 25px;
        padding: 25px 30px;
    }
    
    .trust-divider {
        width: 80%;
        height: 1px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonial-card-inner {
        padding: 20px;
    }
    
    .quote-badge {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }
    
    .testimonial-card .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .testimonial-card .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        padding: 20px;
        margin-top: 40px;
    }
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 25%, #fdf6e9 50%, #fff8f0 75%, #fef9f3 100%);
    position: relative;
    overflow: hidden;
    padding: 30px !important;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(218, 165, 32, 0.04) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.contact .section-tag {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.contact .section-title {
    color: var(--dark);
}

.contact .section-title .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.2));
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.contact .section-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.contact-form-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(20px, 4vw, 25px);
    align-items: stretch;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 25px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.08), 
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(218, 165, 32, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15), 
                0 8px 20px rgba(218, 165, 32, 0.1),
                0 0 40px rgba(139, 69, 19, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(218, 165, 32, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.contact-card-icon {
    width: clamp(45px, 10vw, 52px);
    height: clamp(45px, 10vw, 52px);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(218, 165, 32, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: clamp(12px, 2.5vw, 15px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    flex-shrink: 0;
}

.contact-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: clamp(10px, 2vw, 12px);
    width: 100%;
}

.contact-card-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--dark);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: 0;
}

.contact-card:hover .contact-card-header h3 {
    color: var(--primary);
}

.contact-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3), 0 0 40px rgba(218, 165, 32, 0.2);
}

.contact-card:hover .contact-card-icon::before {
    opacity: 1;
}

.contact-card-icon i {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-card-icon i {
    color: var(--white);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.5vw, 8px);
    width: 100%;
    padding-left: 0;
}

.contact-card-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--dark);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: 0;
}

.contact-card:hover .contact-card-content h3 {
    color: var(--primary);
}

.contact-card-content p {
    font-size: clamp(0.85rem, 1.9vw, 0.92rem);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-card:hover .contact-card-content p {
    color: var(--text);
}

.contact-link {
    font-size: clamp(0.82rem, 1.8vw, 0.88rem);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-decoration: none;
    padding: clamp(2px, 0.5vw, 4px) 0;
    line-height: 1.5;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-link:hover::after {
    width: 100%;
}

/* Ensure cards have consistent heights */
.contact-card {
    min-height: clamp(130px, 28vw, 160px);
}

.contact-note {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(5px, 1.2vw, 7px);
    font-size: clamp(0.72rem, 1.5vw, 0.78rem);
    color: var(--primary);
    margin-top: clamp(4px, 1vw, 6px);
    padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2.2vw, 12px);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(218, 165, 32, 0.08));
    border-radius: 25px;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    align-self: flex-start;
    line-height: 1.5;
}

.contact-card:hover .contact-note {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(218, 165, 32, 0.12));
    border-color: rgba(139, 69, 19, 0.25);
    transform: translateY(-2px);
}

.contact-note i {
    font-size: clamp(0.75rem, 1.5vw, 0.8rem);
    flex-shrink: 0;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-card-highlight {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #D2691E 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 45px rgba(139, 69, 19, 0.25), 
                0 4px 15px rgba(0, 0, 0, 0.1),
                0 0 60px rgba(218, 165, 32, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card-highlight::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(218, 165, 32, 0.15) 100%);
    opacity: 1;
}

.contact-card-highlight:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 70px rgba(139, 69, 19, 0.35), 
                0 10px 30px rgba(218, 165, 32, 0.2),
                0 0 80px rgba(218, 165, 32, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-card-highlight .contact-card-icon {
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-card-highlight .contact-card-icon::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(218, 165, 32, 0.3));
}

.contact-card-highlight .contact-card-icon i {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-card-highlight:hover .contact-card-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.3);
}

.contact-card-highlight h3,
.contact-card-highlight .contact-link,
.contact-card-highlight p {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-card-highlight .contact-link::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), var(--gold));
}

.badge-fastest {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #F4A460 100%);
    color: var(--white);
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    font-weight: 700;
    padding: clamp(5px, 1.2vw, 6px) clamp(12px, 2.5vw, 14px);
    border-radius: 20px;
    margin-top: clamp(10px, 2.5vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Form */
.contact-form-container {
    max-width: clamp(300px, 90vw, 850px);
    margin: 0 auto;
    width: 100%;
    margin-top: 0 !important;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: clamp(35px, 8vw, 55px);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 60px rgba(139, 69, 19, 0.12), 
                0 5px 20px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02) 0%, rgba(218, 165, 32, 0.03) 100%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 40px);
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.8vw, 1.8rem);
    color: var(--dark);
    margin-bottom: clamp(10px, 2.5vw, 12px);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.form-header p {
    color: var(--text-light);
    font-size: clamp(0.95rem, 2.2vw, 1rem);
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(15px, 3vw, 20px);
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-alert {
    padding: clamp(12px, 3vw, 15px) clamp(15px, 4vw, 20px);
    margin-bottom: clamp(15px, 3vw, 20px);
    border-radius: var(--radius-md);
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease-out;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.form-alert.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: clamp(20px, 4vw, 25px);
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(6px, 1.5vw, 8px);
    flex-wrap: wrap;
    gap: 8px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: clamp(6px, 1.5vw, 8px);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.char-counter {
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    color: var(--text-light);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: clamp(12px, 3vw, 16px) clamp(14px, 3.5vw, 18px);
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: clamp(0.95rem, 2vw, 1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(139, 69, 19, 0.3);
    background: rgba(255, 252, 248, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(139, 69, 19, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.08), 
                0 4px 12px rgba(139, 69, 19, 0.12),
                inset 0 1px 2px rgba(139, 69, 19, 0.05);
    transform: translateY(-2px);
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: #bbb;
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.contact-form input.success,
.contact-form textarea.success {
    border-color: var(--success);
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: clamp(100px, 20vw, 120px);
    font-family: inherit;
}

.form-error {
    display: block;
    color: var(--error);
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    margin-top: clamp(4px, 1vw, 6px);
    min-height: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-form .btn-submit {
    margin-top: clamp(12px, 3vw, 15px);
    width: 100%;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: clamp(12px, 3vw, 16px) clamp(24px, 6vw, 32px);
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.25);
    transition: all 0.3s ease;
}

.contact-form .btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-full);
}

.contact-form .btn-submit:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 69, 19, 0.4), 0 0 60px rgba(218, 165, 32, 0.2);
    background: linear-gradient(135deg, #A0522D 0%, #D2691E 100%);
}

.contact-form .btn-submit:hover:not(:disabled)::before {
    opacity: 1;
}

.contact-form .btn-submit:active:not(:disabled) {
    transform: translateY(-2px) scale(1);
    box-shadow: var(--shadow-md);
    transition: all 0.1s ease;
}

.contact-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-form .btn-submit i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form .btn-submit:hover:not(:disabled) i {
    transform: rotate(360deg) scale(1.1);
}

.contact-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.contact-decoration-1 {
    width: clamp(200px, 40vw, 400px);
    height: clamp(200px, 40vw, 400px);
    background: radial-gradient(circle, rgba(139, 69, 19, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.contact-decoration-2 {
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

/* Contact Section Responsive Fixes */
@media (max-width: 768px) {
    .contact-card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-card-icon {
        margin-bottom: 12px;
        margin-right: 0;
    }
    
    .contact-card-header h3 {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
    }
    
    .contact-link {
        white-space: normal;
        word-break: break-all;
        max-width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        min-height: 140px;
        padding: 20px;
    }
    
    .contact-note {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 18px 16px;
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-card-icon i {
        font-size: 1.1rem;
    }
    
    .contact-card-header h3 {
        font-size: 1rem;
    }
    
    .contact-card-content p {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.82rem;
    }
    
    .badge-fastest {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-top: 8px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .contact-form .btn-submit {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 30px 0 20px;
    background: linear-gradient(135deg, #2C1810 0%, #3D251A 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 60px;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background: rgba(255, 255, 255, 0.1); /* Fallback background */
}

/* Fallback for missing footer logo */
.footer-logo[src=""],
.footer-logo:not([src]) {
    background: var(--gradient-gold);
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.1) rotate(5deg);
}

.footer-logo-link span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links Wrapper */
.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact ul li i {
    width: 18px;
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--accent);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo-link {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        grid-column: auto;
    }
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float {
    position: fixed;
    bottom: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition-base);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.back-to-top {
    position: fixed;
    bottom: clamp(80px, 15vw, 100px);
    right: clamp(20px, 4vw, 30px);
    width: clamp(45px, 10vw, 50px);
    height: clamp(45px, 10vw, 50px);
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    transform: translateY(-5px);
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ========== BUTTON ANIMATION KEYFRAMES ========== */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(139, 69, 19, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes buttonPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Add pulse effect to premium buttons */
.btn-primary:focus-visible {
    animation: pulse 1.5s infinite;
}

.product-card.featured .btn {
    animation: pulse 2s infinite;
}

/* ========== TABLET & MOBILE SPECIFIC ========== */
@media (max-width: 1024px) {
    /* Tablet specific hamburger menu */
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 1001;
        padding-top: 80px;
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu-wrapper.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 0;
        width: 100%;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-link {
        display: block;
        padding: 18px 30px;
        color: var(--text);
        text-shadow: none;
        font-size: var(--text-base);
        white-space: normal;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--gray);
        color: var(--primary);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-menu-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        color: var(--white);
        font-size: 1.5rem;
        align-items: center;
        justify-content: center;
        transition: var(--transition-base);
        border: none;
        cursor: pointer;
    }
    
    .nav-menu-close:hover,
    .nav-menu-close:focus-visible {
        transform: rotate(90deg);
        background: var(--primary-dark);
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .nav-actions {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .hamburger,
    .whatsapp-float,
    .back-to-top,
    .floating-particles,
    .preloader {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    img {
        page-break-inside: avoid;
    }
}