/* ==========================================================================
   Amasra Orman Ürünleri - Design System & Stylesheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Custom Variables (Design Tokens) */
:root {
    /* Color Palette */
    --primary-deep: #0D2C1D;      /* Deep Forest Green */
    --primary: #14452F;           /* Forest Green */
    --primary-light: #1E5C41;     /* Mid Green */
    --primary-accent: #2D865F;    /* Soft Green Accent */
    --accent: #D4AF37;            /* Premium Wood Gold */
    --accent-hover: #C5A02E;      /* Rich Gold Hover */
    --accent-light: #F9F5E8;      /* Creamy gold hint background */
    --text-dark: #1E293B;         /* Charcoal */
    --text-muted: #64748B;        /* Slate Gray */
    --text-light: #F8FAFC;        /* Off-white */
    --bg-light: #F4F7F5;          /* Very light forest tint */
    --bg-white: #FFFFFF;
    --success: #10B981;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(13, 44, 29, 0.08), 0 4px 6px -2px rgba(13, 44, 29, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(13, 44, 29, 0.12), 0 10px 10px -5px rgba(13, 44, 29, 0.06);
    --shadow-gold: 0 10px 20px -3px rgba(212, 175, 55, 0.25);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-deep);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-deep);
}

/* Reuseable Components */
.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-light {
    background-color: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-deep);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-3px);
}

.btn-outline-green {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-green:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(13, 44, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

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

.nav-link:hover {
    color: var(--text-light);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-quick {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
}

.phone-quick i {
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.15);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: zoomOut 15s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(9, 31, 20, 0.95) 0%, rgba(13, 44, 29, 0.8) 50%, rgba(9, 31, 20, 0.6) 100%);
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Stats Section */
.stats-bar {
    background-color: var(--primary-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.feature-box {
    display: flex;
    gap: 16px;
}

.feature-box-icon {
    font-size: 1.4rem;
    color: var(--primary);
    background-color: var(--bg-light);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-box-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.feature-box-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--primary-deep);
    color: var(--text-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border-left: 5px solid var(--accent);
    max-width: 240px;
}

.about-badge-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.about-badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(13, 44, 29, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-icon-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--primary-deep);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
}

.service-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--accent-hover);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(20, 73, 49, 0.15);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-node {
    background-color: var(--accent);
    color: var(--primary-deep);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.15);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.process-card {
    width: 45%;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    transition: var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.process-card-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.process-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}

.why-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.why-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(13, 44, 29, 0.05);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(20, 73, 49, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.client-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-deep);
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-intro p {
    color: var(--text-muted);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item-icon {
    background-color: rgba(20, 73, 49, 0.08);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-title {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-content {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-deep);
}

.contact-item-content a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(13, 44, 29, 0.05);
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-deep);
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(13, 44, 29, 0.1);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(20, 73, 49, 0.08);
}

textarea.form-input {
    resize: none;
    height: 140px;
}

.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-md);
    display: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Map Styling */
.map-container {
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Call to Action Banner */
.cta-banner {
    background-color: var(--primary-deep);
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* WhatsApp Float Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Footer Section */
.footer {
    background-color: #05140D;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-light);
}

.footer-logo-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.footer-desc {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.social-link {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

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

.footer-title {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link:hover {
    color: var(--text-light);
}

/* Custom Animation Keyframes */
@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        border-right: none;
    }
    
    .about-grid, .why-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-badge {
        right: 0;
    }
    
    .services-grid, .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        background-color: var(--primary-deep);
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-deep);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }

    .stats-grid, .about-features, .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        padding-right: 0;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-badge {
        right: 15px;
        bottom: 15px;
        padding: 15px 20px;
        max-width: 180px;
    }

    .about-badge-title {
        font-size: 1.8rem;
    }

    .about-badge-text {
        font-size: 0.8rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-node {
        left: 20px;
        transform: translateX(0);
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .process-step, .process-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .process-card {
        width: 100%;
    }
    
    .services-grid, .testimonials-slider, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   Gallery & Lightbox Styles
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: 1px solid rgba(13, 44, 29, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 31, 20, 0.9) 0%, rgba(9, 31, 20, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-tag {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox popup */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 31, 20, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent);
}

/* ==========================================================================
   Admin Panel Styles
   ========================================================================== */
.admin-body {
    background-color: var(--bg-light);
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.admin-nav {
    background-color: var(--primary-deep);
    color: var(--text-light);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent);
}

.admin-nav-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
}

.admin-nav-title span {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.admin-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 70px);
}

.admin-sidebar {
    background-color: var(--primary-deep);
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.admin-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.admin-menu-btn.active {
    background-color: var(--accent);
    color: var(--primary-deep);
}

.admin-main {
    padding: 40px;
    overflow-y: auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
    animation: fadeIn 0.4s ease-out forwards;
}

.admin-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 44, 29, 0.05);
    margin-bottom: 30px;
}

.admin-card-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(13, 44, 29, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.admin-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-deep);
}

.admin-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(13, 44, 29, 0.1);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.admin-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 73, 49, 0.08);
}

