/* =============================================
   Les Jardins 614 - Premium Stylesheet
   A modern, elegant redesign
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
    --green-dark: #0d1b2a;
    --green: #1b3a5c;
    --green-light: #2a5f8f;
    --green-lighter: #3d85c6;
    --green-pale: #b3d1e8;
    --green-bg: #dfe8f2;
    
    --red: #e63946;
    --berry: #a4133c;
    --berry-light: #c9184a;
    
    --gold: #dda15e;
    --gold-light: #fefae0;
    
    --text-dark: #1a1a2e;
    --text: #2e2e3a;
    --text-light: #6b6b80;
    --text-muted: #9ca3af;
    
    --bg-white: #ffffff;
    --bg-light: #fafbf7;
    --bg-cream: #f8f5f0;
    --bg-dark: #0d1b2a;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Dancing Script', cursive;
    
    --container-width: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--green-dark);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--green-pale);
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.85);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

.top-bar-right a:hover {
    background: var(--green-lighter);
    color: white;
    transform: translateY(-1px);
}

/* --- Navigation --- */
.main-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

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

.logo-icon {
    font-size: 1.8rem;
}

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

.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--green-dark);
}

.logo-accent {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--green-light);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    border-radius: var(--radius-xl);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green);
    background: var(--green-bg);
}

.nav-cta {
    background: var(--green) !important;
    color: white !important;
    font-weight: 600 !important;
}

.nav-cta:hover,
.nav-cta.active {
    background: var(--green-dark) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,58,92,0.3);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(61,133,198,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(179,209,232,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(13,27,42,0.4) 0%, transparent 60%);
}

.hero-video .hero-overlay {
    background:
        linear-gradient(135deg, rgba(13,27,42,0.65) 0%, rgba(27,58,92,0.5) 50%, rgba(13,27,42,0.6) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.hero-particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; animation-duration: 18s; }
.hero-particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 4s; animation-duration: 14s; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 1s; animation-duration: 16s; }
.hero-particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 3s; animation-duration: 20s; }
.hero-particle:nth-child(6) { left: 15%; top: 80%; animation-delay: 5s; animation-duration: 11s; }
.hero-particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 6s; animation-duration: 13s; }
.hero-particle:nth-child(8) { left: 40%; top: 85%; animation-delay: 7s; animation-duration: 17s; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-20px, -80px) scale(1); opacity: 0.4; }
    75% { transform: translate(40px, -30px) scale(1.8); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-video .hero-content h1 {
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(13,27,42,0.4);
}

.hero-video .hero-content p {
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    color: var(--green-pale);
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.hero h1 .highlight {
    font-family: var(--font-accent);
    color: var(--green-pale);
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 6;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: var(--green-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

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

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,58,92,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

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

/* --- Section Styles --- */
.section {
    padding: 100px 0;
}

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

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

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

.section-green {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: white;
}

.section-green h2, .section-green h3 {
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .overline {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--green-lighter);
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-green .section-header p {
    color: rgba(255,255,255,0.8);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-lighter), var(--green-pale));
    border-radius: 2px;
    margin: 16px auto;
}

/* --- Fruits Grid --- */
.fruits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.fruit-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.fruit-card-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fruit-card-image .fruit-emoji {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: var(--transition-slow);
}

.fruit-card:hover .fruit-emoji {
    transform: scale(1.15) rotate(-5deg);
}

.fruit-card-body {
    padding: 24px 20px 28px;
}

.fruit-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.fruit-card-body .season {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
}

.fruit-card-body .season i {
    color: var(--green-lighter);
}

/* Fruit card color accents */
.fruit-card[data-color="raspberry"] .fruit-card-image {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.fruit-card[data-color="blackraspberry"] .fruit-card-image {
    background: linear-gradient(135deg, #e8d5e0, #d1a7c0);
}
.fruit-card[data-color="blueberry"] .fruit-card-image {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.fruit-card[data-color="blackberry"] .fruit-card-image {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}

/* --- Products Section --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

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

.product-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-card-image.honey {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.product-card-image.maple {
    background: linear-gradient(135deg, #fbe9e7, #ffccbc);
}

.product-card-image.jam {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.product-card-body {
    padding: 28px 24px;
    flex: 1;
}

.product-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-card-body p {
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Activities Section --- */
.activities-section {
    position: relative;
}

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

.activities-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.activities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.activities-list li i {
    color: var(--green-lighter);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.activities-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.activity-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
}

.activity-img:hover {
    transform: scale(1.03);
}

.activity-img:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

/* --- Season Banner --- */
.season-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
    padding: 72px 24px;
    color: white;
    margin-bottom: 0;
}

.season-banner h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.season-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

.season-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.season-banner-content h2 {
    color: white;
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.season-banner-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.social-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24,119,242,0.4);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220,39,67,0.4);
}

/* --- Partners --- */
.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    background: white;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 80px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* --- Hours Section (Footer/Home) --- */
.hours-section {
    position: relative;
}

.hours-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.hours-table {
    width: 100%;
}

.hours-table .hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-table .hour-row:last-child {
    border-bottom: none;
}

.hours-table .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-table .time {
    color: var(--text-light);
}

.hours-table .closed {
    color: var(--red);
    font-weight: 600;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* --- Page Hero Banner --- */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(61,133,198,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(179,209,232,0.15) 0%, transparent 50%);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.page-hero .breadcrumb {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-top: 12px;
}

.page-hero .breadcrumb a {
    color: var(--green-pale);
}

.page-hero .breadcrumb a:hover {
    color: white;
}

.page-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.page-hero-wave svg {
    display: block;
    width: 100%;
}

/* --- Content Sections --- */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.content-block-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.content-block-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.content-block-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content-block-image .placeholder-art {
    font-size: 5rem;
    opacity: 0.5;
}

/* --- Highlight Box --- */
.highlight-box {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(179,209,232,0.3) 100%);
    border: 1px solid var(--green-pale);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin: 40px 0;
}

.highlight-box h4 {
    color: var(--green-dark);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.highlight-box p {
    color: var(--green);
    line-height: 1.7;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--green);
}

.faq-question i {
    transition: var(--transition);
    color: var(--green-lighter);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    background: var(--green-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg-light);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-lighter);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(61,133,198,0.1);
}

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

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

/* Map */
.map-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* --- Alert / Flash messages --- */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.alert-success {
    background: var(--green-bg);
    color: var(--green-dark);
    border: 1px solid var(--green-pale);
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* --- Footer --- */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-top: 40px;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    color: white;
}

.footer-logo .logo-accent {
    color: var(--green-pale);
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green-lighter);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--green-lighter);
    border-radius: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--green-pale);
    padding-left: 5px;
}

