@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 17px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
.navbar {
    background: #6B1525;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 72px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover {
    opacity: 0.85;
}

.logo-img-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: #fff;
    border-radius: 50%;
    line-height: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.logo-img {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    background: transparent;
}

.navbar-logo:hover .logo-img-frame {
    transform: scale(1.05);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    position: relative;
    letter-spacing: 0.1px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
}

/* Dropdown Toggle */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 9px;
    opacity: 0.5;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    opacity: 1;
}

.has-dropdown:hover > .dropdown-toggle {
    color: #fff;
}

/* ── Dropdown Desktop ── */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: #5A1120;
    border-radius: 12px;
    list-style: none;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hover alanı için invisible köprü */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown li + li {
    margin-top: 2px;
}

.dropdown li a {
    display: block;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    letter-spacing: 0.1px;
}

.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Active */
.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
}

/* ═══════════════════════════════════
   HAMBURGER
   ═══════════════════════════════════ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 1002;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.bar {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════
   PAGE HERO — CLEAN PREMIUM (Tüm Alt Sayfalar)
   ═══════════════════════════════════ */

.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 0;
}

/* --- Background image (page-hero-bg > img yöntemi) --- */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 14s ease;
}

.page-hero:hover .page-hero-bg img {
    transform: scale(1.05);
}

/* --- Background image (inline style yöntemi) --- */
.page-hero[style*="background-image"] {
    background-size: cover;
    background-position: center;
}

.page-hero[style*="background-image"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 0;
    transition: transform 14s ease;
}

.page-hero[style*="background-image"]:hover::before {
    transform: scale(1.05);
}

/* --- Sadece alt kısımda şeffaf-siyah gradient (foto gözüksün) --- */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* --- İnce beyaz alt çizgi --- */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-hero .container .page-hero-content {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* Breadcrumb gizle */
.breadcrumb {
    display: none;
}

/* --- Hero tag badge --- */
.page-hero-content .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: heroFadeIn 0.6s ease both;
    animation-delay: 0.1s;
}

.page-hero-content .hero-tag i {
    font-size: 10px;
    opacity: 0.7;
}

/* --- H1 — büyük beyaz başlık --- */
.page-hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    animation: heroFadeIn 0.6s ease both;
    animation-delay: 0.2s;
}

/* H1 altı çizgi yok */
.page-hero-content h1::after {
    display: none;
}

/* --- Açıklama yazısı --- */
.page-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
    animation: heroFadeIn 0.6s ease both;
    animation-delay: 0.35s;
}

/* Sol çizgi yok */
.page-hero-content::before {
    display: none;
}