textarea.admin-form-input {
    height: 110px;
    resize: none;
}

/* Image preview box */
.admin-img-preview {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-md);
    border: 2px dashed rgba(13, 44, 29, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 10px;
    background-color: var(--bg-light);
    position: relative;
}

.admin-img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Admin lists and cards grid */
.admin-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.admin-item-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(13, 44, 29, 0.05);
    display: flex;
    flex-direction: column;
}

.admin-item-img {
    height: 150px;
    position: relative;
}

.admin-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-item-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
}

.admin-item-btn {
    background-color: rgba(9, 31, 20, 0.85);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.admin-item-btn:hover {
    background-color: #EF4444;
}

.admin-item-info {
    padding: 15px;
    flex-grow: 1;
}

.admin-item-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.admin-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Review approval status indicator */
.admin-review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(13, 44, 29, 0.05);
}

/* Toast Alert Notification */
.admin-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-deep);
    color: var(--text-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 9999;
}

.admin-toast.show {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Admin Login Interface Styles
   ========================================================================== */
.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(9, 31, 20, 0.96) 0%, rgba(20, 73, 49, 0.94) 100%), 
                url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.admin-login-card {
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    max-width: 440px;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--shadow-gold);
    border: 2px solid var(--accent);
    animation: fadeIn 0.5s ease-out forwards;
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-logo i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(20, 73, 49, 0.2));
}

.admin-login-logo h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-deep);
    letter-spacing: 1px;
}

.admin-login-logo span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.login-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    font-size: 1rem;
}

.login-input {
    padding-left: 42px !important;
}

.login-help-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: right;
}

.login-help-text code {
    background-color: var(--bg-light);
    color: var(--primary-deep);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: inherit;
}

.login-error-msg {
    display: none;
    color: #EF4444;
    background-color: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    align-items: center;
    gap: 8px;
    animation: shake 0.3s ease;
}

.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.login-btn:hover {
    background-color: var(--accent);
    color: var(--primary-deep);
    box-shadow: var(--shadow-gold);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* ==========================================================================
   Admin Mobile Responsive Styles
   ========================================================================== */
.admin-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    margin-right: 15px;
    transition: var(--transition-fast);
}

.admin-mobile-toggle:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .admin-mobile-toggle {
        display: block;
    }

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

    .admin-sidebar {
        position: fixed;
        left: -260px;
        top: 70px;
        width: 260px;
        height: calc(100vh - 70px);
        z-index: 1000;
        transition: var(--transition-smooth);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    }

    .admin-sidebar.active {
        left: 0;
    }

    .admin-main {
        padding: 24px 15px;
    }

    .admin-nav {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .admin-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .admin-mobile-toggle {
        position: absolute;
        left: 15px;
        top: 15px;
    }

    .admin-nav-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .admin-nav-actions .btn {
        flex-grow: 1;
        text-align: center;
        font-size: 0.8rem;
        padding: 10px;
    }

    .admin-grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-card {
        padding: 20px 15px;
    }

    .admin-card-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================================
   Gelen Keşif Talepleri (Inbox) Styles
   ========================================================================== */
.badge-count {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    min-width: 22px;
    text-align: center;
}

.admin-menu-btn:hover .badge-count {
    background-color: white;
    color: #ef4444;
}

.messages-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-card-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(13, 44, 29, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 5px solid #10b981; /* Contacted */
}

.message-card-item.new-message {
    border-left-color: #ef4444; /* New */
    background-color: rgba(239, 68, 68, 0.01);
}

.message-card-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 44, 29, 0.15);
}

.message-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(13, 44, 29, 0.08);
}

.message-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.message-meta-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.message-text-content {
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    white-space: pre-wrap;
    border-left: 3px solid var(--primary);
}

.message-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-message-action {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-message-action.contacted {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-message-action.contacted:hover {
    background-color: #10b981;
    color: white;
}

.btn-message-action.delete {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-message-action.delete:hover {
    background-color: #ef4444;
    color: white;
}

.no-messages-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-messages-placeholder i {
    font-size: 3.5rem;
    color: rgba(13, 44, 29, 0.15);
    margin-bottom: 16px;
    display: block;
}



