/* =========================================
   TARLADAN GELECEĞE - CSS STYLES
   ========================================= */

/* --- Variables --- */
:root {
    /* Colors */
    --clr-primary: #1E4E2C;
    /* Dark Green */
    --clr-primary-light: #3CA955;
    /* Light Green */
    --clr-accent: #F09B2C;
    /* Orange / Gold */
    --clr-text-main: #2C3E35;
    --clr-text-light: #6B7B73;
    --clr-bg-light: #F4F8F5;
    --clr-bg-white: #FFFFFF;
    --clr-border: #E2E8E4;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(30, 78, 44, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(30, 78, 44, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(30, 78, 44, 0.15);
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.text-center {
    text-align: center;
}

.text-green {
    color: var(--clr-primary);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-bg-white);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    position: relative;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-leaf {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2rem;
    color: var(--clr-primary-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title,
.logo-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-title {
    color: var(--clr-primary);
}

.logo-subtitle {
    color: var(--clr-primary-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-text-main);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary-light);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--clr-primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--clr-bg-light);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(244, 248, 245, 1) 0%, rgba(244, 248, 245, 0.7) 50%, rgba(255, 255, 255, 0.2) 100%),
        url('https://images.unsplash.com/photo-1592982537447-6f296cb3440f?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(60, 169, 85, 0.1);
    color: var(--clr-primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--clr-text-main);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--clr-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(30, 78, 44, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(30, 78, 44, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(30, 78, 44, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(30, 78, 44, 0.3);
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--clr-accent);
}

.stat-info h4 {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 2px;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    position: relative;
    width: 284px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #111;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.app-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(30, 78, 44, 0.7);
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 100px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 120px;
    right: -30px;
    animation-delay: 2s;
}

.f-icon {
    font-size: 1.5rem;
    color: var(--clr-primary-light);
}

.f-text {
    font-weight: 600;
    color: var(--clr-primary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background-color: var(--clr-bg-white);
}

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

.section-header p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--clr-bg-light);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background-color: var(--clr-bg-white);
    border-color: var(--clr-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--clr-primary-light);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(60, 169, 85, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    color: var(--clr-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* --- SEO Content Section --- */
.seo-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--clr-bg-white) 0%, var(--clr-bg-light) 100%);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.seo-content-copy {
    max-width: 650px;
}

.seo-content-copy h2 {
    margin-bottom: 20px;
}

.seo-content-copy p {
    color: var(--clr-text-light);
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.seo-points {
    display: grid;
    gap: 18px;
}

.seo-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: flex-start;
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.seo-point i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(60, 169, 85, 0.12);
    color: var(--clr-primary);
    font-size: 1.8rem;
}

.seo-point h3 {
    color: var(--clr-primary);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.seo-point p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* --- Mockup Section (Listings) --- */
.mockup-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
}

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

.listing-card {
    background-color: var(--clr-bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.listing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--clr-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.card-badge.new {
    background-color: var(--clr-primary-light);
}

.card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .card-img {
    transform: scale(1.08);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--clr-text-main);
}

.card-location {
    color: var(--clr-text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-weight: 400;
}

/* --- Footer --- */
.footer {
    background-color: #112A18;
    /* Very Dark Green */
    color: white;
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text,
.footer-brand .logo-icon {
    color: white;
}

.footer-brand .logo-subtitle {
    color: var(--clr-primary-light);
}

.footer-desc {
    color: #A0B3A6;
    margin: 20px 0;
    font-size: 0.95rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #A0B3A6;
    font-size: 0.95rem;
}

.link-group ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #A0B3A6;
    font-size: 0.85rem;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Info & Values Sections --- */
.bg-light {
    background-color: var(--clr-bg-light);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded-img {
    border-radius: 20px;
}

.info-section {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--clr-text-main);
}

.check-list i {
    font-size: 1.4rem;
}

.values-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    padding: 30px 20px;
    border-radius: 16px;
    background: var(--clr-bg-light);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--clr-bg-white);
}

.value-icon {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--clr-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* --- Map Feature Section --- */
.map-feature {
    padding: 100px 0;
    background-color: var(--clr-bg-white);
}

.map-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.map-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.map-content .badge {
    margin: 0 auto 1.5rem;
    display: inline-block;
}

.map-content h2 {
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.f-item {
    display: flex;
    gap: 15px;
    text-align: left;
    max-width: 260px;
}

.f-icon-small {
    font-size: 2rem;
    color: var(--clr-primary-light);
    background: rgba(60, 169, 85, 0.1);
    padding: 10px;
    border-radius: 10px;
    height: fit-content;
}

.f-item h4 {
    color: var(--clr-text-main);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.f-item p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Interactive SVG Map Styles */
#interactive-map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

#interactive-map svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(30, 78, 44, 0.1));
}

#interactive-map svg path {
    transition: fill 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    transform-origin: center;
}

#interactive-map svg path:hover {
    fill: var(--clr-accent) !important;
}

.map-tooltip {
    position: absolute;
    background: rgba(30, 78, 44, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -100%);
    margin-top: -10px;
    white-space: nowrap;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    color: var(--clr-text-main);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--clr-accent);
}

/* --- Contact Page --- */
.contact-hero {
    padding-top: 100px;
    padding-bottom: 20px;
}

.contact-section {
    padding: 40px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--clr-bg-white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.info-card .icon-box {
    background: var(--clr-primary-light);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-details h4 {
    color: var(--clr-primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-details p {
    color: var(--clr-text-light);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--clr-bg-white);
    padding: 40px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    color: var(--clr-primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--clr-text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #F8FAFC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary-light);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(60, 169, 85, 0.1);
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    color: var(--clr-text-light);
    font-size: 0.95rem;
    text-align: center;
}

.form-status.success {
    color: var(--clr-primary);
}

.form-status.error {
    color: #B42318;
}

.w-100 {
    width: 100%;
}

.mt-5 {
    margin-top: 3rem;
}

/* --- Shared Page Utilities --- */
.bg-fixed-agri {
    background-image: linear-gradient(rgba(30, 78, 44, 0.88), rgba(15, 39, 22, 0.95)), url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&q=80&w=1920');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}

.bg-fixed-agri .section-header h2,
.bg-fixed-agri .section-header p {
    color: white;
}

.bg-fixed-agri .badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Legal Pages (Terms & Privacy) --- */
.legal-content {
    background: var(--clr-bg-white);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.legal-content h3 {
    color: var(--clr-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-content p,
.legal-content ul {
    color: var(--clr-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .seo-content-grid {
        grid-template-columns: 1fr;
    }

    .info-content {
        margin-bottom: 40px;
    }

    .check-list li {
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
        /* Hide by default on mobile */
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .nav-menu .btn {
        width: 100%;
        margin-top: 10px;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .seo-content-section {
        padding: 70px 0;
    }

    .seo-point {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
