/* ============================================
   KADRAJ 6 - HAKKIMIZDA SAYFASI STİL DOSYASI
   Versiyon: 2.0 | Modern Kurumsal Tasarım
   Ana Sayfa Teması ile %100 Uyumlu | Güncel: 2026
   ============================================ */

/* ------------------- RESET & TEMEL ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    background-color: #f8f9fa;
    color: #1a1a2e;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ------------------- DEĞİŞKENLER (ANA SAYFA İLE AYNI) ------------------- */
:root {
    --color-bg: #f8f9fa;
    --color-bg-light: #ffffff;
    --color-bg-alt: #f0f2f5;
    --color-primary: #eb6011;
    --color-primary-dark: #c44d0d;
    --color-primary-light: #ff8a4a;
    --color-secondary: #2c3e66;
    --color-text: #1a1a2e;
    --color-text-muted: #4a5568;
    --color-text-light: #718096;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(235, 96, 17, 0.3);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 40px rgba(0, 0, 0, 0.12);
    --container-width: 1240px;
}

/* ------------------- TİPOGRAFİ (ANA SAYFA İLE AYNI) ------------------- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1, h2 {
    font-family: 'Bodoni Moda', serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: auto;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    animation: lineGrow 0.8s ease-out;
}

@keyframes lineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.75rem;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ------------------- CONTAINER ------------------- */
.container {
    width: min(92%, var(--container-width));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ------------------- SECTION HEADER ------------------- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: rgba(235, 96, 17, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: pulseLight 2s infinite;
}

@keyframes pulseLight {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(235, 96, 17, 0.2);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(235, 96, 17, 0);
    }
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ------------------- BUTONLAR ------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 96, 17, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* ------------------- HEADER & NAVIGASYON (ANA SAYFA İLE AYNI) ------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

header.header-scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-reveal {
    transform: translateY(0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
    animation: fadeInLeft 0.6s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-light);
    min-width: 240px;
    padding: 15px 0;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    list-style: none;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    color: var(--color-primary);
    background: rgba(235, 96, 17, 0.05);
    padding-left: 30px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: var(--color-text);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--color-primary);
    transform: translateY(-3px) rotate(8deg);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.hamburger:hover {
    color: var(--color-primary);
}

/* ------------------- ABOUT HERO SECTION ------------------- */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(235, 96, 17, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.kadraj-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.six-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(235, 96, 17, 0.3);
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
    animation: float 3s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(235, 96, 17, 0.3);
    }
    50% {
        text-shadow: 0 0 25px rgba(235, 96, 17, 0.6);
    }
}

.about-hero h1 {
    margin-top: 35px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--color-primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.about-hero .tagline {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* ------------------- OUR STORY SECTION ------------------- */
.our-story {
    padding: 100px 0;
    background: var(--color-bg);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-text {
    flex: 1;
}

.story-text .section-subtitle {
    display: inline-block;
    margin-bottom: 1rem;
    animation: none;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-text h2::after {
    left: 0;
    transform: translateX(0);
}

.story-text p {
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.image-frame:hover::before {
    top: -15px;
    left: -15px;
}

.image-frame:hover {
    transform: translateY(-8px);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* ------------------- OUR VALUES SECTION ------------------- */
.our-values {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.value-item {
    background: var(--color-bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 96, 17, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-12px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(235, 96, 17, 0.15);
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Bodoni Moda', serif;
    transition: var(--transition-bounce);
    z-index: 1;
}

.value-item:hover .value-number {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(235, 96, 17, 0.4);
    transform: scale(1.2) translateX(-5px) translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(235, 96, 17, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.value-item:hover .value-icon {
    background: var(--color-primary);
    transform: scale(1.1) rotate(8deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.value-item:hover h3 {
    color: var(--color-primary);
}

.value-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ------------------- VISION SECTION ------------------- */
.our-vision {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.our-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(235, 96, 17, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.vision-text {
    flex: 1;
}

.vision-text .section-subtitle {
    display: inline-block;
    margin-bottom: 1rem;
    animation: none;
}

.vision-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.vision-text h2::after {
    left: 0;
    transform: translateX(0);
}

.vision-text p {
    margin-bottom: 1.2rem;
}

.vision-text .highlight {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1.2rem;
    margin-top: 1.5rem;
}

.vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.logo-showcase img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(235, 96, 17, 0.2));
    transition: var(--transition-smooth);
    animation: fadeInUp 0.8s ease;
}

.logo-showcase:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(235, 96, 17, 0.4));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(235, 96, 17, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* ------------------- MISSION SECTION ------------------- */
.our-mission {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-text {
    flex: 1;
}

.mission-text .section-subtitle {
    display: inline-block;
    margin-bottom: 1rem;
    animation: none;
}

.mission-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mission-text h2::after {
    left: 0;
    transform: translateX(0);
}

.mission-text p {
    margin-bottom: 1.2rem;
}

.mission-text .highlight {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1.2rem;
    margin-top: 1.5rem;
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Bodoni Moda', serif;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ------------------- FOOTER (ANA SAYFA İLE AYNI) ------------------- */
footer {
    background: #1a1a2e;
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 65px;
    width: auto;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-info {
    margin: 30px 0;
}

.footer-info p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-info i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 20px;
}

.footer-info a {
    transition: var(--transition-fast);
}

.footer-info a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-5px) rotate(360deg);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* ------------------- ANİMASYONLAR ------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1024px) {
    .story-content,
    .vision-content,
    .mission-content {
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: var(--transition-smooth);
        z-index: 999;
        padding: 100px 40px;
        border-left: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .social-icons {
        display: none;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 10px 0 0 20px;
        border: none;
        display: none;
        box-shadow: none;
    }
    
    .nav-item:hover .dropdown-menu {
        display: block;
    }
    
    .story-content,
    .vision-content,
    .mission-content {
        flex-direction: column;
    }
    
    .story-text h2,
    .vision-text h2,
    .mission-text h2 {
        text-align: center;
    }
    
    .story-text h2::after,
    .vision-text h2::after,
    .mission-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vision-image {
        order: -1;
    }
    
    .mission-stats {
        flex-direction: row;
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        margin-top: 70px;
    }
    
    .our-story,
    .our-values,
    .our-vision,
    .our-mission {
        padding: 70px 0;
    }
    
    .six-number {
        font-size: 40px;
        top: -22px;
    }
    
    .about-hero h1 {
        margin-top: 22px;
    }
    
    .mission-stats {
        flex-direction: column;
    }
    
    .logo-showcase {
        max-width: 300px;
    }
    
    .value-item {
        padding: 30px 25px;
    }
    
    .value-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .six-number {
        font-size: 32px;
        top: -18px;
    }
    
    .about-hero h1 {
        margin-top: 18px;
    }
    
    .about-hero .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .logo-showcase {
        max-width: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ------------------- SCROLL BAR ------------------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e9ecef;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ------------------- SELECTION ------------------- */
::selection {
    background: var(--color-primary);
    color: white;
}