/* ==========================================
   ARVEN ÇEVRE YÖNETİMİ - STYLE.CSS
   Modern Corporate Website Styles
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - from Logo */
    --primary-dark: #1B5E20;
    --primary: #2E7D32;
    --primary-light: #4CAF50;

    /* Secondary Colors */
    --turquoise-dark: #00838F;
    --turquoise: #00ACC1;
    --turquoise-light: #26C6DA;

    /* Accent Colors */
    --earth: #795548;
    --earth-light: #8D6E63;
    --olive: #7CB342;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-600: #757575;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #0A0A0A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--turquoise) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(0, 172, 193, 0.9) 100%);
    --gradient-text: linear-gradient(90deg, var(--turquoise) 0%, var(--primary) 50%, var(--olive) 100%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1) 0%, rgba(0, 172, 193, 0.1) 100%);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 65px;
    width: auto;
    transition: var(--transition-normal);
}

.header.scrolled .logo img {
    height: 55px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    transition: var(--transition-normal);
}

.header.scrolled .logo-text {
    color: var(--primary-dark);
}

/* Logo spin animation on page load */
.logo img {
    animation: logoSpin 1.2s ease-out;
    transition: transform 0.6s ease;
}

/* Logo spin on hover */
.logo:hover img {
    transform: rotate(360deg);
}

@keyframes logoSpin {
    0% {
        transform: rotate(-360deg) scale(0.5);
        opacity: 0;
    }

    50% {
        transform: rotate(20deg) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

/* Responsive logo text - smaller on mobile */
@media (max-width: 900px) {
    .logo-text {
        font-size: 14px;
    }

    .logo img {
        height: 50px;
    }

    .header.scrolled .logo img {
        height: 45px;
    }
}

@media (max-width: 500px) {
    .logo-text {
        font-size: 13px;
    }

    .logo img {
        height: 40px;
    }

    .header.scrolled .logo img {
        height: 38px;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.header.scrolled .nav-link {
    color: var(--gray-800);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    background: var(--primary-dark);
    color: var(--white);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.header.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(0, 172, 193, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(76, 175, 80, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 150, 136, 0.15) 0%, transparent 60%),
        linear-gradient(160deg,
            #004D40 0%,
            #00695C 15%,
            #00838F 30%,
            #00796B 50%,
            #1B5E20 70%,
            #1a472a 85%,
            #0a2e0f 100%);
    background-size: cover;
    animation: gradientPulse 20s ease infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        filter: brightness(1) saturate(1);
    }

    50% {
        filter: brightness(1.1) saturate(1.1);
    }
}

/* Overlay glow effects */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(124, 179, 66, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(0, 188, 212, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(121, 85, 72, 0.2) 0%, transparent 30%);
    pointer-events: none;
    animation: glowShift 15s ease-in-out infinite;
}

@keyframes glowShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Nature Particles Container */
.nature-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Leaf Particles */
.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 0 50% 50% 50%;
    opacity: 0.6;
    animation: leafFall linear infinite;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.leaf::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(-45deg);
}

@keyframes leafFall {
    0% {
        transform: translateY(-100px) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* Water Drop Particles */
.water-drop {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, rgba(0, 188, 212, 0.8) 0%, rgba(0, 172, 193, 0.4) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.7;
    animation: dropFall linear infinite;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5), inset 0 -2px 4px rgba(255, 255, 255, 0.3);
}

@keyframes dropFall {
    0% {
        transform: translateY(-50px) scale(1);
        opacity: 0;
    }

    5% {
        opacity: 0.8;
    }

    95% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
}

/* Glowing Orbs (Firefly-like) */
.glow-orb {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(124, 179, 66, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: orbFloat ease-in-out infinite;
    box-shadow: 0 0 15px rgba(124, 179, 66, 0.8), 0 0 30px rgba(124, 179, 66, 0.4);
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -20px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(-20px, -40px) scale(1);
        opacity: 0.5;
    }

    75% {
        transform: translate(20px, -10px) scale(1.3);
        opacity: 0.9;
    }
}

/* Dust/Pollen Particles */
.pollen {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 235, 59, 0.6);
    border-radius: 50%;
    animation: pollenDrift linear infinite;
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
}

@keyframes pollenDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translate(100px, -100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, var(--turquoise-light) 0%, var(--olive) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition-normal);
}

.hero-scroll a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 32px;
}

.about-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    padding: 32px;
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1) 0%, rgba(0, 172, 193, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-dark);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card>p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
}

.service-features li i {
    color: var(--turquoise);
    font-size: 12px;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 36px;
    text-align: center;
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1) 0%, rgba(0, 172, 193, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary-dark);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Why Us Section Logo */
.why-us-logo {
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 768px) {
    .why-us-logo {
        max-width: 280px;
    }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--section-padding);
    background: var(--gray-900);
    color: var(--white);
}

.contact .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--turquoise-light);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.contact-info:hover {
    transform: none;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--turquoise-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--turquoise);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.contact-form:hover {
    transform: none;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--gray-900);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    margin-top: 10px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: auto;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 8px 0;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--turquoise-light);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--turquoise-light);
    width: 16px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
}

/* ==========================================
   NOTIFICATION POPUP
   ========================================== */
.notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: var(--white);
}

.notification-error {
    background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
    color: var(--white);
}

.notification i {
    font-size: 20px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 20px;
        transition: var(--transition-normal);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        color: var(--gray-800);
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-dark);
        color: var(--white);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-info,
    .contact-form {
        padding: 24px;
    }
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

/* Plant Animation */
.plant-loader {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    position: relative;
    animation: plantGrow 2s ease-in-out infinite;
}

.stem {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
    border-radius: 4px;
    transform-origin: bottom center;
}

.leaf-left {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: var(--primary-light);
    border-radius: 0 50% 50% 50%;
    transform: translateX(-100%) rotate(-30deg) scale(0);
    transform-origin: right bottom;
    animation: leafGrowLeft 2s ease-in-out infinite;
}

.leaf-right {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--olive);
    border-radius: 50% 0 50% 50%;
    transform: rotate(30deg) scale(0);
    transform-origin: left bottom;
    animation: leafGrowRight 2s ease-in-out infinite;
}

.loader-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInText 2s ease-in-out infinite;
}

.loader-subtext {
    font-size: 14px;
    color: var(--gray-600);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInText 2s ease-in-out 0.5s infinite;
}

@keyframes plantGrow {
    0% {
        transform: scaleY(0);
    }

    40% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes leafGrowLeft {

    0%,
    30% {
        transform: translateX(-100%) rotate(-30deg) scale(0);
    }

    60%,
    100% {
        transform: translateX(-100%) rotate(-30deg) scale(1);
    }
}

@keyframes leafGrowRight {

    0%,
    40% {
        transform: rotate(30deg) scale(0);
    }

    70%,
    100% {
        transform: rotate(30deg) scale(1);
    }
}

@keyframes fadeInText {

    0%,
    20% {
        opacity: 0;
        transform: translateY(10px);
    }

    50%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-5px);
    }
}

/* ==========================================
   ALIGNMENT & FOOTER UPDATES
   ========================================== */
.about-desc {
    margin-bottom: 1em;
    min-height: 140px;
    /* Adjust based on content to align next section */
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.powered-by {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-desc {
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* CORRECTED FOOTER ALIGNMENT */
.footer-bottom {
    justify-content: center !important;
    position: relative !important;
}

.powered-by {
    position: absolute !important;
    right: 0 !important;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.powered-by:hover {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .powered-by {
        position: static !important;
        margin-top: 10px;
    }

    .footer-bottom {
        gap: 10px !important;
    }
}