/* 
   NUZIK - Modern FoodTech Concept 
   Theme: Nature meets Innovation
*/

:root {
    /* Color Palette */
    --color-primary: #1A3C34;
    /* Deep Forest Green */
    --color-accent: #D4F238;
    /* Neon Matcha/Lime */
    --color-bg: #F9F9F5;
    /* Cream / Organic Off-White */
    --color-surface: #ffffff;
    /* Pure White for cards */
    --color-text-main: #122620;
    /* Very Dark Green */
    --color-text-muted: #5C7066;
    /* Muted Green-Grey */

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1A3C34 0%, #0F2A24 100%);
    --gradient-accent: linear-gradient(135deg, #D4F238 0%, #C1E020 100%);

    /* Shadows & Effects */
    --shadow-soft: 0 10px 40px -10px rgba(26, 60, 52, 0.1);
    --shadow-hover: 0 20px 50px -10px rgba(26, 60, 52, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --backdrop-blur: blur(12px);

    /* Typography */
    --font-heading: 'Outfit', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 220px;
    /* 200px header + 20px padding */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
buttons {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 242, 56, 0.4);
}

.btn-outline {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: rgba(212, 242, 56, 0.1);
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 242, 56, 0.3);
}

/* Header / Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 200px;
    display: flex;
    align-items: center;
    background: rgba(26, 60, 52, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 60, 52, 0.95);
    backdrop-filter: var(--backdrop-blur);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: auto;
    max-height: 100%;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

/* Footer Partner Logo Styles */
.footer-partner-logo {
    margin: 20px auto;
}

.footer-partner-logo img {
    height: 80px;
    width: auto;
    display: inline-block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s;
    background: transparent;
}

.footer-partner-logo img:hover {
    opacity: 1;
}

/* Trust/Support Section */
.trust-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 700;
    margin: 0;
    padding-right: 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    height: 40px;
    display: flex;
    align-items: center;
}

.trust-logo img {
    height: 60px;
    /* Refined size for balance */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .trust-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .trust-label {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
}

.nav-links a {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    white-space: nowrap;
    /* Prevent wrapping individually */
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* Partners / Support Section */


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 150px;
}

/* Abstract Background Shapes mimicking cells/nature */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    animation: float 10s infinite ease-in-out;
}

/* shape-1 removed as requested */

/* shape-2 removed as requested */

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    /* Increased by 10% from 3.2rem */
    line-height: 1.1;
    margin-bottom: 12px;
    /* Reduced to move paragraph up */
    font-weight: 700;
}

.hero h1 span {
    color: var(--color-accent);
    display: block;
    /* Stack lines for impact */
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 0;
    /* Handled by row gap */
    flex: 1;
    /* Allow text to take available space */
    text-align: justify;
    /* Justify text */
}

.hero-text-row {
    display: flex;
    align-items: flex-start;
    /* Align to top */
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    /* Stack buttons */
    gap: 15px;
    min-width: 220px;
    /* Ensure buttons have space */
    margin-top: 0;
    /* Reset */
}

@media (max-width: 768px) {
    .hero-text-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .hero p {
        text-align: justify;
        /* Forced Justify */
        margin-bottom: 20px;
    }

    p {
        text-align: justify;
        /* Global mobile justify */
    }

    .hero-actions {
        width: 100%;
        align-items: center;
    }
}

/* Features / Services Grid (Bento) */
.services-section {
    padding: 20px 0 40px;
    /* Aggressively reduced padding */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 24px;
}

.card {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

/* Bento Spans */
.card-large {
    grid-column: span 2;
    background: var(--color-primary);
    color: white;
}

.card-large p {
    color: rgba(255, 255, 255, 0.8);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 242, 56, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.card-large .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--color-text-muted);
}

