/* =====================================================
   LocalAssam - Beautiful CSS Stylesheet
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Root & Typography ===== */
:root {
    --primary-color: #1a7f4e;
    --primary-dark: #0f5e36;
    --primary-light: #2ea06a;
    --secondary-color: #4CAF50;
    --accent-color: #66BB6A;
    --light-bg: #f1f8f4;
    --white: #ffffff;
    --text-dark: #1e3a2e;
    --text-light: #5a7a6e;
    --border-color: #c8e6c9;
    --shadow: 0 2px 16px rgba(26, 127, 78, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 127, 78, 0.12);
    --success-color: #4CAF50;
    --hover-bg: #e8f5e9;
    --card-padding: 30px;
    --section-padding: 90px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* ===== Button Styles ===== */
.btn-primary, .btn-secondary, .btn-outline, .btn-submit {
    padding: 16px 36px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(26, 127, 78, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 127, 78, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.95rem;
    padding: 14px 28px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 127, 78, 0.2);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.2);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 187, 106, 0.3);
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 40px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 1rem 24px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 1rem 20px;
    }
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.nav-brand a:hover {
    text-decoration: none;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-menu .btn-submit {
    margin: 0;
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 101;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 94, 54, 0.85), rgba(26, 127, 78, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h2 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
    font-weight: 800;
    line-height: 1.2;
}

.hero h2::after {
    display: none;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 2px 6px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.hero-search {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.hero-search button {
    padding: 16px 44px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(102, 187, 106, 0.3);
}

.hero-search button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(102, 187, 106, 0.4);
}

/* ===== Featured Article Section ===== */
.featured-article {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.featured-card:hover {
    box-shadow: 0 12px 40px rgba(26, 127, 78, 0.15);
    transform: translateY(-5px);
}

.featured-image {
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
}

.featured-content {
    padding: 50px;
}

.featured-content h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Categories Section ===== */
.categories {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.category-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    background: var(--white);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.12);
}

.category-card h3 {
    padding: 24px 24px 12px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.category-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Articles Section ===== */
.articles {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    margin-top: -1rem;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-bottom: 4rem;
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover img {
    transform: scale(1.08);
}

.article-body {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 12px 0 16px;
    line-height: 1.4;
    font-weight: 700;
}

.article-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--primary-dark);
}

.text-center {
    text-align: center;
}

/* ===== Listings Section ===== */
.listings {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.listing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.listing-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-card:hover img {
    transform: scale(1.08);
}

.listing-body {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listing-body h3 {
    font-size: 1.4rem;
    margin: 0 0 12px;
    line-height: 1.4;
    font-weight: 700;
}

.listing-category {
    display: inline-block;
    background: rgba(26, 127, 78, 0.1);
    color: var(--primary-color);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.listing-body > p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1rem;
    flex: 1;
    line-height: 1.7;
}

.listing-details {
    margin: 18px 0;
    font-size: 0.95rem;
}

.listing-details p {
    color: var(--text-light);
    margin: 8px 0;
}

/* ===== Submission CTA ===== */
.submission-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content h2::after {
    background: rgba(255,255,255,0.4);
    width: 100px;
    height: 5px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.submission-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.submission-cta .btn-primary:hover {
    background: var(--light-bg);
}

.submission-cta .btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.submission-cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: #e8f5e9;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 0.98rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.98rem;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .hero {
        min-height: 400px;
        padding: 60px 24px;
        background-attachment: scroll;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .hero-search {
        flex-direction: column;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 280px;
    }

    .featured-content {
        padding: 35px;
    }

    .featured-content h3 {
        font-size: 1.8rem;
    }

    .article-meta {
        gap: 12px;
    }

    .category-grid,
    .article-grid,
    .listing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .category-card img {
        height: 180px;
    }

    .categories,
    .articles,
    .listings {
        padding: 70px 0;
    }

    .submission-cta {
        padding: 80px 24px;
    }

    .cta-content h2 {
        font-size: 2.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons a {
        width: 100%;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.85rem;
        margin-bottom: 2rem;
    }

    .hero {
        min-height: 320px;
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .category-grid,
    .article-grid,
    .listing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-content {
        padding: 28px;
    }

    .featured-content h3 {
        font-size: 1.5rem;
    }

    .article-body,
    .listing-body {
        padding: 24px;
    }

    .categories,
    .articles,
    .listings {
        padding: 60px 0;
    }

    .submission-cta {
        padding: 70px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ===== Animations ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== Mobile Navigation Toggle ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* ===== Scrolled Navbar ===== */
.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== Notification System ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-info {
    border-left: 4px solid #3498db;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    margin-left: auto;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* ===== Animate on Scroll ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile Responsive Updates ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 36px rgba(0,0,0,0.12);
        border-top: 2px solid var(--border-color);
    }
    
    .nav-menu.active {
        max-height: 600px;
    }
    
    .nav-menu li {
        margin: 12px 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 18px;
        border-radius: 8px;
    }

    .nav-menu a:hover {
        background: var(--light-bg);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 12px;
        border-radius: 8px;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .notification {
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
    }
}

.article-card,
.listing-card,
.category-card {
    animation: slideUp 0.5s ease forwards;
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }
.article-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== Tea Inquiry Section ===== */
.tea-inquiry {
    background: linear-gradient(135deg, #0f5e36 0%, #0a4029 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tea-inquiry::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.tea-inquiry::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.tea-inquiry .container {
    position: relative;
    z-index: 1;
}

.tea-inquiry-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.tea-inquiry-text {
    color: #ffffff;
    text-align: center;
    width: 100%;
}

.tea-inquiry-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    animation: slideInUp 0.8s ease forwards;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tea-inquiry-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 1;
    line-height: 1.8;
    animation: slideInUp 0.8s ease forwards 0.15s;
    animation-fill-mode: both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.tea-inquiry-contact {
    background: rgba(255, 255, 255, 0.12);
    padding: 35px 40px;
    border-radius: 16px;
    margin-top: 35px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: slideInUp 0.8s ease forwards 0.3s;
    animation-fill-mode: both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.tea-inquiry-contact:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tea-inquiry-contact p {
    margin-bottom: 18px !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    color: #ffffff;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: #0f5e36;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.contact-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}

.contact-email span {
    font-size: 1.2rem;
}

.contact-note {
    margin-top: 16px !important;
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
    color: #ffffff;
}

/* Responsive Tea Inquiry */
@media (max-width: 768px) {
    .tea-inquiry {
        padding: 70px 0;
    }

    .tea-inquiry-text h2 {
        font-size: 2.2rem;
    }

    .tea-inquiry-text p {
        font-size: 1rem;
    }

    .tea-inquiry-contact {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .contact-email {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .contact-email span {
        font-size: 1rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
