:root {
    --primary: #ff7e5f;
    --secondary: #feb47b;
    --accent: #4facfe;
    --dark: #1a1f2e;
    --dark2: #2d3436;
    --text: #2d3436;
    --text-muted: #636e72;
    --bg: #f4f6fa;
    --white: #ffffff;
    --glass: rgba(255,255,255,0.82);
    --glass-border: rgba(255,255,255,0.25);
    --shadow-sm: 0 2px 12px rgba(31,38,135,0.08);
    --shadow: 0 8px 32px rgba(31,38,135,0.12);
    --shadow-lg: 0 20px 60px rgba(31,38,135,0.18);
    --radius: 20px;
    --radius-sm: 12px;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1f2e 0%, #2d3436 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── Page Loader ── */
#pageLoader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#pageLoader img {
    height: 150px;
    width: auto;
    animation: loaderPulse 1.4s ease-in-out infinite;
}
#pageLoader p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #b2bec3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.07); opacity: 0.75; }
}

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

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

/* ── Header ── */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}
.main-header.scrolled { box-shadow: var(--shadow); }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}
.logo-link:hover { transform: scale(1.03); }

.site-logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(255,126,95,0.35);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,126,95,0.1); }
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── Header: Instagram Takip / Abone ── */
.header-ig-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 12px;
    flex-shrink: 0;
}
.btn-header-ig {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-header-follow {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
    color: #fff;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.28);
}
.btn-header-subscribe {
    background: var(--dark);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-header-ig:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Mobil alt sabit: Takip / Abone */
.mobile-ig-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.08);
}
.mobile-ig-btn {
    flex: 1;
    min-width: 120px;
    max-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    font-family: inherit;
}
.mobile-ig-follow {
    background: linear-gradient(45deg, #f09433, #dc2743);
    color: #fff;
}
.mobile-ig-subscribe {
    background: var(--dark);
    color: #fff;
}
.mobile-ig-btn:hover {
    opacity: 0.95;
    color: #fff;
}

/* ── Instagram: öne çıkanlar + feed üst/alt CTA ── */
.ig-highlights-wrap {
    margin-bottom: 28px;
}
.ig-highlights-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ig-highlights-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.ig-highlights-scroll::-webkit-scrollbar {
    height: 6px;
}
.ig-highlight-item {
    flex: 0 0 auto;
    width: 96px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.ig-highlight-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 12px;
}
.ig-highlight-item:hover {
    transform: translateY(-4px);
}
.ig-highlight-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(225deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    margin: 0 auto 10px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.22);
}
.ig-highlight-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    display: block;
    box-sizing: border-box;
}
.ig-highlight-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 96px;
    margin: 0 auto;
}

/* Öne çıkan — tam ekran modal (Instagram hissi) */
.ig-hl-modal {
    position: fixed;
    inset: 0;
    z-index: 100002;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}
.ig-hl-modal[hidden] {
    display: none !important;
}
.ig-hl-modal__backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}
.ig-hl-modal__sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: auto 16px;
    padding: 28px 24px 32px;
    border-radius: 28px 28px 20px 20px;
    background: linear-gradient(180deg, #1a1a1e 0%, #0b0b0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
    text-align: center;
    animation: igHlSheetIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes igHlSheetIn {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.ig-hl-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.ig-hl-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.ig-hl-modal__handle {
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    margin: 42px 16px 4px;
    letter-spacing: 0.03em;
}
.ig-hl-modal__ring {
    width: min(280px, 72vw);
    height: min(280px, 72vw);
    margin: 10px auto 18px;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(225deg, #f09433, #e6683c, #dc2743, #bc1888);
    box-sizing: border-box;
}
.ig-hl-modal__ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0b0b0d;
    box-sizing: border-box;
}
.ig-hl-modal__ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ig-hl-modal__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.ig-hl-modal__hint {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 20px;
    line-height: 1.45;
}
.ig-hl-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(220, 39, 67, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ig-hl-modal__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(220, 39, 67, 0.55);
}

@keyframes igHlSheetUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 540px) {
    .ig-hl-modal {
        align-items: flex-end;
        padding: 0;
    }
    .ig-hl-modal__sheet {
        margin: 0;
        max-width: none;
        width: 100%;
        border-radius: 22px 22px 0 0;
        padding: 24px 20px max(28px, env(safe-area-inset-bottom, 0px));
        animation: igHlSheetUp 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .ig-hl-modal__handle {
        margin-top: 36px;
    }
}

.feed-top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    align-items: center;
}
.feed-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s;
    font-family: inherit;
}
.feed-action-follow {
    background: linear-gradient(45deg, #f09433, #dc2743);
    color: #fff;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.28);
}
.feed-action-subscribe {
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.feed-action-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.feed-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 3rem;
    align-items: center;
}
.btn-ig-channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    font-family: inherit;
}
.btn-ig-channel:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Default slide gradient background */
.default-slide {
    background: var(--gradient-dark);
}
.default-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,126,95,0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(254,180,123,0.2) 0%, transparent 50%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,31,46,0.75) 0%, rgba(26,31,46,0.45) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 680px;
    padding: 0 24px;
}

.slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.slide-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(255,126,95,0.45);
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,126,95,0.55);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* ── Sections Common ── */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}
.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin: 10px 0 12px;
}
.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
}
.section-title.light h2,
.section-title.light p { color: white; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section-badge.light {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* ── Instagram Feed ── */
.feed-container {
    padding: 90px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.feed-empty-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px 24px;
    background: rgba(255, 126, 95, 0.08);
    border: 1px solid rgba(255, 126, 95, 0.2);
    border-radius: var(--radius);
    margin-bottom: 8px;
}
.feed-empty-notice p {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.feed-empty-notice i.fa-instagram {
    color: #e1306c;
    margin-right: 6px;
}
.feed-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
}
.feed-empty-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}
.placeholder-card {
    cursor: pointer;
}
.placeholder-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.instagram-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.04);
}
.instagram-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-media {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.instagram-card:hover .card-media img { transform: scale(1.08); }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,126,95,0.7), rgba(254,180,123,0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.instagram-card:hover .card-overlay { opacity: 1; }
.overlay-icon { color: white; font-size: 2rem; }

.media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.card-content { padding: 18px 20px 20px; }
.card-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1.5;
}
.card-date {
    font-size: 0.78rem;
    color: #b2bec3;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

/* Card footer: date + Instagram button */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}
.card-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.card-ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(220,39,67,0.45);
    color: white;
}

/* Video hover play */
.card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
.instagram-card[data-video]:hover .card-video { opacity: 1; }
.instagram-card[data-video]:hover .card-overlay { opacity: 0; }
.instagram-card[data-video]:hover .card-media img { transform: none; }

.btn-ig-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(255,126,95,0.35);
}
.btn-ig-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255,126,95,0.5);
}

/* ── Pagination ── */
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    background: white;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.22s;
    box-shadow: var(--shadow-sm);
}
.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.pagination-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255,126,95,0.35);
}

/* ── E-bülten (abone) — modern ── */
.newsletter-section {
    position: relative;
    padding: clamp(64px, 10vw, 110px) 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 126, 95, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(79, 172, 254, 0.12), transparent 50%),
        linear-gradient(165deg, #0f1218 0%, #1a1f2e 38%, #252b38 100%);
}
.newsletter-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.newsletter-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: newsletterOrbFloat 18s ease-in-out infinite;
}
.newsletter-orb--1 {
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    background: rgba(255, 126, 95, 0.45);
    top: -12%;
    right: -8%;
    animation-delay: 0s;
}
.newsletter-orb--2 {
    width: min(320px, 70vw);
    height: min(320px, 70vw);
    background: rgba(254, 180, 123, 0.25);
    bottom: -5%;
    left: -5%;
    animation-delay: -6s;
}
.newsletter-orb--3 {
    width: min(200px, 50vw);
    height: min(200px, 50vw);
    background: rgba(79, 172, 254, 0.2);
    top: 40%;
    left: 35%;
    animation-delay: -12s;
}
@keyframes newsletterOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, 3%) scale(1.03); }
    66% { transform: translate(-2%, 1%) scale(0.98); }
}
@media (prefers-reduced-motion: reduce) {
    .newsletter-orb { animation: none; }
}

.newsletter-wrap {
    position: relative;
    z-index: 1;
}
.newsletter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(min(100%, 360px), min(640px, 100%));
    gap: clamp(28px, 5vw, 48px);
    align-items: start;
}
.newsletter-intro {
    max-width: 520px;
}
.newsletter-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px;
}
.newsletter-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 16px rgba(255, 126, 95, 0.7);
}
.newsletter-intro h2 {
    font-size: clamp(1.75rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: #fff;
}
.newsletter-title-accent {
    display: inline;
    background: linear-gradient(120deg, #fff 0%, #feb47b 45%, #ff7e5f 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.newsletter-lead {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 24px;
}
.newsletter-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.newsletter-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}
.newsletter-perks i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 126, 95, 0.18);
    color: #feb47b;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.newsletter-card {
    position: relative;
    padding: clamp(28px, 5vw, 44px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.newsletter-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.45), rgba(79, 172, 254, 0.15), rgba(255, 126, 95, 0.25));
    opacity: 0.35;
    z-index: -1;
    filter: blur(20px);
    pointer-events: none;
}
.newsletter-form {
    position: relative;
}
.newsletter-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.newsletter-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 126, 95, 0.4), rgba(254, 180, 123, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1.28rem;
    box-shadow: 0 8px 24px rgba(255, 126, 95, 0.25);
}
.newsletter-card-head-text {
    min-width: 0;
    flex: 1;
}
.newsletter-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.newsletter-card-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.newsletter-card-sub {
    font-size: clamp(0.92rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.62);
    margin: 8px 0 0;
    line-height: 1.55;
}

