/* =========================================
   ZOYA LABS - Main Stylesheet
   Theme: Botanical Elegance - Deep Green & Gold
   ========================================= */

:root {
    --green-dark: #1a4a2e;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #b7e4c7;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #faf8f3;
    --warm-white: #f5f0e8;
    --text-dark: #1c2e20;
    --text-mid: #3d5a45;
    --text-light: #6b8f76;
    --orange-accent: #e07b39;
    --shadow-sm: 0 2px 12px rgba(26,74,46,0.08);
    --shadow-md: 0 8px 32px rgba(26,74,46,0.14);
    --shadow-lg: 0 20px 60px rgba(26,74,46,0.18);
    --border-radius: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span, .top-bar-right a {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.85);
}
.top-bar-left span i, .top-bar-right a i { color: var(--gold-light); }
.top-bar-right a:hover { color: var(--gold-light); }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(26,74,46,0.1);
    transition: var(--transition);
}
.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(26,74,46,0.18);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 32px;
}
.logo-img { height: 62px; width: auto; }

.main-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
.main-nav ul li a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--green-mid);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #1a5c38 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    background-size: 40px 40px;
}
.hero-leaf-1, .hero-leaf-2, .hero-leaf-3 {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0.06;
    background: var(--green-light);
    animation: floatLeaf 8s ease-in-out infinite;
}
.hero-leaf-1 { width: 300px; height: 300px; top: -80px; right: 10%; animation-delay: 0s; }
.hero-leaf-2 { width: 200px; height: 200px; bottom: 60px; right: 5%; animation-delay: 3s; }
.hero-leaf-3 { width: 160px; height: 160px; top: 30%; left: -40px; animation-delay: 5s; }

@keyframes floatLeaf {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(12px, -18px) rotate(5deg); }
    66% { transform: translate(-8px, 10px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease forwards;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    animation: fadeInUp 0.9s ease 0.2s both;
}
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    font-weight: 300;
    animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.hero-tag:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.65s both;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-green {
    background: var(--green-mid);
    color: #fff;
    border-color: var(--green-mid);
}
.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   HERO SUB-SECTION
   ========================================= */
.hero-sub {
    background: var(--warm-white);
    padding: 56px 0;
    border-bottom: 2px solid rgba(82,183,136,0.15);
}
.hero-sub-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}
.hero-sub-text {
    text-align: center;
    grid-column: 1 / -1;
}
.hero-sub-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--green-dark);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
}
.hero-sub-text h2 strong {
    font-weight: 600;
    font-style: normal;
    color: var(--green-mid);
}
.divider-leaf {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px auto 0;
    width: fit-content;
}
.divider-leaf::before, .divider-leaf::after {
    content: '';
    display: block;
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.divider-leaf::after { background: linear-gradient(to left, transparent, var(--gold)); }
.divider-leaf i { color: var(--gold); font-size: 1.2rem; }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 90px 0; }
.section-alt { background: var(--warm-white); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.section-divider span { display: block; width: 50px; height: 1px; background: var(--gold); }
.section-divider i { color: var(--gold); }

/* =========================================
   ABOUT BLOCK
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 4rem;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}
.about-img-placeholder span {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px; height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 4px solid #fff;
}
.about-badge .years { font-size: 2rem; line-height: 1; font-family: 'Playfair Display', serif; }
.about-badge .yrs-text { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; }

.about-content { }
.about-content .section-label { text-align: left; display: block; }
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 24px;
}
.about-content p {
    color: var(--text-mid);
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.8;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(82,183,136,0.2);
    border-bottom: 1px solid rgba(82,183,136,0.2);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--green-mid);
    font-weight: 700;
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 4px;
    display: block;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}
.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-card:hover .product-img-wrap::after {
    opacity: 1;
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.product-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,74,46,0.6), transparent);
    opacity: 0;
    transition: var(--transition);
}
.product-img-wrap img,
.product-placeholder {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5ec, #c8e6c9);
    color: var(--green-mid);
    gap: 8px;
    font-size: 2.5rem;
}
.product-placeholder span {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}
.product-category {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}
.product-body {
    padding: 20px;
}
.product-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    padding: 12px 20px 18px;
    display: flex;
    justify-content: flex-end;
}
.product-footer a {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green-mid);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.product-footer a:hover { color: var(--gold); gap: 10px; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}
.gallery-img, .gallery-placeholder {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: rgba(255,255,255,0.4);
    font-size: 2.5rem;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,74,46,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}
.gallery-overlay i { font-size: 2rem; margin-bottom: 8px; }
.gallery-overlay span { font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.gallery-item:hover .gallery-img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =========================================
   AWARDS
   ========================================= */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}
.award-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.award-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.award-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.award-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    box-shadow: 0 8px 24px rgba(26,74,46,0.25);
}
.award-year {
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.award-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.award-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =========================================
   CTA / CONTACT SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a5c38 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(82,183,136,0.08);
    right: -100px; top: -100px;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.cta-content .section-label { color: var(--gold-light); }
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; }
.cta-info { display: flex; flex-direction: column; gap: 14px; }
.cta-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.cta-info-item i {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    background: rgba(82,183,136,0.15);
    border: 1px solid var(--green-light);
    color: var(--green-pale);
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer { background: #0d2a18; }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-logo-img { height: 50px; width: auto; margin-bottom: 20px; filter: brightness(1.1); }
.footer-about p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
    transform: translateY(-3px);
}
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 40px; height: 1px;
    background: var(--gold);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.footer-contact i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    position: relative;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid var(--green-light);
    background: transparent;
    color: var(--green-mid);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: #fff;
}

/* =========================================
   ALERT/NOTICE BOXES
   ========================================= */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap { max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        box-shadow: var(--shadow-md);
        padding: 16px 24px;
        border-top: 2px solid var(--green-pale);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-header { position: relative; }
    .header-inner { position: relative; }
    .hero { min-height: 80vh; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; }
    .hero-btns { flex-direction: column; }
    .btn { justify-content: center; }
}