.hours-list {
    font-size: 0.9rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.hours-list .day {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hours-list .time {
    color: rgba(255,255,255,0.65);
}

.footer-col .hours-note {
    color: rgba(255,255,255,0.5);
    text-align: left;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px !important;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info li i {
    color: var(--green-lighter);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info li a:hover {
    color: var(--green-pale);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 4px 15px rgba(27,58,92,0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27,58,92,0.4);
}

/* --- Stat Counters --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-pale);
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

/* --- Values / Features Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--green-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Admin Styles --- */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--green-dark);
    color: white;
    padding: 20px 0;
}

.admin-sidebar .logo {
    padding: 10px 24px 30px;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.admin-sidebar nav a i {
    width: 20px;
    text-align: center;
}

.admin-main {
    padding: 30px;
    background: var(--bg-light);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--bg-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 2px solid #e5e7eb;
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-green {
    background: var(--green-bg);
    color: var(--green);
}

.badge-red {
    background: #fef2f2;
    color: #ef4444;
}

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.login-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 8px;
}

.login-card .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .activities-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1001;
        align-items: flex-start;
        gap: 4px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu a {
        padding: 14px 18px;
        border-radius: var(--radius-sm);
        width: 100%;
        text-align: left;
        display: block;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .fruits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-images {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .activity-img:first-child {
        grid-row: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .fruits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Overlay for mobile nav --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Loading Animation --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Language Switcher --- */
.lang-switch a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px !important;
    border: 2px solid var(--green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--green) !important;
    transition: var(--transition);
}

.lang-switch a:hover {
    background: var(--green);
    color: #fff !important;
}

.nav-menu .lang-switch {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .nav-menu .lang-switch {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }
    .lang-switch a {
        justify-content: center;
    }
}
