:root {
    /* Color Palette */
    --primary-color: #42652B;
    /* Forest Green */
    --secondary-color: #267004;
    /* Fresh Green */
    --accent-color: #A0710A;
    /* Golden Amber */
    --text-dark: #222222;
    --text-light: #666666;
    --white: #FFFFFF;
    --off-white: #F9FAF5;
    /* Very subtle green tint */
    --light-green-bg: #EAF4E9;

    /* Shadows & Glass */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-script: 'Niconne', cursive;

    /* Spacing */
    --radius-pill: 50px;
    --radius-card: 20px;
    --header-height: 80px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: var(--light-green-bg);
}

.bg-dark {
    background-color: var(--primary-color);
}

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-transparent {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(66, 101, 43, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(66, 101, 43, 0.5));
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-btn-highlight {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
}

.nav-btn-highlight:hover {
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-background-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-content h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Section Header */
.section-subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rounded-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.usp-list {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.usp-item {
    display: flex;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--light-green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card:nth-child(5) {
    grid-column: 2 / 3;
}

.category-card:nth-child(6) {
    grid-column: 3 / 4;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-card:nth-child(5),
    .category-card:nth-child(6) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: var(--white);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    border: 5px solid var(--white);
    outline: 2px dashed var(--primary-color);
    outline-offset: -10px;
    width: 100%;
    max-width: 280px;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-color);
    color: var(--white);
    z-index: 10;
}

.category-card:hover .cat-icon,
.category-card:hover h3 {
    color: var(--white);
}

.cat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.category-card h3 {
    font-size: 1.1rem;
    margin: 0;
    transition: color 0.3s;
}

/* Split Feature */
.split-feature {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-feature.reversed {
    flex-direction: row-reverse;
}

.split-feature > div {
    flex: 1;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.rect-rounded {
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.badge-pill {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

/* Offers Banner */
.bg-pattern {
    background-color: var(--primary-color);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-card);
    padding: 60px 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.15);
}

.glass-card h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.offers-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.offer-item {
    text-align: center;
    padding: 20px;
}

.offer-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #335222;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding: 50px;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--white);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background 0.3s;
    color: var(--white);
}

.social-links a:hover {
    background: var(--accent-color);
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

footer {
    padding: 30px 0;
    background: #111;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-script);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Timeline Styles */
.timeline-container {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-top: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.timeline-year {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.timeline-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Zodiac Teaser Section */
.zodiac-teaser-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(234, 244, 233, 0.3) 0%, rgba(249, 250, 245, 0.5) 100%);
}

.zodiac-teaser-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 113, 10, 0.08) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.cosmic-card {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 244, 233, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(160, 113, 10, 0.2);
    box-shadow:
        0 20px 60px rgba(66, 101, 43, 0.15),
        0 0 40px rgba(160, 113, 10, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cosmic-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 70px rgba(66, 101, 43, 0.2),
        0 0 50px rgba(160, 113, 10, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.6);
}

.cosmic-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(160, 113, 10, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cosmic-icon i {
    font-size: 2.5rem;
    color: white;
}

.cosmic-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cosmic-description {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cosmic-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(66, 101, 43, 0.3);
    transition: all 0.3s ease;
}

.cosmic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(66, 101, 43, 0.4);
}

/* Plant Loader Overlay */
.plant-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.plant-loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
}

.plant-icon-wrapper {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: growPulse 1.5s ease-in-out infinite;
    display: inline-block;
}

.loader-content p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

@keyframes growPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-content {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .about-grid,
    .split-feature,
    .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .split-feature.reversed {
        flex-direction: column;
    }

    .rect-rounded {
        height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.font-decorative {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-dark);
}
