:root {
    /* Color Palette */
    --primary-color: #D4A017;
    --primary-dark: #B38612;
    --secondary-color: #FFC107;
    --bg-color: #FAFAF5;
    /* Warm off-white */
    --text-color: #3E2723;
    /* Dark Brown */
    --text-light: #6D4C41;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.9);
    --shadow-soft: 0 10px 30px rgba(212, 160, 23, 0.15);
    --shadow-hover: 0 15px 40px rgba(212, 160, 23, 0.25);
    --transition-speed: 0.3s;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp-header {
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.btn-whatsapp-large:hover,
.btn-whatsapp-header:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.section-desc {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-radius: 0 0 20px 20px;
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for header */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-speed);
}

.nav-link.active {
    color: var(--primary-color);
}


/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-speed);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Offset for fixed header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image .image-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    /* Organic shape */
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: inherit;
    width: 100%;
    /* height: auto; remove in prod if aspect ratio issues, keep for placeholder */
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Honeycomb Background */
/* Honeycomb and Watermark Backgrounds */
.honeycomb-bg,
.honeycomb-bg-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at center, var(--primary-color) 1px, transparent 1.5px),
        radial-gradient(circle at center, var(--primary-color) 1px, transparent 1.5px);
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
}

.watermark-section {
    position: relative;
    overflow: hidden;
}

.watermark-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background-image: url('../images/logo.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03;
    /* Very light watermark as requested */
    z-index: -1;
    pointer-events: none;
}

/* More specific SVG like pattern can be used but CSS radial dots create a nice subtle texture too. 
   Let's try a CSS hexagon pattern approximation or just keep it clean dots.
   For true honeycomb:
*/
.honeycomb-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23D4A017' stroke-width='2'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23D4A017' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 112px 200px;
    opacity: 0.05;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    align-items: center;
    /* Center Vertically */
    justify-content: center;
    /* Center Horizontally */
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    /* fallback */
    background: var(--white);
    margin: auto;
    padding: var(--spacing-lg);
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    left: 15px;
    /* RTL flip */
    font-size: 28px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Internal Styling */
.modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.modal-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.modal-list {
    margin-bottom: 1.5rem;
    padding-right: 1.2rem;
}

.modal-list li {
    margin-bottom: 0.3rem;
    list-style-type: disc;
}


/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-speed);
}

.benefit-card:hover {
    transform: scale(1.03);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: rgba(212, 160, 23, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
    /* center horizontally */
}

/* Location */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    overflow: hidden;
}

.location-info {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.map-placeholder {
    background-color: #eee;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.map-visual {
    text-align: center;
    font-size: 1.2rem;
}

.map-pin {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-box {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    margin: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.contact-item {
    font-size: 1.2rem;
}

.contact-item .value {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: #2D2318;
    /* Darker brown */
    color: #EEE;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #bbb;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 var(--spacing-sm);
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: var(--spacing-lg);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav.active {
        clip-path: circle(150% at 100% 0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .btn-whatsapp-header {
        display: none;
        /* Hide top header WA btn on mobile, use burger or bottom fixed? */
        /* Actually keep it if possible, but space is tight. Let's hide text. */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        /* Image on top for mobile */
        max-width: 400px;
        margin: 0 auto;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .location-info {
        align-items: center;
        text-align: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Honey Details Grid in Modal */
.honey-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: #FDFBF7;
    /* Very light warm bg */
    border-radius: var(--radius-sm);
    border-right: 4px solid var(--primary-color);
    /* Accent on the right for RTL */
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.detail-value {
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}