@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

.section-title,
.section-subtitle,
.service-card,
.form-group,
.form-submit-btn {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.section-title.reveal,
.section-subtitle.reveal,
.service-card.reveal,
.form-group.reveal,
.form-submit-btn.reveal {
    opacity: 1;
    transform: translateY(0);
}


html {
    scroll-behavior: smooth;
}


.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-rose: #ff6b9d;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;

    --overlay-dark: rgba(0, 0, 0, 0.7);

    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
}



/* Top Bar */
.top-bar {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
    max-height: 50px;
    opacity: 1;
    width: 100%;
    position: relative;
    z-index: 1001;
}

.top-bar.hide {
    transform: translateY(-100%);
}

.top-bar-container {
    max-height: 1400px;
    margin: 0 auto;
    padding: 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iletişim-bilgi {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #fff;
    gap: 100px;
    margin-left: 70px;
}

.iletişim-bilgi-item i {
    margin-right: 10px;
    color: #d4af37;
    font-size: 15px;
}

/* -------------------------------------------------------------------*/


/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    position: fixed;
    top: 50px;
    /* top bar yüksekliği */
    z-index: 1000;
    width: 100%;
    padding: 0 50px;
    background-color: #141212;
    box-sizing: border-box;
    transition: top 0.3s ease;
    /* yumuşak hareket */
}

/* logo */
.logo a {
    display: flex;
    /* Yatay hizalama */
    align-items: center;
    /* Dikey ortala */
    gap: 10px;
    /* Logo ile yazı arası boşluk */
    text-decoration: none;
    /* alt çizgiyi kaldır */
    transition: var(--transition-smooth);

}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    display: block;
    /* Logo düzgün boyutta olsun */
    height: 80px;
    width: auto;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.logo-text,
.logo-accent {
    font-size: 28px;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo-text {
    color: var(--text-light);
}

.logo-accent {
    color: var(--accent-gold);
}

/* -------------------------------------------------------------------*/
/* Menu */
.menu>ul {
    display: flex;
    align-items: center;
    /* Dikey ortalama */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
}

.menu li {
    position: relative;
    /* Anchor for submenu */
}

.menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.menu a:hover {
    color: var(--accent-gold);
}



/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-dark);
    min-width: 220px;
    padding: 10px 0;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 100;
    list-style: none;
}

/* Show Submenu on Hover */
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Item Styles */
.submenu li {
    width: 100%;
}

.submenu a {
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-fast);
}

.submenu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    padding-left: 25px;
    /* Slight indent on hover for premium feel */
}

/* Dropdown Arrow Indicator */
.has-submenu>a::after {
    content: '\f0d7';
    /* FontAwesome angle-down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 13px;
    transition: transform var(--transition-fast);
}

.has-submenu:hover>a::after {
    transform: rotate(180deg);
    /* Flip arrow on hover */
}

/* -------------------------------------------------------------------*/


/* Main Content & Hero Slider Section */
.hero-video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 6.5s ease-out;
    transform: scale(1.03);
    z-index: -1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 0;
}

.slider-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.6) 0%,
            rgba(10, 10, 10, 0.2) 20%,
            rgba(10, 10, 10, 0.4) 75%,
            var(--primary-dark) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);

    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buton Stilleri */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}



@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* -------------------------------------------------------------------*/

/* ============================================================
   MODELLER SAYFASI — Model Kartları
   ============================================================ */
.modeller-section {
    background: var(--primary-dark);
    padding: 120px 0 80px;
    min-height: 60vh;
}

.modeller-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.modeller-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.modeller-empty i {
    font-size: 56px;
    color: rgba(255, 255, 255, 0.1);
    display: block;
    margin-bottom: 16px;
}

.modeller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.model-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.model-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.model-card-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
}

.model-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.model-card:hover .model-card-photo img {
    transform: scale(1.05);
}

.model-card-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 56px;
}

.model-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.model-card:hover .model-card-overlay {
    opacity: 1;
}

.model-card-meta-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.model-card-meta-inner span {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.model-card-meta-inner span i {
    font-size: 10px;
}

.model-card-info {
    padding: 14px 16px 16px;
}

.model-card-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.model-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.model-card-tags span {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2px 10px;
}

@media (max-width: 600px) {
    .modeller-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
    }
}

/* ============================================================
   MODEL SAYFALARI — page-erkek/bayan/cocuk-modeller.php
   ============================================================ */
.modeller-page-section {
    background: var(--primary-dark);
    min-height: 100vh;
    padding: 0 0 80px;
}