.newsletter-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    width: 100%;
}
.newsletter-field--full {
    width: 100%;
}
.newsletter-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-label abbr {
    text-decoration: none;
    color: #feb47b;
}
.newsletter-label-opt {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    opacity: 0.75;
}
.newsletter-input {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 10, 14, 0.55);
    color: #fff;
    font-family: inherit;
    font-size: 1.06rem;
    line-height: 1.35;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.newsletter-input:hover {
    border-color: rgba(255, 255, 255, 0.22);
}
.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 126, 95, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.2);
    background: rgba(10, 12, 18, 0.65);
}
.newsletter-submit-wrap {
    margin-top: 6px;
    width: 100%;
}
.newsletter-btn {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 26px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: #1a1f2e;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 10px 32px rgba(255, 126, 95, 0.48);
}
.newsletter-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}
.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 126, 95, 0.55);
}
.newsletter-btn:hover i {
    transform: translateX(4px);
}
.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-msg {
    margin: 18px 0 0;
    font-size: 0.95rem;
    min-height: 1.45em;
    line-height: 1.5;
}
.newsletter-trust {
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}
.newsletter-trust i {
    margin-top: 2px;
    color: rgba(254, 180, 123, 0.7);
    flex-shrink: 0;
}

@media (min-width: 720px) {
    .newsletter-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 20px;
    }
    .newsletter-field--full {
        grid-column: 1 / -1;
    }
    .newsletter-submit-wrap {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-intro {
        max-width: none;
    }
    .newsletter-card {
        margin-left: 0;
        max-width: none;
    }
}

/* ── About Section ── */
.about-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,126,95,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}
.about-image > img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    padding: 16px 22px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(255,126,95,0.45);
}
.about-img-badge i { font-size: 1.3rem; }

/* About collage (Instagram rastgele fotoğraflar) */
.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 10px;
    border-radius: 24px;
    overflow: hidden;
}
.collage-item { overflow: hidden; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.collage-item:hover img { transform: scale(1.07); }
.collage-item-0 { grid-row: 1 / 3; }

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin: 12px 0 20px;
}
.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.btn-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,126,95,0.35);
}
.btn-primary-link:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,126,95,0.5); }

/* ── Contact Section ── */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,126,95,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    color: white;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}
.contact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: rgba(255,126,95,0.4);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 6px 18px rgba(255,126,95,0.4);
}
.contact-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; opacity: 0.85; }
.contact-card p { font-size: 0.95rem; opacity: 0.75; }
.contact-card a { color: inherit; text-decoration: none; }
.contact-card a:hover { opacity: 1; text-decoration: underline; }

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}
.social-pill:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,126,95,0.4);
}

/* ── Footer ── */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 24px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 700;
}
.footer-section p {
    opacity: 0.7;
    line-height: 1.7;
    font-size: 0.95rem;
}
.footer-section p + p { margin-top: 10px; }
.footer-section p i { width: 18px; margin-right: 6px; opacity: 0.6; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--primary); transform: translateY(-4px); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}
.footer-section ul a:hover { color: var(--secondary); }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image { max-width: 550px; }
    .about-img-badge { bottom: -12px; right: 12px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .header-ig-actions {
        display: none !important;
    }
    .mobile-ig-cta {
        display: flex;
    }
    body {
        padding-bottom: 88px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links a { border-radius: var(--radius-sm); }
    .mobile-menu-btn { display: flex; }
    .main-header { position: relative; }

    .hero-slider { height: 80vh; border-radius: 0 0 28px 28px; }
    .slide-content h1 { font-size: 2rem; }
    .slider-btn { width: 42px; height: 42px; font-size: 0.9rem; }
    .slider-prev { left: 14px; }
    .slider-next { right: 14px; }

    .feed-container { padding: 60px 0; }
    .instagram-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

    .about-stats { gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }

    .hero-btns { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .instagram-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .card-content { padding: 12px; }
    .card-caption { font-size: 0.78rem; }
    .feed-top-actions { flex-direction: column; align-items: stretch; }
    .feed-action-btn { justify-content: center; }
}

@media (min-width: 769px) {
    .mobile-ig-cta {
        display: none !important;
    }
}