.page-hero .container .page-hero-content::before {
    display: none;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-container {
        padding: 0 16px;
        height: 64px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .logo-img-frame {
        padding: 2px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #6B1525;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease;
        z-index: 999;
    }

    .navbar.active .nav-menu {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-item {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 15px 18px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .nav-link.active::after {
        display: none;
    }

    /* Mobil Dropdown Toggle */
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-toggle i {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        font-size: 11px;
        opacity: 0.7;
        transition: all 0.3s ease;
        margin-left: auto;
    }

    .has-dropdown.open > .dropdown-toggle {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    .has-dropdown.open > .dropdown-toggle i {
        background: rgba(255, 255, 255, 0.15);
        opacity: 1;
        transform: rotate(180deg);
    }

    /* Mobil Dropdown */
    .dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.15);
        border: none;
        border-radius: 12px;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease,
                    margin-top 0.3s ease,
                    padding 0.3s ease;
    }

    .has-dropdown.open > .dropdown {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 6px;
        margin-top: 6px;
    }

    .dropdown li + li {
        margin-top: 2px;
    }

    .dropdown li a {
        color: rgba(255, 255, 255, 0.7);
        padding: 13px 18px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 10px;
    }

    .dropdown li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
}

/* ═══════════════════════════════════════
   CAROUSEL
   ═══════════════════════════════════════ */
.carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #0a0a0a;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}

/* Arka Plan Resmi */
.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s cubic-bezier(0.2, 0, 0.2, 1);
}

.carousel-slide.active .slide-bg {
    transform: scale(1.06);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

/* ── Geçiş: Fade ── */
.carousel-slide[data-transition="fade"] {
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Geçiş: Slide Left ── */
.carousel-slide[data-transition="slide-left"] {
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide[data-transition="slide-left"].active {
    transform: translateX(0);
}

/* ── Geçiş: Zoom ── */
.carousel-slide[data-transition="zoom"] {
    transform: scale(0.95);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide[data-transition="zoom"].active {
    transform: scale(1);
}

/* ── Geçiş: Slide Up ── */
.carousel-slide[data-transition="slide-up"] {
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide[data-transition="slide-up"].active {
    transform: translateY(0);
}

/* ── Geçiş: Flip ── */
.carousel-slide[data-transition="flip"] {
    transform: perspective(1200px) rotateY(8deg);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide[data-transition="flip"].active {
    transform: perspective(1200px) rotateY(0deg);
}

/* Content */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, rgba(107,21,37,0.7), rgba(200,60,80,0.5));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.slide-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6b7a;
    box-shadow: 0 0 8px #ff6b7a;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.slide-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.slide-title .highlight {
    background: linear-gradient(135deg, #ff8a9b, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-title .underline-accent {
    position: relative;
    display: inline-block;
}

.slide-title .underline-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b7a, #ffb347);
    border-radius: 2px;
    opacity: 0.8;
}

.slide-desc {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 36px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6B1525, #a0283e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(107, 21, 37, 0.4);
}

.slide-btn:hover {
    background: linear-gradient(135deg, #8a1d33, #c0384e);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 21, 37, 0.5);
}

.slide-btn i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.slide-btn:hover i {
    transform: translateX(4px);
}

/* Prev/Next Butonları */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    z-index: 10;
    opacity: 0;
}

.carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 24px;
    border-radius: 4px;
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 10;
}

.carousel-progress-bar {
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0 2px 2px 0;
    transition: width 0.1s linear;
}

/* Carousel Responsive */
@media screen and (max-width: 768px) {
    .carousel {
        height: 80vh;
        min-height: 450px;
    }

    .slide-bg {
        object-position: center center;
    }

    .slide-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .slide-content {
        padding: 0 20px;
        justify-content: flex-end;
        padding-bottom: 90px;
    }

    .slide-tag {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 14px;
    }

    .slide-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .slide-title .underline-accent::after {
        height: 3px;
        bottom: 0;
    }

    .slide-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .slide-btn {
        font-size: 15px;
        padding: 14px 24px;
    }

    .carousel-btn {
        top: auto;
        bottom: 20px;
        transform: none;
        width: 38px;
        height: 38px;
        font-size: 13px;
        opacity: 1;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .carousel-btn:hover {
        transform: none;
    }

    .carousel-prev {
        left: auto;
        right: calc(50% + 70px);
    }

    .carousel-next {
        right: auto;
        left: calc(50% + 70px);
    }

    .carousel-dots {
        bottom: 26px;
    }
}

/* ================================
   GLOBAL SECTION STYLES
   ================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6B1525;
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #6B1525, #c0384e);
    border-radius: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6B1525;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5A1120;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 21, 37, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================
   ABOUT BRIEF
   ================================ */

.about-brief {
    padding: 110px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-brief::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,21,37,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text .section-desc {
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(107, 21, 37, 0.03);
    transition: all 0.25s ease;
}

.about-feature:hover {
    background: rgba(107, 21, 37, 0.07);
}

.about-feature i {
    color: #6B1525;
    font-size: 14px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    opacity: 0.15;
    z-index: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(107,21,37,0.2);
    border-radius: 16px;
    z-index: 0;
}

/* ================================
   STATS
   ================================ */

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #6B1525 0%, #4a0e1a 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: #fff;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ================================
   PROGRAMS
   ================================ */

.programs {
    padding: 110px 0;
    background: #fafafa;
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: #fff;
    padding: 40px 32px 32px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #ff6b7a, #c0384e);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(107, 21, 37, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(107, 21, 37, 0.12), 0 8px 24px rgba(0,0,0,0.04);
    border-color: rgba(107, 21, 37, 0.08);
}

.program-card:hover::before {
    transform: scaleX(1);
    animation: cardGlow 2s ease infinite;
}

@keyframes cardGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.program-card:hover::after {
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 21, 37, 0.06) 0%, transparent 70%);
}

.program-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(107,21,37,0.08), rgba(107,21,37,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, #6B1525, #c0384e);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 12px 28px rgba(107,21,37,0.3);
}

.program-icon i {
    font-size: 24px;
    color: #6B1525;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon i {
    color: #fff;
}

.program-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.program-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.75;
    margin-bottom: 26px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #6B1525;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 11px 22px;
    border-radius: 10px;
    background: rgba(107, 21, 37, 0.05);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-link:hover {
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(107, 21, 37, 0.3);
    transform: translateX(2px);
}

.program-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.program-link:hover i {
    transform: translateX(3px);
}

/* ================================
   WHY US
   ================================ */

.why-us {
    padding: 110px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,21,37,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.why-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.why-image:hover img {
    transform: scale(1.03);
}

.why-items {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(107, 21, 37, 0.03);
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(107,21,37,0.1), rgba(107,21,37,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, #6B1525, #a0283e);
    box-shadow: 0 6px 16px rgba(107,21,37,0.2);
}

.why-icon i {
    font-size: 18px;
    color: #6B1525;
    transition: color 0.3s ease;
}

.why-item:hover .why-icon i {
    color: #fff;
}

.why-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials {
    padding: 110px 0;
    background: #f8f7f6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, rgba(107,21,37,0.08), rgba(107,21,37,0.02));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(107, 21, 37, 0.1), 0 8px 20px rgba(0,0,0,0.03);
    border-color: rgba(107, 21, 37, 0.06);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    font-size: 14px;
    color: #f0a500;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6B1525;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
}

/* ================================
   CTA
   ================================ */

.cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #6B1525 0%, #3d0c15 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Floating Decorative Shapes */
.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.035) 1.5px, transparent 1.5px);
    background-size: 60px 60px, 90px 90px;
    background-position: 0 0, 30px 30px;
}

.cta-icon-float {
    position: absolute;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
}

.cta-icon-float:nth-child(1) { top: 12%; left: 5%; font-size: 42px; transform: rotate(-15deg); }
.cta-icon-float:nth-child(2) { top: 60%; left: 8%; font-size: 28px; transform: rotate(20deg); }
.cta-icon-float:nth-child(3) { top: 18%; right: 6%; font-size: 36px; transform: rotate(12deg); }
.cta-icon-float:nth-child(4) { top: 65%; right: 10%; font-size: 48px; transform: rotate(-8deg); }
.cta-icon-float:nth-child(5) { top: 30%; left: 18%; font-size: 24px; transform: rotate(25deg); }
.cta-icon-float:nth-child(6) { bottom: 15%; right: 20%; font-size: 32px; transform: rotate(-20deg); }
.cta-icon-float:nth-child(7) { top: 45%; left: 35%; font-size: 20px; transform: rotate(10deg); }
.cta-icon-float:nth-child(8) { bottom: 20%; left: 28%; font-size: 38px; transform: rotate(-12deg); }

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    color: #fff;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   CONTACT
   ================================ */

.contact {
    padding: 110px 0;
    background: #fff;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    transition: background 0.25s ease;
}

.contact-item:hover {
    background: rgba(107, 21, 37, 0.03);
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(107,21,37,0.1), rgba(107,21,37,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 16px;
    color: #6B1525;
}

.contact-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: #777;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(107, 21, 37, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B1525;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #6B1525;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */

.contact-form-wrap {
    background: #fafafa;
    border-radius: 20px;
    padding: 44px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(107, 21, 37, 0.1);
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6B1525;
    box-shadow: 0 0 0 4px rgba(107, 21, 37, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    padding: 14px 16px;
    font-size: 16px;
    line-height: 2.4;
    min-height: 48px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1018 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #ff6b7a, #c0384e, #6B1525);
    background-size: 200% 100%;
    animation: footerGlow 4s ease infinite;
}

@keyframes footerGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 21, 37, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: #fff;
    border-radius: 50%;
    line-height: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.footer-logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
    border: none;
    box-shadow: none;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 4px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 14px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #c0384e, #6B1525);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links ul li a {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #c0384e;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-links ul li a i {
    font-size: 12px;
    color: #c0384e;
    width: 16px;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.footer-bottom-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin: 0;
}

.footer-powered {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.02em;
}

.footer-powered-sep {
    color: rgba(255,255,255,0.2);
    user-select: none;
}

.footer-powered-text {
    text-transform: lowercase;
}

.footer-powered-ag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255,255,255,0.95) !important;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    flex-shrink: 0;
    box-sizing: border-box;
    vertical-align: middle;
}

/* UA / başka kuralları ezmek için: footer’daki Ottimo bağlantısı mavi olmasın */
.footer .footer-bottom a.footer-powered-link,
.footer .footer-bottom a.footer-powered-link:any-link {
    color: rgba(255,255,255,0.92) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.92);
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

.footer .footer-bottom a.footer-powered-link:visited {
    color: rgba(255,255,255,0.92) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.92);
}

.footer .footer-bottom a.footer-powered-link:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}