.modeller-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ---- Page Header ---- */
.modeller-page-header {
    padding: 120px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.modeller-page-breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.modeller-page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.modeller-page-breadcrumb a:hover {
    color: var(--accent-gold);
}

.modeller-page-breadcrumb i {
    font-size: 9px;
    opacity: 0.4;
}

.modeller-page-breadcrumb .current {
    color: var(--accent-gold);
}

.modeller-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.modeller-page-title .gold {
    color: var(--accent-gold);
}

.modeller-page-title i {
    font-size: 0.7em;
    color: var(--accent-gold);
    opacity: 0.7;
}

.modeller-page-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
}

/* ---- Category Nav ---- */
.modeller-cat-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cat-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cat-nav-link:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-light);
}

.cat-nav-link.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ---- Model Grid ---- */
.modeller-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

/* ---- Model Card ---- */
.mp-card {
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.mp-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.mp-card-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
}

.mp-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s ease;
}

.mp-card:hover .mp-card-photo img {
    transform: scale(1.07);
}

.mp-card-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.07);
}

.mp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.mp-card:hover .mp-card-overlay {
    opacity: 1;
}

.mp-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mp-card-stats span {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.mp-card-stats span i {
    font-size: 10px;
}

.mp-card-info {
    padding: 16px 18px 20px;
}

.mp-card-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.mp-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.mp-card-tags span {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mp-card-bio {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    margin: 0;
}

/* ---- Empty State ---- */
.modeller-page-empty {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-muted);
}

.modeller-page-empty i {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.06);
    display: block;
    margin-bottom: 20px;
}

.modeller-page-empty h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.modeller-page-empty p {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* ---- CTA ---- */
.modeller-cta {
    text-align: center;
    padding: 50px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modeller-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--accent-gold), #b8961e);
    color: #000;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #e8c84a, var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .modeller-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 750px) {
    .modeller-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 90px;
    }

    .modeller-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .modeller-cat-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .modeller-page-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PREMIUM FOOTER STYLES
   ============================================================ */
.site-footer {
    background: linear-gradient(to top, rgba(5, 5, 5, 1) 0%, rgba(15, 15, 15, 0.98) 100%);
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.footer-top {
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.widget-title {
    font-family: var(--font-display);
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-menu a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent-gold);
}

.newsletter-widget p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    transition: var(--transition-smooth);
}

.input-group:focus-within {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 10px 20px;
    outline: none;
    font-family: var(--font-primary);
    width: 100%;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-subscribe {
    background: var(--accent-gold);
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-subscribe:hover {
    background: #e8c84a;
    transform: scale(1.05);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}


/* ============================================================
   MOBILE RESPONSIVE (CRITICAL)
   ============================================================ */

/* Hamburger menu trigger icon */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--accent-gold);
    transition: var(--transition-fast);
    padding: 10px;
}

@media (max-width: 992px) {
    .header-container { padding: 0 20px; }
    .menu > ul { gap: 20px; }
    .logo-text, .logo-accent { font-size: 20px; }
    .iletişim-bilgi { gap: 20px; margin-left: 0; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .header-container {
        top: 0 !important;
        height: 80px;
        padding: 0 20px;
    }

    .mobile-menu-toggle { display: block; }

    /* Mobile Nav Overlay */
    .menu > ul {
        position: fixed;
        top: 80px; left: 0; width: 100%; height: calc(100vh - 80px);
        background: rgba(20, 18, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
        margin: 0; padding: 0 0 100px;
    }

    .menu > ul.active { transform: translateX(0); }
    .menu a { font-size: 20px; width: 100%; justify-content: center; }

    /* Submenu on Mobile */
    .has-submenu .submenu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none; display: none; margin: 10px 0;
    }

    .has-submenu.active .submenu, 
    .has-submenu:hover .submenu { display: block; }

    /* Hero Section */
    .hero-title { font-size: 2.2rem; margin-bottom: 15px; }
    .hero-description { font-size: 1rem; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .btn { width: 100%; display: block; text-align: center; }

    /* Lists and Grids */
    .modeller-grid, .modeller-page-grid, .referans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .section-header { margin-bottom: 3rem; }
    .section-title { font-size: 1.8rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; }
    .brand-widget, .links-widget, .contact-widget { display: flex; flex-direction: column; align-items: center; }
    .social-links { justify-content: center; }
    .bottom-grid { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

    /* Form */
    .form-row, .three-col { grid-template-columns: 1fr !important; gap: 15px !important; }
    .step-progress { overflow-x: auto; justify-content: flex-start; padding: 10px 10px 20px; }
    .step-item span { display: none; }
    .başvuru-wrapper { padding: 30px 20px; }
}
