/* ===========================
   GLOBAL STYLES
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

:root {
    --primary-green: #05961d;
    --secondary-green: #047827;
    --light-green: #10b91b;
    --accent-green: #6ee7b7;
    --dark-green: #064e3b;
    --bright-green: #34d399;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-green);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    display: none;
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary-green);
    letter-spacing: 1px;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: var(--light-green);
    transform: scale(1.05);
}

.search-bar {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
}

.search-bar::before {
    content: "🔍";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--light-green);
}

nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-green);
}

.whatsapp-btn {
    background-color: var(--light-green);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
}

/* ===========================
   WAVE DIVIDERS
   =========================== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-top {
    transform: rotate(180deg);
}

.wave-top svg {
    fill: var(--white);
}

.wave-bottom svg {
    fill: var(--white);
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .wave-divider svg {
        height: 40px;
    }
}

/* ===========================
   HERO SECTION WITH SLIDER
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 8vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(5, 150, 105, 0.05) 0%, 
        rgba(5, 150, 105, 0.15) 40%,
        rgba(5, 150, 105, 0.25) 70%,
        rgba(6, 78, 59, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 
        -2px -2px 0 var(--primary-green),
        2px -2px 0 var(--primary-green),
        -2px 2px 0 var(--primary-green),
        2px 2px 0 var(--primary-green),
        0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    text-shadow: 
        -1px -1px 0 var(--primary-green),
        1px -1px 0 var(--primary-green),
        -1px 1px 0 var(--primary-green),
        1px 1px 0 var(--primary-green),
        0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.4), 0 2px 4px -1px rgba(5, 150, 105, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.5), 0 4px 6px -2px rgba(5, 150, 105, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--light-green);
    border-color: var(--light-green);
    transform: scale(1.2);
}

/* ===========================
   MAIN CONTAINER
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   ABOUT SECTION (Aydın'dan Türkiye'ye)
   =========================== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features li::before {
    content: "✓";
    background-color: var(--light-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--light-green);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
}

/* ===========================
   SERVICE GRID
   =========================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    height: 380px;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-green);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.3) 60%, 
        rgba(17, 24, 39, 0.85) 100%);
    z-index: 1;
    border-radius: 16px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.95;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: transparent;
    z-index: 2;
    text-align: center;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.service-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.service-card:hover .service-card-btn {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.4), 0 4px 6px -2px rgba(5, 150, 105, 0.3);
}

/* ===========================
   NEWS/BLOG SECTION
   =========================== */
.news-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-date {
    color: var(--light-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.news-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */
.how-it-works {
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step-item {
    position: relative;
}

.step-icon {
    width: 120px;
    height: 120px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--white);
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border: 3px solid var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--light-green);
    font-size: 1.1rem;
}

.step-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   EXPERTISE SECTION
   =========================== */
.expertise-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.expertise-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.expertise-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-list {
    list-style: none;
}

.expertise-item {
    margin-bottom: 2rem;
}

.expertise-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.expertise-item-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.expertise-item-header strong {
    color: var(--light-green);
    font-size: 1.1rem;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--light-green), var(--bright-green));
    border-radius: 10px;
    transition: width 1s ease;
}

/* ===========================
   CONTACT CTA SECTION
   =========================== */
.contact-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: 20px;
}

.contact-cta-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.contact-cta-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contact-cta-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content h2 .highlight {
    color: var(--light-green);
}

.contact-cta-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-btn.whatsapp {
    background-color: var(--light-green);
    color: var(--white);
}

.contact-btn.whatsapp:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
}

.contact-btn.phone {
    background-color: transparent;
    color: var(--light-green);
    border: 2px solid var(--light-green);
}

.contact-btn.phone:hover {
    background-color: var(--light-green);
    color: var(--white);
}

/* ===========================
   WHY US CARDS
   =========================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.why-us-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-us-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d3818 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 0;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===========================
   MINI HERO (Services Page)
   =========================== */
