/* ==========================================================================
   ANTAKYA GAZETECİLER CEMİYETİ - FRONTEND STYLES
   Hatay/Antakya'nın tarihi dokusundan ilham alan yumuşak renk paleti
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Antakya Tema Renkleri (Soft Versiyon)
   -------------------------------------------------------------------------- */
:root {
    /* Ana Renkler - Yumuşak tonlar */
    --primary: #9C6644;          /* Soft kahve - Ana renk */
    --primary-dark: #7D5235;     /* Orta kahve */
    --primary-light: #B8845F;    /* Açık kahve */
    
    --secondary: #4A6670;        /* Yumuşak gri-mavi */
    --secondary-light: #5D7D88;
    --secondary-dark: #3A5058;
    
    --accent: #D4A574;           /* Soft altın */
    --accent-light: #E8C9A4;     /* Açık bej */
    --accent-dark: #C49B6A;      /* Koyu bej */
    
    /* Zeytinyağı yeşili - Yumuşak */
    --olive: #7A9A5A;            /* Soft yeşil */
    --olive-light: #9BB87A;      /* Açık yeşil */
    --olive-dark: #5F7A45;       /* Koyu yeşil */
    
    /* Nötr Renkler - Daha açık */
    --ink: #3D3D3D;              /* Yumuşak siyah */
    --ink-light: #6B6B6B;        /* Orta gri */
    --ink-lighter: #8B8B8B;      /* Açık gri */
    
    /* Kağıt/Arka Plan - Daha sıcak ve açık */
    --paper: #FDFCFA;            /* Çok açık krem */
    --paper-dark: #F7F4F0;       /* Açık krem */
    --paper-warm: #FBF9F6;       /* Sıcak beyaz */
    
    /* Durum Renkleri - Yumuşak */
    --success: #7A9A5A;
    --warning: #D4A574;
    --danger: #C47070;
    --info: #6A9AB0;
    
    /* Gradyanlar - Daha yumuşak */
    --gradient-primary: linear-gradient(135deg, #9C6644 0%, #7D5235 100%);
    --gradient-warm: linear-gradient(135deg, #D4A574 0%, #9C6644 100%);
    --gradient-olive: linear-gradient(135deg, #7A9A5A 0%, #5F7A45 100%);
    --gradient-dark: linear-gradient(135deg, #4A6670 0%, #3A5058 100%);
    --gradient-soft: linear-gradient(135deg, #F7F4F0 0%, #FDFCFA 100%);
    
    /* Tipografi */
    --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --font-body: 'Source Serif 4', 'Times New Roman', Georgia, serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Gölgeler - Daha yumuşak */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    
    /* Geçişler */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(156, 102, 68, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(122, 154, 90, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

a:hover {
    color: var(--accent);
}

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.min-vh-60 {
    min-height: 60vh;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

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

.btn-accent {
    background: var(--gradient-warm);
    color: white;
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-olive {
    background: var(--gradient-olive);
    color: white;
    border-color: var(--olive);
}

.btn-olive:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    color: white;
}

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

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

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: white;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-light {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-light:hover {
    background: var(--paper);
    color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background: linear-gradient(135deg, #4A6670 0%, #3A5058 100%);
    padding: 0.625rem 0;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
}

.top-bar-info {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.top-bar-info li i {
    color: var(--accent);
}

.top-bar-info a {
    color: rgba(255,255,255,0.8);
}

.top-bar-info a:hover {
    color: var(--accent);
}

.top-bar-social {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--accent);
    color: var(--ink);
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.logo-primary {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-tagline {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--olive);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar-nav .nav-link {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    padding: 1.75rem 1rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-warm);
    transition: var(--transition);
}

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

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

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 0.75rem 0;
    min-width: 240px;
    margin-top: 0;
    border-top: 3px solid var(--accent);
}

.dropdown-item {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    color: var(--ink);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--paper);
    color: var(--primary);
    padding-left: 1.5rem;
}

.dropdown-item i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Navbar CTA */
.navbar-cta {
    margin-left: 1.5rem;
}

.btn-cta {
    background: var(--gradient-warm);
    border-color: var(--accent);
}

/* Offcanvas Mobile Menu */
.offcanvas {
    max-width: 320px;
    background: white;
}

.offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--paper-dark);
}

.offcanvas-brand .logo-primary {
    font-size: 1.25rem;
}

.mobile-nav {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.mobile-nav > li {
    margin-bottom: 0.25rem;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--ink);
    font-family: var(--font-ui);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav > li > a:hover,
.mobile-nav > li > a.active {
    background: var(--paper);
    color: var(--primary);
}

.mobile-nav > li > a i {
    font-size: 1.125rem;
    color: var(--accent);
    width: 24px;
}

.submenu {
    list-style: none;
    padding: 0.5rem 0 0.5rem 2.5rem;
    margin: 0;
    display: none;
}

.has-submenu.open .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--ink-light);
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
}

.submenu li a:hover {
    background: var(--paper);
    color: var(--primary);
}

.submenu-toggle .toggle-icon {
    margin-left: auto;
    transition: var(--transition);
}

.has-submenu.open .toggle-icon {
    transform: rotate(180deg);
}

.mobile-contact {
    padding: 0 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--ink-light);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--paper-dark);
}

.mobile-contact-item i {
    color: var(--accent);
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--olive);
    background: rgba(107, 142, 35, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--ink-light);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* --------------------------------------------------------------------------
   Hero / Slider Section - Antakya Temalı
   -------------------------------------------------------------------------- */
.hero-slider-section {
    position: relative;
}

/* Non-slider hero section */
.hero-section {
    background: var(--gradient-soft);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 3rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--olive);
    background: rgba(122, 154, 90, 0.1);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.hero-image img,
.hero-image svg {
    max-width: 100%;
    max-height: 380px;
    width: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.hero-stats .stat-item {
    color: var(--ink);
}

.hero-stats .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-slide {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.slide-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(139, 69, 19, 0.85) 50%, rgba(107, 142, 35, 0.7) 100%);
    z-index: 3;
}

.hero-slide .container {
    position: relative;
    z-index: 10;
}

.slide-content {
    max-width: 700px;
    padding: 2rem 0;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--accent);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slide-image {
    text-align: center;
    animation: floatIn 1s ease-out;
}

.slide-image img,
.slide-image svg {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Carousel Controls */
.carousel-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.carousel-control-icon i {
    font-size: 1.25rem;
    color: white;
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-control-prev:hover .carousel-control-icon i,
.carousel-control-next:hover .carousel-control-icon i {
    color: var(--ink);
}

.carousel-indicators {
    bottom: 30px;
    gap: 8px;
}

.carousel-indicators button {
    width: 30px;
    height: 1px;
    border-radius: 0;
    background: rgba(255,255,255,0.3);
    border: none;
    margin: 0;
    padding: 0;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--accent);
    width: 50px;
}

/* --------------------------------------------------------------------------
   Stats Bar - Antakya Temalı
   -------------------------------------------------------------------------- */
.stats-bar {
    background: var(--gradient-dark);
    padding: 3rem 0;
    margin-top: -1px;
    position: relative;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    color: white;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.stat-prefix,
.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   News / Blog Cards
   -------------------------------------------------------------------------- */
.news-section,
.blog-section {
    background: var(--paper);
}

.news-grid {
    display: grid;
    gap: 2rem;
}

/* Featured News - Large */
.news-card-featured {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 991px) {
    .news-card-featured {
        grid-template-columns: 1fr;
    }
}

.news-card-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-card-featured .news-image {
    height: 100%;
    min-height: 400px;
}

.news-card-featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-featured .news-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-featured .news-category {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    background: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.news-card-featured .news-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.news-card-featured .news-title a {
    color: var(--ink);
}

.news-card-featured .news-title a:hover {
    color: var(--primary);
}

.news-card-featured .news-excerpt {
    color: var(--ink-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.news-card-featured .news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--ink-lighter);
}

.news-card-featured .news-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-card-featured .news-meta i {
    color: var(--accent);
}

/* Standard News Card */
.news-card,
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover,
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-image,
.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-image img,
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img,
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.news-placeholder,
.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--paper-dark) 0%, var(--paper) 100%);
    color: var(--ink-lighter);
    font-size: 2.5rem;
}

.news-category,
.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.news-content,
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta,
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--ink-lighter);
    margin-bottom: 0.75rem;
}

.news-meta span,
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-meta i,
.blog-meta i {
    color: var(--accent);
    font-size: 0.875rem;
}

.news-title,
.blog-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.news-title a,
.blog-title a {
    color: var(--ink);
}

.news-title a:hover,
.blog-title a:hover {
    color: var(--primary);
}

.news-excerpt,
.blog-excerpt {
    color: var(--ink-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.news-link,
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.news-link:hover,
.blog-link:hover {
    gap: 0.75rem;
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   Newspapers Section (Gazeteler)
   -------------------------------------------------------------------------- */
.newspapers-section {
    background: var(--paper-dark);
}

.newspaper-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.newspaper-cover {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 3px solid var(--primary);
}

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

.newspaper-card:hover .newspaper-cover img {
    transform: scale(1.02);
}

.newspaper-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--ink-lighter);
    background: linear-gradient(to bottom, var(--paper) 0%, var(--paper-dark) 100%);
}

.newspaper-placeholder i {
    font-size: 3rem;
    color: var(--primary);
}

.newspaper-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.newspaper-card:hover .newspaper-overlay {
    opacity: 1;
}

.newspaper-content {
    padding: 1.25rem;
    text-align: center;
}

/* Newspaper Header for Cards */
.newspaper-header {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    position: relative;
}

.newspaper-header i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
}

.newspaper-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.newspaper-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.newspaper-date {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--ink-lighter);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.newspaper-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--olive);
    color: white;
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.625rem;
    border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Members Section (Üyeler)
   -------------------------------------------------------------------------- */
.members-section {
    background: white;
}

.member-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 2rem 1.5rem;
    border: 2px solid transparent;
}

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

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: var(--shadow);
    position: relative;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.member-title {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.member-organization {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--ink-light);
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.875rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--ink-light);
    transition: var(--transition);
    font-size: 0.875rem;
}