.footer .footer-bottom a.footer-powered-link:focus-visible {
    outline: 1px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
}

.footer-social a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.35);
}

.footer-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

.footer-social a[aria-label="YouTube"]:hover {
    background: #ff0000;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
}

.footer-social a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE - SECTIONS
   ================================ */

@media (max-width: 768px) {

    .section-title {
        font-size: 32px;
    }

    .about-brief {
        padding: 64px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image::after,
    .about-image::before {
        display: none;
    }

    .about-image img {
        height: 280px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 48px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 40px;
    }

    .programs {
        padding: 64px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-card {
        padding: 28px 24px;
    }

    .why-us {
        padding: 64px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image img {
        height: 280px;
    }

    .why-item {
        padding: 12px;
    }

    .testimonials {
        padding: 64px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta {
        padding: 64px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-icon-float {
        opacity: 0.5;
    }

    .cta-icon-float:nth-child(5),
    .cta-icon-float:nth-child(6),
    .cta-icon-float:nth-child(7),
    .cta-icon-float:nth-child(8) {
        display: none;
    }

    .contact {
        padding: 64px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-frame img {
        width: 56px;
        height: 56px;
    }

    .footer-logo span {
        font-size: 22px;
    }

    .footer-links h4 {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        gap: 10px;
        align-items: center;
    }

    .footer-links ul li a {
        font-size: 14px;
        padding: 8px 0;
    }

    .footer-links ul li a:hover {
        transform: translateX(0);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 12px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 34px;
    }
}

/* ================================
   PROMO VIDEO
   ================================ */

.promo-video {
    padding: 110px 0;
    background: #f8f7f6;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.video-placeholder:hover img {
    transform: scale(1.03);
}

.video-overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.video-placeholder:hover .video-overlay-play {
    background: rgba(0,0,0,0.5);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(107, 21, 37, 0.4);
    padding-left: 4px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(107, 21, 37, 0.5);
}

.video-play-text {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.video-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.video-badge i {
    color: #ff8a9b;
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .promo-video {
        padding: 64px 0;
    }

    .video-placeholder img,
    .video-container iframe {
        height: 280px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* Page Hero Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 400px;
        margin-top: 0;
    }

    .page-hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .page-hero-content .hero-tag {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 14px;
        letter-spacing: 2px;
    }

    .page-hero-content h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .page-hero-content h1::after {
        display: none;
    }

    .page-hero-content p {
        font-size: 14px;
    }
}
