/* Static HTML copy of public/assets/css/style.css */
/* ============================================
   Ferahnur Halı - Static Website Styles
   Design inspired by Zeminhali
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #0f5132;
    --primary-dark: #0a3d25;
    --accent-gold: #c8a96a;
    --accent-gold-light: #d4b97a;
    --bg-light: #f7f7f7;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    margin: 1.5rem auto;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.nav-container {
    padding-left: 250px;
    padding-right: 250px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    height: 60px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #25D366;
}

/* Dropdown Menus */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(15, 81, 50, 0.08);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Language Dropdown */
.lang-dropdown .dropdown-menu-lang {
    min-width: 140px;
    right: 0;
    left: auto;
}

.lang-toggle {
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-option.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legacy Language Switcher (unused but kept for compat) */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Transparent header on hero slider (homepage) */
.hero-slider-section .header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.hero-slider-section .header .logo,
.hero-slider-section .header .nav-link {
    color: var(--white);
}

.hero-slider-section .header .logo-img {
    filter: brightness(0) invert(1);
}

.hero-slider-section .header .mobile-toggle span {
    background: var(--white);
}

.hero-slider-section .header.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: #25D366;
    color: var(--white);
}

.btn-primary:hover {
    background: #1eba59;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #25D366;
    color: var(--white);
}

.btn-secondary:hover {
    background: #1eba59;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
}