/* Glassmorphism Stat Cards */
.stats-section {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    /* Pushed down to reveal buttons */
    position: relative;
    z-index: 3;
    justify-content: center;
    padding-bottom: 0px;
    /* Aggressively reduced bottom padding */
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: var(--glass-border);
    padding: 30px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Footer */
footer {
    background: var(--color-primary);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
}

.footer-links a {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card-large {
        grid-column: span 1;
    }

    .stats-section {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .stat-card {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for prototype */
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Layout Overrides */
@media (max-width: 768px) {

    /* Navbar & Logo */
    /* Navbar & Logo - Reverted to original sizes */
    .navbar {
        height: 200px;
        /* Restored original height */
        background: rgba(26, 60, 52, 0.95);
    }

    .logo img {
        height: auto;
        /* Restored original sizing behavior */
        max-height: 100%;
        width: auto;
    }

    .nav-links {
        top: 200px;
        /* Adjustable to match navbar height */
        height: calc(100vh - 200px);
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(26, 60, 52, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        height: calc(100vh - 90px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero */
    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Insights Grid */
    .insights-modular-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .insight-featured-card,
    .insights-sidebar {
        grid-column: span 1;
    }

    .insight-featured-image {
        height: 250px;
        /* Reduced height for mobile */
    }

    /* About Image & Stats */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: auto;
        /* Allow growth */
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Push content to bottom */
        padding: 20px;
    }

    .stats-glass-box {
        position: relative;
        /* No longer absolute on mobile */
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 40px;
        /* Space from abstract shape */
        white-space: normal;
    }

    .glass-stat-desc {
        max-width: none;
        /* Full width text on mobile */
    }
}

/* About Section (The Lab) */
.about-section {
    padding: 40px 0;
    /* Aggressively reduced top padding */
    background: white;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-primary);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 242, 56, 0.2), transparent);
    z-index: 1;
}

.stats-glass-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.glass-stat-desc {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
    max-width: 180px;
}

/* Abstract Lab Visual using CSS Shapes */
.lab-shape {
    position: absolute;
    width: 150%;
    height: 150%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 20px);
    top: -25%;
    left: -25%;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-weight: 600;
}

.check-list i {
    color: var(--color-accent);
    margin-right: 12px;
    font-size: 1.2rem;
    background: rgba(26, 60, 52, 1);
    border-radius: 50%;
    padding: 4px;
}

/* Insights Section */
.insights-section {
    padding: 40px 0 100px;
    background: var(--color-bg);
}

/* New Insights Hub Grid */
.insights-modular-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Featured Card (Left side, big) */
.insight-featured-card {
    grid-column: span 7;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.insight-featured-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.insight-featured-content {
    padding: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.25;
    color: var(--color-primary);
}

.insight-featured-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Side Column for recent insights */
.insights-sidebar {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Compact Cards (Sidebar) */
.insight-compact-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    align-items: center;
    min-height: 140px;
}

.insight-compact-card:hover {
    transform: translateX(5px);
    border-color: var(--color-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.insight-compact-image {
    width: 35%;
    align-self: stretch;
    /* fill height */
    background-size: cover;
    background-position: center;
}

.insight-compact-content {
    width: 65%;
    padding: 20px;
}

.insight-compact-content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Categories */
.insight-category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cat-tech {
    background: #E6F4F1;
    color: #2C5E52;
}

.cat-market {
    background: #F2F7F5;
    color: #1A3C34;
}

.cat-case {
    background: #F9FCE5;
    color: #8FA626;
}

/* Link Style */
.read-more-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    /* Use primary color for link text */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    text-decoration: none;
}

.read-more-link i {
    transition: transform 0.2s;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Newsletter CTA */
.newsletter-cta-box {
    margin-top: 80px;
    background: var(--color-primary);
    border-radius: 20px;
    padding: 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 242, 56, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 450px;
    margin: 30px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: inherit;
}

.btn-newsletter {
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    padding: 0 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-newsletter:hover {
    transform: scale(1.05);
}

/* Responsive New */
@media (max-width: 992px) {
    .insights-modular-grid {
        grid-template-columns: 1fr;
    }

    .insight-featured-card,
    .insights-sidebar {
        grid-column: span 12;
    }

    .insight-featured-image {
        height: 250px;
    }

    .insight-compact-card {
        min-height: auto;
    }
}


@media (max-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        order: -1;
    }
}

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 20px 0 40px;
    /* Aggressively reduced spacing */
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color-bg) 0%, #f0f0eb 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    color: var(--color-accent);
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Form Card */
.contact-form-card {
    background: var(--color-surface);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(40px);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 60, 52, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* Media Queries for Contact */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .contact-form-card {
        padding: 30px;
    }
}

/* Article Page Styles */
.article-hero {
    padding: 280px 0 100px;
    background: var(--color-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.article-hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.1;
    margin-bottom: 40px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-main);
}

.article-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin: 50px 0 20px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background: #F2F7F5;
    border-left: 4px solid var(--color-accent);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* References Section */
.references-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.references-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.references-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    text-indent: -20px;
}

/* Back Nav */
.back-nav {
    position: absolute;
    top: 240px;
    left: 50px;
}

.back-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2.2rem;
    }

    .back-nav {
        top: 220px;
        left: 20px;
    }
}