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

:root {
    --red:        #C0392B;
    --red-dark:   #922B21;
    --red-deep:   #641E16;
    --red-bright: #E74C3C;
    --red-light:  #FADBD8;
    --red-pale:   #FEF0EE;
    --cream:      #FFF8F8;
    --warm-gray:  #6B4C4C;
    --text:       #1C1010;
    --text-soft:  #5A3A3A;
    --white:      #FFFFFF;
    --shadow:     rgba(192, 57, 43, 0.15);
    --radius:     12px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

/* ─── HEADER ─────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px var(--shadow);
    transition: var(--transition);
}

.nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 48px;
    object-fit: contain;
    border-radius: 14px;
    background: var(--red-pale);
    padding: 4px;
}

.logo-text .name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-text .sub {
    font-size: 0.68rem;
    color: var(--warm-gray);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--red-light);
    padding: 1rem 5%;
}

.mobile-menu.open { display: flex; flex-direction: column; gap: 1rem; }

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--red-pale);
}

/* ─── HERO ───────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/balci-store-day.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(100, 30, 22, 0.88) 0%,
        rgba(146, 43, 33, 0.75) 40%,
        rgba(192, 57, 43, 0.5) 70%,
        rgba(192, 57, 43, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Nokta JS tarafından ekleniyor */

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(90deg, #FFD6D0, #FFBAB0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--red);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.8); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 480px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.stat {
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.08);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION COMMONS ────────────────────── */
.section { padding: 90px 5%; }
.section-inner { max-width: 1300px; margin: 0 auto; }

.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span { color: var(--red); }

.section-sub {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 540px;
    line-height: 1.7;
}

/* ─── TICKER ────────────────────────────── */
.ticker {
    background: var(--red);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: ticker 25s linear infinite;
}

.ticker span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0 3rem;
    opacity: 0.9;
}

.ticker span::before {
    content: '★';
    margin-right: 3rem;
    opacity: 0.6;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────── */
.about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(192,57,43,0.4);
}

.about-badge .num {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge .txt {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--red-light);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
    width: 36px; height: 36px;
    background: var(--red-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text .title { font-weight: 700; font-size: 0.85rem; color: var(--text); }
.feature-text .desc { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }

/* ─── HOURS STRIP ────────────────────────── */
.hours-strip {
    background: var(--red-deep);
    padding: 2rem 5%;
}

.hours-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hours-title {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.hours-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-day {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.hours-time {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.hours-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 14px 22px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background var(--transition);
}

.hours-cta:hover { background: rgba(255,255,255,0.2); }

/* ─── CATEGORIES ─────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.cat-card {
    background: var(--white);
    border: 2px solid var(--red-light);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}

.cat-card:hover {
    border-color: var(--red);
    background: var(--red-pale);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
}

.cat-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.cat-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.cat-count { font-size: 0.72rem; color: var(--warm-gray); margin-top: 4px; }

/* ─── SERVICES ───────────────────────────── */
.services { background: var(--cream); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(192,57,43,0.2);
}

.service-card-top {
    background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-card-top::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.service-card-top .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card-top h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); }

.service-card-body { padding: 1.5rem 2rem 2rem; }

.service-card-body p {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.service-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── GALLERY ────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 420px;
    gap: 12px;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child { grid-row: span 1; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(100,30,22,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.gallery-placeholder {
    background: var(--red-pale);
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
}

.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.5; }

.gallery-coming-soon .gallery-placeholder {
    background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-coming-soon .placeholder-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 0.25;
    filter: brightness(10);
}


/* ─── CONTACT ────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 1.2rem;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
}

.contact-item-icon {
    width: 44px; height: 44px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-body .label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-body .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.contact-item-body .value a {
    color: var(--red);
    text-decoration: none;
}

.contact-item-body .value a:hover { text-decoration: underline; }

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    height: 380px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-placeholder {
    text-align: center;
    color: var(--red);
}

.map-placeholder .mp-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.map-placeholder p { font-weight: 600; font-size: 0.9rem; opacity: 0.7; }

/* ─── FOOTER ─────────────────────────────── */
footer {
    background: var(--red-deep);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo img { height: 44px; filter: brightness(10); border-radius: 14px; padding: 4px; background: rgba(255,255,255,0.1); }
.footer-brand .logo .name { color: var(--white); }
.footer-brand .logo .sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    transition: background var(--transition);
}

.social-btn:hover { background: var(--red); }

.footer-col h4 {
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links li a:hover { color: var(--white); }

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* ─── WHATSAPP FLOAT ─────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-bubble {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    max-width: 200px;
    text-align: right;
    display: none;
    animation: fadeUp 0.3s ease;
}

.whatsapp-bubble.show { display: block; }

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

.whatsapp-btn {
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); }

/* ─── PROMO SLIDER ───────────────────────── */
.promo-section {
    position: relative;
    overflow: hidden;
    user-select: none;
    background: #000;
}

.promo-slider {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

/* Her slide */
.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Bulanık arka plan — boşlukları kaplar */
.promo-slide-bg {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.45) saturate(1.3);
    transform: scale(1.08);
    z-index: 0;
}

/* Keskin ön plan fotoğraf */
.promo-slide img {
    position: relative;
    z-index: 1;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.5));
}

/* Sol / Sağ oklar */
.promo-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.promo-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.08);
}

.promo-btn svg { width: 22px; height: 22px; }
.promo-prev { left: 24px; }
.promo-next { right: 24px; }

/* Nokta navigasyon */
.promo-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.promo-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .promo-slider { height: 520px; }
}

@media (max-width: 768px) {
    .promo-slider { height: 420px; }
    .promo-btn { width: 40px; height: 40px; }
    .promo-btn svg { width: 18px; height: 18px; }
    .promo-prev { left: 12px; }
    .promo-next { right: 12px; }
}

@media (max-width: 480px) {
    .promo-slider { height: 340px; }
    .promo-btn { display: none; }
}

/* ─── RESPONSIVE ─────────────────────────── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrap { max-width: 560px; }
    .services-grid    { grid-template-columns: 1fr 1fr; }
    .contact-grid     { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr 1fr; }
}

/* Mobil (≤768px) */
@media (max-width: 768px) {
    /* Nav */
    .nav-links  { display: none; }
    .hamburger  { display: flex; }

    /* Hero */
    .hero       { min-height: 85vh; }
    .hero h1    { font-size: 2rem; }
    .hero p     { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions a { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
    .stat-num   { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; }
    .hero-scroll { display: none; }

    /* Hours */
    .hours-inner   { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hours-cta     { width: 100%; justify-content: center; }

    /* About */
    .about-badge   { bottom: -10px; right: 10px; }
    .about-features { grid-template-columns: 1fr; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid  { grid-template-rows: 280px; }

    /* Footer */
    .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* Küçük mobil (≤480px) */
@media (max-width: 480px) {
    .section        { padding: 50px 4%; }
    .hero-content   { padding: 0 4%; }
    .hero h1        { font-size: 1.75rem; }
    .hero-stats     { grid-template-columns: repeat(3, 1fr); }
    .stat           { padding: 0.9rem 0.5rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title  { font-size: 1.6rem; }
    .about-badge    { right: 5px; bottom: -5px; padding: 14px 16px; }
    .about-badge .num { font-size: 2rem; }
    .contact-item   { flex-direction: row; }
    .map-wrap       { height: 280px; }

    /* Ticker daha küçük */
    .ticker span    { font-size: 0.75rem; padding: 0 1.5rem; }
}
