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

:root {
    --primary: #1B5E3F;
    --primary-dark: #0F3F2B;
    --secondary: #D4AF37;
    --accent: #2D8B5F;
    --bg-cream: #FFFFFF;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --text-muted: #888888;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 12px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    display: inline-block;
    height: 35px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

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

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ===== ANNOUNCEMENT STRIP ===== */
.announcement-strip {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 15px 15px 15px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1000;
    margin-top: 58px;
    animation: slideDown 0.5s ease;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 10px;
}

.announcement-strip i {
    font-size: 1rem;
    flex-shrink: 0;
}

.announcement-strip span {
    line-height: 1.3;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.stat {
    color: var(--text-dark);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dark);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(106, 62, 127, 0.6);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.5);
}

.btn-full {
    width: 100%;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-ctas .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 5px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.service-block:hover {
    transform: translateY(-5px);
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ===== FLAVOR GRID ===== */
.flavor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.flavor-card {
    text-align: center;
    padding: 15px 8px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flavor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.flavor-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.flavor-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== SERVICE VISUALS ===== */
.service-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.visual-card {
    background: white;
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 230px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.visual-emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.visual-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}


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

.visual-card h4 {
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Fruit Bowl */
.fruit-bowl {
    background: white;
    padding: 30px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 250px;
    height: 250px;
    align-items: center;
    justify-items: center;
}

.fruit-item {
    width: 50px;
    height: 50px
    ;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    animation: fruitFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fruit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fruit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fruit-bowl .fruit-item:nth-child(1) { animation-delay: 0s; }
.fruit-bowl .fruit-item:nth-child(2) { animation-delay: 0.3s; }
.fruit-bowl .fruit-item:nth-child(3) { animation-delay: 0.6s; }
.fruit-bowl .fruit-item:nth-child(4) { animation-delay: 0.9s; }
.fruit-bowl .fruit-item:nth-child(5) { animation-delay: 1.2s; }
.fruit-bowl .fruit-item:nth-child(6) { animation-delay: 1.5s; }
.fruit-bowl .fruit-item:nth-child(7) { animation-delay: 1.8s; }
.fruit-bowl .fruit-item:nth-child(8) { animation-delay: 2.1s; }

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

/* Banana Showcase */
.banana-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-end;
}

.banana-item {
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banana-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.banana-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banana-item.small {
    width: 40px;
    height: 40px;
}

.banana-item.medium {
    width: 60px;
    height: 60px;
}

.banana-item.large {
    width: 80px;
    height: 80px;
}

.banana-tagline {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Juice Glasses */
.juice-glasses {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.juice-glass {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.juice-glass:hover {
    transform: translateY(-5px);
}

.glass-liquid {
    width: 50px;
    height: 80px;
    border-radius: 0 0 15px 15px;
    background: var(--juice-color);
    opacity: 0.8;
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
}

.glass-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: rgba(255,255,255,0.3);
    border-radius: 0 0 50% 50%;
}

.juice-image {
    width: 70px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.juice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.juice-glass span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Carving Visual */
.carving-visual {
    flex-direction: column;
    align-items: center;
}

.carving-showcase {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.carving-item {
    font-size: 4rem;
}

.carving-item.result {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.carving-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

.carving-tagline {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-content h2 {
    margin-top: 20px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-cream), #f0f0f0);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.visiting-card-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    display: block;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    padding-top: 70px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--bg-cream);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0,0,0,0.1);
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s;
    flex: 0 0 auto;
    width: 300px;
    height: 250px;
}

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

.gallery-item.large {
    width: 450px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-placeholder span {
    font-size: 3rem;
}

.gallery-placeholder p {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-md);
    background: var(--bg-cream);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.trust-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== EVENTS MARQUEE ===== */
.events-served {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B5E3F, #0F3F2B);
    overflow: hidden;
}

.events-served .section-tag {
    background: rgba(255,255,255,0.2);
}

.events-served .section-title {
    color: white;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

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

.event-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    white-space: nowrap;
    backdrop-filter: blur(5px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
    background: var(--bg-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateX(5px);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: #1B5E3F;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-logo-icon {
    display: inline-block;
    margin-right: 10px;
}

.logo-icon {
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== STICKY MOBILE BAR ===== */
.sticky-book-bar {
    display: none !important;
}

.sticky-book-bar-content {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-book-bar a {
    flex: 1;
    padding: 12px 15px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sticky-book-bar .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.sticky-book-bar .btn-primary:hover {
    background: var(--secondary);
    color: white;
}

.sticky-book-bar .btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: none;
}

.sticky-book-bar .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .flavor-grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

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

@media (max-width: 768px) {
    .announcement-strip {
        padding: 14px 12px 10px 12px;
        font-size: 0.8rem;
        margin-top: 53px;
        line-height: 1.4;
    }

    .announcement-content {
        gap: 6px;
    }

    .announcement-strip i {
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        top: 58px;
        right: -50%;
        width: 50%;
        height: auto;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 15px 20px;
    }

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

    .nav-menu .nav-link {
        color: var(--text-dark);
        font-size: 1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child .nav-link {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 3.5px;
        cursor: pointer;
        width: 16px;
        height: 18px;
        position: relative;
        padding: 2px;
    }

    .nav-toggle span {
        width: 100%;
        height: 2.5px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
    }

    .nav-toggle span:nth-child(1) {
        top: 2px;
    }

    .nav-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle span:nth-child(3) {
        bottom: 2px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1.25px;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1.25px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow-x: visible;
    }

    .gallery-item {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .gallery-item.large {
        grid-column: span 1;
        width: 100%;
    }

    .trust-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .juice-glasses {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sticky-book-bar {
        display: none !important;
    }

    .sticky-book-bar-content {
        display: none;
    }

    .sticky-book-bar a {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .flavor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-block {
        padding: 25px;
    }

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

    .step-card {
        padding-top: 60px;
    }

    .juice-glasses {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .gallery-item {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }
}