.btn-outline:hover {
    background: #25D366;
    color: var(--white);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(15, 81, 50, 0.72) 0%, rgba(0, 0, 0, 0.35) 100%),
        url("../img/cami-ici-genel-hali-uygulamasi.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-title span {
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider (Zeminhali-style cards) */
.hero-slider-section {
    background: var(--white);
    padding: 0;
    min-height: 100vh;
}

.hero-slider-section .container {
    max-width: 100%;
    padding: 0;
}

.hero-slider-header {
    text-align: center;
    max-width: 700px;
    margin: 5rem auto 2rem;
}

.hero-slider-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.hero-slider-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.hero-slider-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

.hero-slide-card {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-slide-card:hover .hero-slide-image img {
    transform: scale(1.08);
}

.hero-slide-meta {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
}

.hero-slide-category {
    background: rgba(0, 0, 0, 0.45);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.hero-slide-rating {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-slide-rating span {
    font-size: 0.8rem;
}

.hero-slide-body {
    position: absolute;
    left: 5%;
    top: 58%;
    transform: translateY(-50%);
    background: transparent;
    padding: 0;
    max-width: 700px;
    width: 90%;
    box-shadow: none;
    text-align: left;
    z-index: 2;
}

.hero-slide-title {
    font-size: 1.8rem;
    color: var(--white);
}

.hero-slide-description {
    font-size: 0.95rem;
    color: var(--white);
}

.hero-slide-footer {
    margin-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-slide-footer small {
    font-size: 0.82rem;
    color: var(--text-gray);
}

.hero-slide-actions {
    display: flex;
    gap: 0.5rem;
}

.hero-slide-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 3;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 3;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev {
    left: 1.5rem;
}

.hero-slider-next {
    right: 1.5rem;
}

/* Contact CTA Section */
.contact-cta {
    background: #fdf2f4;
    padding: 4rem 0;
}

.contact-cta-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-cta-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

.contact-cta-green {
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
}

.contact-cta-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon svg {
    stroke: #25D366;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-card .btn {
    background: #25D366;
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.contact-card .btn:hover {
    background: #1eba59;
    color: var(--white);
}

.contact-cta-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.product-footer .btn {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

/* About page (Zeminhali-inspired) */
.about-page .about-hero {
    min-height: 58vh;
    padding-top: 7rem;
    background:
        radial-gradient(900px 500px at 20% 20%, rgba(200, 169, 106, 0.35), transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(15, 81, 50, 0.55) 100%),
        url("../img/features-img.jpeg");
    background-size: cover;
    background-position: center;
}

/* About page v2 (cleaner, more like ZeminHalı) */
.about-page.about-v2 .about-hero,
.about-page.about-v2 .about-story,
.about-page.about-v2 .about-longform,
.about-page.about-v2 .about-values,
.about-page.about-v2 .about-stats {
    display: none;
}

.about2-hero {
    padding: 7.5rem 0 3.5rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.20) 45%, rgba(255, 255, 255, 1) 85%),
        url("../img/hero-hali-uretim-fabrika.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about2-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.about2-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(15, 81, 50, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 1rem;
}

.about2-title {
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    color: var(--white);
}

.about2-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 760px;
}

.about2-subtitle span {
    color: var(--accent-gold);
    font-weight: 700;
}

.about2-story {
    padding: 4.5rem 0;
    background: var(--white);
}

.about2-story-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
    align-items: start;
}

.about2-story-copy h2 {
    margin-bottom: 0.75rem;
}

.about2-prose p {
    color: var(--text-gray);
    line-height: 1.95;
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
}

.about2-prose strong {
    color: var(--text-dark);
}

.about2-story-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 110px;
    background: var(--white);
}

.about2-story-media img {
    width: 100%;
    height: auto;
    display: block;
}

.about2-sections {
    padding: 4.5rem 0;
    background: var(--bg-light);
}

.about2-section-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.about2-section-card + .about2-section-card {
    margin-top: 1.75rem;
}

.about2-section-card h3 {
    margin-bottom: 0.75rem;
}

.about2-values {
    padding: 4.5rem 0;
    background: var(--white);
}

.about2-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.about2-value {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1.4rem 1.4rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    background: var(--white);
}

.about2-value:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about2-value-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.about2-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.12);
    flex: 0 0 auto;
}

.about2-value h4 {
    margin: 0;
    font-size: 1.02rem;
}

.about2-value p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about2-stats {
    padding: 4.5rem 0;
    background: var(--bg-light);
}

.about2-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.about2-stat {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.about2-stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about2-stat-label {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.about2-stat-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .about2-story-grid {
        grid-template-columns: 1fr;
    }
    .about2-story-media {
        position: relative;
        top: auto;
    }
    .about2-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about2-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about2-section-card {
        padding: 1.6rem;
    }
    .about2-values-grid {
        grid-template-columns: 1fr;
    }
    .about2-stats-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.about-page .hero-subtitle span {
    color: var(--accent-gold);
}

.about-story {
    padding: 5rem 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: start;
}

.about-story-media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    position: sticky;
    top: 110px;
}

.about-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.25rem 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-prose p {
    color: var(--text-gray);
    line-height: 1.95;
    font-size: 1.02rem;
    margin-bottom: 1.1rem;
}

.about-prose strong {
    color: var(--text-dark);
}

.about-longform {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-longform-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.about-longform-card + .about-longform-card {
    margin-top: 2rem;
}

.about-longform-card h3 {
    margin-bottom: 1rem;
}

.about-values {
    padding: 5rem 0;
    background: var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-value-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(15, 81, 50, 0.12);
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-value-card h4 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.about-value-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-stats {
    padding: 5rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-stat-card .stat-number {
    margin-bottom: 0.4rem;
}

.about-stat-card .stat-label {
    margin-bottom: 0.35rem;
    color: rgba(255,255,255,0.95);
}

.about-stat-card .stat-description {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-story-media {
        position: relative;
        top: auto;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-card,
    .about-longform-card {
        padding: 1.6rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Cami Halısı Üretimi Section */
.cami-uretim-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.cami-uretim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.cami-uretim-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.cami-uretim-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Services Grid Section */
.services-grid-section {
    padding: 5rem 0;
}

/* Map Embed */
.map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h4 {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Neden Ferahnur Section */
.neden-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.neden-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.neden-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.neden-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.neden-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.neden-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.neden-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Teklif CTA Section */
.teklif-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.teklif-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.teklif-cta-text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.teklif-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

.teklif-cta-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.teklif-cta-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.teklif-cta-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.teklif-cta-form input[type="email"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

/* References/Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.project-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.project-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-info {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Company Logos Section */
.logos-section {
    background: var(--white);
    padding: 3rem 0;
}

.logos-slider {
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    padding: 2rem 0;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .nav-container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cami-uretim-content {
        grid-template-columns: 1fr;
    }

    .teklif-cta-content {
        grid-template-columns: 1fr;
    }

    .neden-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        gap: 0.5rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
    }

    .hero {
        min-height: 70vh;
        padding-top: 5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-grid,
    .products-grid,
    .projects-grid,
    .services-grid,
    .neden-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Cami Halısı Extra Content
   (Scoped styles: .cami-*)
   ========================= */
.cami-extra {
    padding: 4.75rem 0;
}

.cami-section {
    background: var(--white);
}

.cami-section-alt {
    background: var(--bg-light);
}

.cami-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.cami-image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cami-gallery-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cami-gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.cami-gallery-caption {
    padding: 0.85rem 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: center;
}

.cami-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.cami-card-highlight {
    background: linear-gradient(135deg, rgba(15,81,50,0.08) 0%, rgba(200,169,106,0.12) 100%);
}

.cami-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    margin-top: 1.25rem;
}

.cami-callout-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(15,81,50,0.10);
    color: var(--primary-color);
    font-weight: 900;
    flex: 0 0 auto;
    font-size: 1.2rem;
}

.cami-callout-green {
    border-color: rgba(15,81,50,0.15);
    background: linear-gradient(135deg, rgba(15,81,50,0.08) 0%, rgba(200,169,106,0.08) 100%);
}

.cami-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cami-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.cami-step-no {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(15,81,50,0.10);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.cami-step h4 {
    margin-bottom: 0.35rem;
}

.cami-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.cami-inline-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 1.6rem;
}

.cami-inline-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.cami-inline-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cami-inline-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

.cami-divider-block {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 2.5rem 0;
}

.cami-check-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.cami-check-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.cami-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 4px;
    background: rgba(15,81,50,0.10);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 900;
}

.cami-feature-box {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 1.7rem;
    box-shadow: var(--shadow-sm);
}

.cami-faq {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.cami-faq details {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 1.1rem;
}

.cami-faq summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--text-dark);
    list-style: none;
}

.cami-faq summary::-webkit-details-marker {
    display: none;
}

.cami-faq details p {
    margin-top: 0.85rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.cami-side-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.06);
}

.cami-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cami-hero-note {
    max-width: 1000px;
}

@media (max-width: 1024px) {
    .cami-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .cami-cards-3 {
        grid-template-columns: 1fr;
    }

    .cami-image-gallery {
        grid-template-columns: 1fr 1fr;
    }
}