.mini-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.mini-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.mini-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.mini-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.mini-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.05) translateX(0) translateY(0);
    }
    100% {
        transform: scale(1.1) translateX(-2%) translateY(-2%);
    }
}

.mini-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(5, 150, 105, 0.08) 0%, 
        rgba(5, 150, 105, 0.25) 40%,
        rgba(6, 78, 59, 0.45) 80%,
        rgba(6, 78, 59, 0.6) 100%);
    z-index: 2;
}

.mini-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mini-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.mini-hero-breadcrumb a {
    color: var(--white);
    transition: all 0.3s ease;
}

.mini-hero-breadcrumb a:hover {
    color: var(--accent-green);
}

.mini-hero-breadcrumb span:not(:last-child) {
    opacity: 0.6;
}

.mini-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 
        -2px -2px 0 var(--primary-green),
        2px -2px 0 var(--primary-green),
        -2px 2px 0 var(--primary-green),
        2px 2px 0 var(--primary-green),
        0 8px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mini-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        -1px -1px 0 var(--primary-green),
        1px -1px 0 var(--primary-green),
        -1px 1px 0 var(--primary-green),
        1px 1px 0 var(--primary-green),
        0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mini Hero Stats */
.mini-hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeIn 1.2s ease;
}

.mini-hero-stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.mini-hero-stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mini-hero-stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.mini-hero-stat-item .stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Mini Slider Navigation */
.mini-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.mini-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.mini-slider-dot.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(5, 150, 105, 0.6);
}

/* Scroll Indicator - Hidden for compact design */
.scroll-indicator {
    display: none;
}

/* Responsive Mini Hero */
@media (max-width: 768px) {
    .mini-hero {
        height: 45vh;
        min-height: 350px;
        max-height: 400px;
        margin-bottom: 2rem;
    }

    .mini-hero h1 {
        font-size: 2rem;
    }

    .mini-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mini-hero {
        height: 40vh;
        min-height: 320px;
        max-height: 360px;
    }

    .mini-hero h1 {
        font-size: 1.75rem;
    }

    .mini-hero p {
        font-size: 0.9375rem;
    }

    .mini-hero-breadcrumb {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
}

/* ===========================
   PREMIUM CTA SECTION
   =========================== */
.premium-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        var(--gray-50) 0%, 
        var(--white) 50%,
        var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.premium-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.premium-cta-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding-right: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 50px;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-badge svg {
    width: 20px;
    height: 20px;
}

.cta-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.feature-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: 'Inter', sans-serif;
}

.feature-text span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.primary,
.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.visual-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.badge-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Premium CTA */
@media (max-width: 968px) {
    .premium-cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-content {
        padding-right: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .visual-card {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .premium-cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
    }

    .visual-card img {
        height: 300px;
    }
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-category {
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.4);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.5);
}

.gallery-category h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-green);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 80, 22, 0.85);
    color: var(--white);
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
    transform: translateY(0);
}

/* ===========================
   CONTENT SECTIONS
   =========================== */
.content-section {
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.content-section h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===========================
   REGION SECTION (SEO)
   =========================== */
.region-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.region-item h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.region-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
}

.contact-info {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--secondary-green);
    font-weight: 500;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===========================
   PREMIUM FOOTER
   =========================== */