.member-social a:hover {
    background: var(--primary);
    color: white;
}

/* Member card as press card style */
.member-card-press {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.member-card-press::before {
    content: 'BASIN KARTI';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 0.5rem;
}

.member-card-press .member-content {
    padding: 3.5rem 1.5rem 1.5rem;
}

/* --------------------------------------------------------------------------
   About / Corporate Section
   -------------------------------------------------------------------------- */
.about-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--paper-dark);
    z-index: 0;
}

@media (max-width: 991px) {
    .about-section::before {
        display: none;
    }
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-lead {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    border-radius: var(--radius);
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--ink-light);
    margin: 0;
}

.about-visual {
    position: relative;
    z-index: 1;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img,
.about-image-main svg {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .exp-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.experience-badge .exp-text {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Services Section (Etkinlikler)
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--paper);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--paper-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-warm);
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-warm);
    color: white;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--ink-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   Projects Section (Gazeteler)
   -------------------------------------------------------------------------- */
.projects-section {
    background: white;
}

.project-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.project-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--paper-dark) 0%, var(--paper) 100%);
    color: var(--primary);
    font-size: 2.5rem;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 1.5rem;
}

.project-client {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--olive);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.project-description {
    color: var(--ink-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--ink-light);
    background: white;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--paper-dark);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--paper);
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-info-content h4 {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.9375rem;
    color: var(--ink-light);
    margin: 0;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-label {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.form-control {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--paper-dark);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, #4A6670 0%, #3A5058 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #3D4852;
    color: rgba(255,255,255,0.75);
}

.footer-main {
    padding: 5rem 0 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.brand-primary {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.brand-secondary {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

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

.social-link:hover {
    background: var(--accent);
    color: var(--ink);
}

.footer-title {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
}

.copyright {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   Page Headers (Breadcrumb)
   -------------------------------------------------------------------------- */
.page-header {
    background: var(--gradient-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1,
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    padding: 0;
    margin: 0 0 1rem 0;
    list-style: none;
    background: transparent;
}

.breadcrumb-item {
    font-family: var(--font-ui);
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

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

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* --------------------------------------------------------------------------
   Back to Top & WhatsApp Buttons
   -------------------------------------------------------------------------- */
.btn-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-4px);
}

.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-whatsapp-float:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments - Comprehensive Mobile Support
   -------------------------------------------------------------------------- */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Large Tablets / Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        padding: 1.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    /* Typography */
    body {
        font-size: 0.9375rem;
    }
    
    h1, .h1 { font-size: 2.25rem; }
    h2, .h2 { font-size: 1.875rem; }
    h3, .h3 { font-size: 1.5rem; }
    h4, .h4 { font-size: 1.25rem; }
    
    /* Top Bar - Hide on tablet */
    .top-bar {
        display: none;
    }
    
    /* Header */
    .site-header {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .brand-text .brand-name {
        font-size: 1.125rem;
    }
    
    .brand-text .brand-tagline {
        font-size: 0.6875rem;
    }
    
    /* Mobile Navigation */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        padding: 1.5rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1050;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--paper-dark);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--primary);
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border: none;
        background: var(--paper-dark);
        border-radius: 50%;
        font-size: 1.25rem;
        color: var(--ink);
        cursor: pointer;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image svg {
        max-width: 100%;
        height: auto;
    }
    
    /* Slider */
    .hero-slide {
        min-height: 60vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Cards */
    .project-card,
    .news-card,
    .service-card,
    .member-card {
        margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer-main {
        padding: 3rem 0;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
}

/* Mobile Phones (576px - 767px) */
@media (max-width: 767px) {
    /* General */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Typography */
    body {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    h1, .h1 { font-size: 1.875rem; }
    h2, .h2 { font-size: 1.625rem; }
    h3, .h3 { font-size: 1.375rem; }
    h4, .h4 { font-size: 1.125rem; }
    
    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Hero */
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.75rem);
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    /* Slider */
    .hero-slide {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .slide-badge {
        font-size: 0.625rem;
        padding: 0.4rem 0.8rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .slide-description {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .slide-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    /* Section Headers */
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-badge {
        font-size: 0.6875rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    /* About Section */
    .about-section .lead {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem 1rem;
    }
    
    .feature-item i {
        font-size: 1.25rem;
    }
    
    /* Project/Newspaper Cards */
    .project-card,
    .newspaper-card {
        margin-bottom: 1rem;
    }
    
    .newspaper-header {
        height: 120px;
    }
    
    .newspaper-header i {
        font-size: 2.5rem;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-title {
        font-size: 1.125rem;
    }
    
    /* News Cards */
    .news-card {
        margin-bottom: 1rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-placeholder i {
        font-size: 2.5rem;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .news-excerpt {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Member Cards */
    .member-card {
        padding: 1.25rem;
    }
    
    .member-avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-title {
        font-size: 0.8125rem;
    }
    
    .member-organization {
        font-size: 0.75rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9375rem;
    }
    
    .cta-section .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .cta-section .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer-main {
        padding: 2.5rem 0;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-column h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    /* Breadcrumb */
    .breadcrumb-section {
        padding: 1.5rem 0;
    }
    
    .breadcrumb-title {
        font-size: 1.5rem;
    }
    
    /* Forms */
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    /* Blog Post */
    .blog-post-header {
        padding: 2rem 0;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    /* Service Detail */
    .service-detail-header {
        padding: 2rem 0;
    }
    
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    /* Contact Page */
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    /* Fixed Elements */
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    
    .btn-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Small Mobile Phones (max-width: 575px) */
@media (max-width: 575px) {
    /* Extra small adjustments */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    h1, .h1 { font-size: 1.625rem; }
    h2, .h2 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Stack columns on very small screens */
    .row.g-4 > [class*="col-6"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Member cards - full width on very small screens */
    .members-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Footer */
    .footer-newsletter .input-group {
        flex-direction: column;
    }
    
    .footer-newsletter .form-control {
        border-radius: var(--radius) !important;
        margin-bottom: 0.5rem;
    }
    
    .footer-newsletter .btn {
        border-radius: var(--radius) !important;
        width: 100%;
    }
}

/* Landscape Mode on Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-image {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .project-card:hover,
    .news-card:hover,
    .service-card:hover {
        transform: none;
    }
    
    .nav-link:hover {
        color: var(--primary);
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .footer-links a,
    .footer-contact a {
        padding: 0.5rem 0;
        display: inline-block;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   Mobile Menu Styles (Offcanvas)
   -------------------------------------------------------------------------- */
.offcanvas {
    max-width: 320px;
}

.offcanvas-header {
    background: var(--gradient-dark);
    padding: 1.25rem;
}

.offcanvas-brand {
    display: flex;
    flex-direction: column;
}

.offcanvas-brand .logo-primary {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.offcanvas-brand .logo-tagline {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.offcanvas-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas-header .btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 1.5rem;
}

/* Mobile Navigation List */
.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > li {
    border-bottom: 1px solid var(--paper-dark);
}

.mobile-nav > li:last-child {
    border-bottom: none;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: var(--ink);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav > li > a i {
    font-size: 1.125rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.mobile-nav > li > a:hover,
.mobile-nav > li > a.active {
    color: var(--primary);
}

.mobile-nav > li > a.active {
    font-weight: 600;
}

/* Mobile Submenu */
.mobile-nav .has-submenu .submenu-toggle {
    justify-content: flex-start;
}

.mobile-nav .has-submenu .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-nav .has-submenu.open .toggle-icon {
    transform: rotate(180deg);
}

.mobile-nav .submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0.5rem 2.5rem;
    display: none;
}

.mobile-nav .has-submenu.open .submenu {
    display: block;
}

.mobile-nav .submenu li a {
    display: block;
    padding: 0.625rem 0;
    color: var(--ink-light);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav .submenu li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* Mobile CTA */
.mobile-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
}

/* Mobile Contact */
.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--paper-dark);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink-light);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.mobile-contact-item:hover {
    color: var(--primary);
}

/* Navbar Toggler Custom Style */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
}

.toggler-icon span {
    display: block;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Logo Text Styles for Header */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-primary {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-tagline {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 991px) {
    .logo-primary {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.5625rem;
    }
}

/* --------------------------------------------------------------------------
   Animation Classes
   -------------------------------------------------------------------------- */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .top-bar,
    .site-header,
    .site-footer,
    .btn-back-to-top,
    .btn-whatsapp-float {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
