/* -----------------------------------------------------------
   RESET & VARIABLES
----------------------------------------------------------- */
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --accent-color: #4caf50;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f0f4f8;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* -----------------------------------------------------------
   UTILITIES & COMPONENTS
----------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.full-width {
    width: 100%;
}

.mt-2 {
    margin-top: 1rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}

/* -----------------------------------------------------------
   NAVIGATION
----------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.highlight {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #a5d6a7;
    top: -50px;
    left: -50px;
    animation: float 10s infinite alternate;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #81c784;
    bottom: -100px;
    right: -100px;
    animation: float 12s infinite alternate-reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #c8e6c9;
    top: 40%;
    left: 20%;
    animation: float 8s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-item span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-item small {
    font-size: 0.9rem;
    color: #666;
}

/* -----------------------------------------------------------
   BLOG CONTENT STYLES
----------------------------------------------------------- */
.content-section {
    padding: 60px 0;
}

.seo-article {
    padding: 40px;
    background: white;
    max-width: 900px;
    margin: 0 auto;
}

.seo-article h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-article h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.seo-article p {
    margin-bottom: 1.2rem;
    color: #444;
}

.seo-article ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.seo-article ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.seo-article ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seo-article a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.seo-article a:hover {
    color: var(--primary-dark);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
}

.glass-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.5);
}

.glass-table th, .glass-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-table th {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-dark);
    font-weight: 600;
}

.glass-table tr:last-child td {
    border-bottom: none;
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* -----------------------------------------------------------
   SERVICES SECTION
----------------------------------------------------------- */
.services-section {
    padding: 80px 0;
    background: #f8fcf8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* -----------------------------------------------------------
   CONTACT SECTION
----------------------------------------------------------- */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f4f8, #e8f5e9);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    background: white;
}

.contact-info h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item .label {
    display: block;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-item .value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.simple-form input, .simple-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    background: #f9f9f9;
}

.simple-form input:focus, .simple-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links {
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* -----------------------------------------------------------
   ANIMATIONS
----------------------------------------------------------- */
@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 40px); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glow-effect {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(46, 125, 50, 0.2); }
    to { box-shadow: 0 0 20px rgba(46, 125, 50, 0.6); }
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        gap: 20px;
    }
    
    .seo-article {
        padding: 20px;
    }
}