.premium-footer {
    background: linear-gradient(180deg, 
        var(--gray-900) 0%, 
        #0a2818 50%,
        var(--dark-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.premium-footer .container {
    position: relative;
    z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem auto 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.newsletter-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.newsletter-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.newsletter-text p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9375rem;
    min-width: 300px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.newsletter-form button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover svg {
    transform: translateX(4px);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    filter: drop-shadow(0 4px 8px rgba(5, 150, 105, 0.3));
}

.footer-brand h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(5, 150, 105, 0.2);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-green);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(5, 150, 105, 0.3);
}

.social-link.social-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom strong {
    color: var(--white);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 2rem;
        margin: 3rem auto;
    }

    .newsletter-text h3 {
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-image {
        height: 60px;
        max-width: 200px;
    }

    .footer-description {
        text-align: center;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 1.5rem;
    }

    .newsletter-icon {
        width: 56px;
        height: 56px;
    }

    .newsletter-icon svg {
        width: 28px;
        height: 28px;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
}

/* ===========================
   OLD FOOTER (DEPRECATED)
   =========================== */
footer {
    background: linear-gradient(135deg, #0a2818 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--light-green);
    transform: translateY(-3px);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--light-green);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-info li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.3rem;
}

.footer-map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--light-green);
    font-weight: 600;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        order: 4;
        display: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav ul li a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    nav ul li a:hover {
        background: var(--gray-100);
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -0.01em;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat {
        min-width: 120px;
        padding: 1rem 1.25rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .about-section,
    .expertise-section,
    .contact-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        height: 320px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .section-divider {
        margin: 3rem 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-stat {
        min-width: auto;
        padding: 1rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .container {
        padding: 2rem 1rem;
    }
}

/* ===========================
   SECTION DIVIDER
   =========================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--gray-300) 50%, 
        transparent 100%);
    margin: 5rem 0;
    position: relative;
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===========================
   CORPORATE PAGE STYLES
   =========================== */

/* Corporate Stats Section */
.corporate-stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.corporate-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.corporate-stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.corporate-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.corporate-stat-card:hover::before {
    transform: scaleX(1);
}

.corporate-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.2);
    border-color: var(--primary-green);
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
}

.stat-icon-wrapper .stat-icon {
    font-size: 3rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.corporate-stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.stat-content {
    position: relative;
}

.stat-content .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.stat-content .stat-plus {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-left: 0.25rem;
}

.stat-content .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 50px;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-story-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(5, 150, 105, 0.05);
    transform: translateX(10px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.highlight-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.highlight-text span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Visual Grid */
.about-story-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 500px;
}

.visual-card.large {
    grid-row: 1 / 3;
    grid-column: 1;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card .visual-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.125rem;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
    border-color: var(--primary-green);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.mv-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.mv-list li:last-child {
    border-bottom: none;
}

.mv-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.2);
    border-color: var(--primary-green);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--light-green) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    text-align: right;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-year::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0.1);
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -2rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.2);
    border-color: var(--primary-green);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Responsive Corporate Styles */
@media (max-width: 968px) {
    .corporate-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-grid {
        height: 400px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-year {
        text-align: left;
        font-size: 2rem;
    }
    
    .timeline-year::after {
        left: -60px;
        right: auto;
    }
    
    
    .timeline-item:nth-child(even) .timeline-year::after {
        left: -60px;
    }
}

@media (max-width: 768px) {
    .corporate-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .visual-card.large {
        grid-row: auto;
        grid-column: auto;
        height: 300px;
    }
    
    .visual-card.small {
        height: 200px;
    }
}

/* ===========================
   REGIONS PAGE STYLES
   =========================== */
.regions-overview-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.section-badge svg {
    width: 20px;
    height: 20px;
}

.regions-overview-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.regions-overview-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.regions-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.region-stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.region-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.region-stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.region-stat-card .stat-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.region-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.region-stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Simple Regions List */
.regions-list-section {
    padding: 4rem 0;
    background: var(--white);
}

.regions-simple-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.region-item-simple {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.region-item-simple:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.region-simple-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.region-simple-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.region-simple-content {
    flex: 1;
}

.region-simple-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.region-simple-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.region-simple-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.region-simple-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.region-simple-button svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .regions-overview-section h2 {
        font-size: 2rem;
    }
    
    .regions-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .region-item-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .region-item-simple:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }
    
    .region-simple-button {
        width: 100%;
        justify-content: center;
    }

    /* Header Mobile Fixes */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
        position: relative;
    }

    .logo {
        flex: 1;
        z-index: 1001;
    }

    .logo-image {
        height: 50px;
        max-width: 140px;
        object-fit: contain;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        padding: 0.5rem;
        z-index: 1001;
        background: var(--white);
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
        width: 44px;
        height: 44px;
        min-width: 44px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
        background: var(--gray-50);
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--border-light);
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    nav ul li {
        border-bottom: 1px solid var(--border-light);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    nav ul li a:hover {
        background: var(--gray-50);
        padding-left: 2rem;
    }

    nav ul li a.active {
        background: linear-gradient(90deg, rgba(5, 150, 29, 0.1) 0%, transparent 100%);
        border-left: 4px solid var(--primary-green);
    }

    nav ul li a.active::after {
        display: none;
    }

    .header-container .whatsapp-btn {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: 85vh;
        max-height: 85vh;
    }

    .hero-content {
        padding: 1rem 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        text-shadow: 
            -1px -1px 0 var(--primary-green),
            1px -1px 0 var(--primary-green),
            -1px 1px 0 var(--primary-green),
            1px 1px 0 var(--primary-green),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
        text-shadow: 
            -0.5px -0.5px 0 var(--primary-green),
            0.5px -0.5px 0 var(--primary-green),
            -0.5px 0.5px 0 var(--primary-green),
            0.5px 0.5px 0 var(--primary-green),
            0 1px 6px rgba(0, 0, 0, 0.3);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }

    .hero-stats {
        display: none;
    }

    .slider-nav {
        bottom: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    /* Container Mobile */
    .container {
        padding: 2rem 1.5rem;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    /* Service Grid Mobile */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        height: auto;
    }

    .service-card img {
        height: 200px;
    }

    /* How It Works Mobile */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    /* Expertise Section Mobile */
    .expertise-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-image {
        height: 250px;
    }

    /* Contact CTA Mobile */
    .contact-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-cta-content h2 {
        font-size: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-cta-image {
        height: 250px;
    }

    /* Why Us Grid Mobile */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Floating WhatsApp Mobile */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }

    /* Contact Form Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        max-height: 80vh;
    }

    .hero-content {
        padding: 0.75rem 0.875rem;
    }

    .hero h1 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 0.625rem 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .hero-stat {
        padding: 0.625rem 0.75rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.625rem;
    }

    .slider-nav {
        bottom: 6px;
        gap: 6px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
        border-width: 1px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }

    /* Mini Hero Extra Small */
    .mini-hero {
        min-height: 40vh;
    }

    .mini-hero-content {
        padding: 1.25rem 1rem;
    }

    .mini-hero h1 {
        font-size: 1.35rem;
    }

    .mini-hero p {
        font-size: 0.8rem;
    }

    .mini-hero-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .scroll-indicator {
        font-size: 0.75rem;
    }

    /* About Story Section Mobile (kurumsal.html) */
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .visual-card {
        height: 250px;
    }

    .visual-card.large {
        grid-column: auto;
        grid-row: auto;
    }

    /* Corporate Stats Mobile */
    .corporate-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .corporate-stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    /* Mission Vision Mobile */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-year {
        text-align: left;
        font-size: 2rem;
    }

    .timeline-year::after {
        left: -60px;
        right: auto;
    }

    /* Category Navigation Mobile (hizmetlerimiz.html) */
    .category-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .category-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }

    /* Gallery Grid Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }

    /* Mini Hero Extra Small */
    .mini-hero h1 {
        font-size: 1.5rem;
    }

    .mini-hero p {
        font-size: 0.9rem;
    }

    /* Corporate Stats Extra Small */
    .corporate-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-description {
        font-size: 0.85rem;
    }

    /* Category Navigation Extra Small */
    .category-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
    }

    /* Timeline Extra Small */
    .timeline-year {
        font-size: 1.75rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }
}

