@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --gold: #C4A35A; --gold-dark: #B08F4A; --black: #0D0D0D;
    --white: #FFFFFF; --cream: #F5F2EB; --gray: #888; --light-gray: #E5E0D8;
    --radius-sm: 10px; --radius: 16px; --radius-xl: 50px;
}

body { font-family: 'Inter', sans-serif; background: var(--white); color: #1A1A1A; font-weight: 300; line-height: 1.6; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* MOBİL TAŞMA DÜZELTMELERİ */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
img {
    max-width: 100%;
    height: auto;
}
iframe {
    max-width: 100%;
}

/* TOP BAR */
.top-bar { background: var(--black); color: var(--white); font-size: 0.7rem; letter-spacing: 1px; padding: 8px 0; text-align: center; transition: all 0.3s; }
.top-bar span { color: var(--gold); }
.top-bar.special { background: var(--gold); }
.top-bar.special span { color: var(--black); font-weight: 600; }

/* NAV */
nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--light-gray); position: sticky; top: 0; z-index: 1000; }
nav .container { display: flex; justify-content: space-between; align-items: center; height: 80px; overflow: visible; }
.logo { flex-shrink: 0; text-decoration: none; }
.logo img { height: 90px; width: auto; display: block; }

.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-links > li > a, .nav-links > a { text-decoration: none; color: #1A1A1A; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; transition: color 0.3s; position: relative; white-space: nowrap; cursor: pointer; }
.nav-links > li > a::after, .nav-links > a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links > li > a:hover, .nav-links > a:hover { color: var(--gold); }
.nav-links > li > a:hover::after, .nav-links > a:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 0.5rem; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-sm); min-width: 180px; padding: 8px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.06); z-index: 1001; overflow: hidden; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block !important; padding: 10px 20px !important; font-size: 0.7rem !important; letter-spacing: 1px !important; color: #1A1A1A !important; transition: all 0.3s !important; text-decoration: none !important; }
.dropdown-menu a:hover { background: var(--cream) !important; color: var(--gold) !important; }
.dropdown-menu a::after { display: none !important; }

.nav-btn { background: var(--gold) !important; color: var(--white) !important; padding: 10px 22px !important; font-weight: 600 !important; letter-spacing: 1px !important; border: 2px solid var(--gold) !important; border-radius: var(--radius-xl) !important; transition: all 0.4s !important; }
.nav-btn:hover { background: transparent !important; color: var(--gold) !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(196, 163, 90, 0.4); }
.nav-btn::after { display: none !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: #1A1A1A; margin: 4px 0; transition: 0.3s; }

/* HERO SLIDER */
.hero-slider { height: 70vh; min-height: 400px; position: relative; overflow: hidden; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: flex-end; justify-content: center; text-align: center; color: var(--white); opacity: 0; transition: opacity 1s ease-in-out; padding-bottom: 50px; }
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.35); z-index: 1; }
.hero-slide.video-slide { align-items: flex-end; padding-bottom: 30px; }
.hero-slide.video-slide::before { background: rgba(0,0,0,0.1); }
.hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.hero-video-wrapper iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; transform: translate(-50%, -50%); border: none; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 90%; }
.hero-content .hero-tag { display: inline-block; border: 1px solid rgba(255,255,255,0.5); padding: 6px 16px; font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; font-weight: 400; border-radius: var(--radius-xl); }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -1px; line-height: 1.1; }
.hero-content .subtitle { font-size: 0.9rem; font-weight: 300; letter-spacing: 1px; margin-bottom: 30px; opacity: 0.9; }
.hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.hero-dot.active { background: var(--gold); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; z-index: 3; font-size: 1rem; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,0.2); }
.hero-prev { left: 10px; } .hero-next { right: 10px; }

/* BUTONLAR */
.btn { padding: 12px 28px; text-decoration: none; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: all 0.3s; display: inline-block; border: none; border-radius: var(--radius-xl); }
.btn-gold { background: var(--gold); color: var(--white); } .btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 1px solid var(--white); color: var(--white); background: transparent; } .btn-outline:hover { background: var(--white); color: #1A1A1A; }

/* HİZMET KART BUTONLARI */
.hizmet-card-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.hizmet-card-buttons .btn {
    flex: 1;
    text-align: center;
    font-size: 0.62rem;
    padding: 8px 6px;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* BÖLÜMLER */
section { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag { color: var(--gold); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 500; color: #1A1A1A; letter-spacing: -0.5px; }
.section-line { width: 30px; height: 2px; background: var(--gold); margin: 15px auto 0; border-radius: 1px; }
.intro-text { text-align: center; max-width: 600px; margin: 0 auto 40px; color: var(--gray); font-size: 0.9rem; line-height: 1.8; }

/* GÜVEN SAYAÇLARI */
.trust-section { background: var(--cream); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
.trust-item { padding: 15px; }
.trust-number { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 600; }
.trust-label { color: var(--gray); font-size: 0.75rem; margin-top: 3px; letter-spacing: 1px; }

/* HİZMETLER */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.service-card { 
    background: var(--white); border: 1px solid var(--light-gray); 
    border-radius: var(--radius); overflow: hidden; 
    transition: all 0.4s; cursor: pointer; 
}
.service-card:hover { 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.2);
    border-color: var(--gold);
}
.service-img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform 0.4s; pointer-events: none; -webkit-user-select: none; user-select: none; -webkit-user-drag: none; }
.service-card:hover .service-img { transform: scale(1.05); }
.service-body { padding: 18px 15px; text-align: center; }
.service-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; margin-bottom: 5px; color: #1A1A1A; transition: color 0.3s; }
.service-card:hover .service-body h3 { color: var(--gold); }
.service-body p { color: var(--gray); font-size: 0.78rem; margin-bottom: 10px; line-height: 1.4; }

/* POPUP */
.popup-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; }
.popup-overlay.active { display: flex; }
.popup { background: var(--white); max-width: 90%; width: 400px; padding: 30px 25px; text-align: center; position: relative; border-radius: var(--radius); animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.popup-close { position: absolute; top: 10px; right: 15px; background: var(--cream); border: none; width: 30px; height: 30px; border-radius: 50%; font-size: 1rem; cursor: pointer; color: var(--gray); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.popup-close:hover { background: var(--black); color: var(--white); }
.popup h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 15px; }
.popup .popup-desc { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
.popup .popup-info { background: var(--cream); padding: 15px; border-radius: var(--radius-sm); margin-bottom: 12px; font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.popup .free-analysis { background: var(--black); color: var(--gold); padding: 10px 15px; border-radius: var(--radius-sm); margin-bottom: 15px; font-size: 0.72rem; letter-spacing: 1px; font-weight: 500; }

/* KAMPANYA POPUP */
.kampanya-popup .insta-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; padding: 12px 25px; border-radius: var(--radius-xl); text-decoration: none; font-weight: 600; letter-spacing: 1px; font-size: 0.8rem; transition: transform 0.3s; }
.kampanya-popup .insta-btn:hover { transform: scale(1.05); }

/* KAMPANYA BADGE */
.kampanya-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: badgeGlow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
    position: relative;
    overflow: hidden;
}
.kampanya-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: badgeShine 3s linear infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(231,76,60,0.3); transform: scale(1); }
    50% { box-shadow: 0 8px 30px rgba(231,76,60,0.5); transform: scale(1.02); }
}
@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* KAMPANYA LÜKS BUTONLAR */
.btn-lux {
    padding: 16px 32px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    text-align: center;
    min-width: 180px;
    flex: 1;
}
.btn-lux-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-lux-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196,163,90,0.3);
}
.btn-lux-gold {
    background: var(--gold);
    color: white;
    border: 2px solid var(--gold);
}
.btn-lux-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196,163,90,0.3);
}

/* HAKKIMIZDA */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 300px; object-fit: cover; object-position: top; display: block; border-radius: var(--radius); }
.about-image .gold-border { position: absolute; top: -10px; left: -10px; width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 500; margin-bottom: 15px; line-height: 1.3; }
.about-text .gold-text { color: var(--gold); }
.about-text p { color: var(--gray); font-size: 0.85rem; line-height: 1.8; margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0; }
.about-feature { display: flex; align-items: center; gap: 8px; }
.about-feature .check { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.6rem; flex-shrink: 0; }
.about-feature span { font-size: 0.8rem; color: #1A1A1A; }

/* YORUMLAR */
.reviews-section { background: var(--cream); overflow: hidden; }
.reviews-animated-wrapper {
    animation: slideInRight 0.8s ease-out;
    position: relative;
}
@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* INSTAGRAM */
.instagram-section { background: var(--white); }

/* İLETİŞİM */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 20px; }
.contact-item { margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid var(--light-gray); }
.contact-item:last-child { border-bottom: none; }
.contact-item .label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 5px; }
.contact-item .value { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
.contact-item a { color: #1A1A1A; text-decoration: none; } .contact-item a:hover { color: var(--gold); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--light-gray); font-size: 0.8rem; color: var(--gray); }
.hours-list li:last-child { border-bottom: none; } .hours-list .closed { color: #C0392B; font-weight: 500; }

/* HARİTA */
.map-wrapper { position: relative; }
.map-address { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 8px; font-size: 0.78rem; color: #1A1A1A; display: flex; align-items: center; gap: 6px; }
.map-address svg { width: 16px; height: 16px; fill: #EA4335; flex-shrink: 0; }
.map-container { border: 8px solid var(--white); border-radius: var(--radius); box-shadow: 0 3px 20px rgba(0,0,0,0.06); overflow: hidden; }
.map-container iframe { width: 100%; height: 280px; border: none; display: block; max-width: 100%; }
.map-buttons { display: flex; gap: 8px; margin-top: 10px; justify-content: center; flex-wrap: wrap; }
.map-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: var(--radius-xl); text-decoration: none; font-size: 0.72rem; letter-spacing: 1px; font-weight: 500; transition: all 0.3s; }
.map-btn-maps { background: #4285F4; color: white; } .map-btn-maps:hover { background: #3367D6; }
.map-btn-navigate { background: #25D366; color: white; } .map-btn-navigate:hover { background: #1DA851; }

/* CTA */
.cta-section { background: var(--black); text-align: center; padding: 60px 0; }
.cta-section h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 2rem; font-weight: 500; margin-bottom: 8px; }
.cta-section p { color: var(--gray); font-size: 0.9rem; margin-bottom: 25px; }

/* FOOTER DALGA */
.footer-wave { position: relative; background: #0A0A0A; margin-top: -2px; overflow: hidden; height: 50px; }
.footer-wave svg { position: absolute; top: -30px; left: 0; width: 200%; height: 80px; }
.wave-path { animation: waveMove 6s ease-in-out infinite; }
.wave-path2 { animation: waveMove 8s ease-in-out infinite reverse; opacity: 0.5; }
@keyframes waveMove { 0% { transform: translateX(0); } 50% { transform: translateX(-25%); } 100% { transform: translateX(0); } }

/* FOOTER */
footer { background: #0A0A0A; color: #777; padding: 30px 0 0; font-size: 0.78rem; position: relative; overflow: hidden; }
.footer-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.footer-particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; animation: floatUp 4s linear infinite; opacity: 0; }
.footer-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.footer-particle:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.footer-particle:nth-child(3) { left: 50%; animation-delay: 1s; }
.footer-particle:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.footer-particle:nth-child(5) { left: 90%; animation-delay: 2s; }
.footer-particle:nth-child(6) { left: 20%; animation-delay: 2.5s; }
.footer-particle:nth-child(7) { left: 60%; animation-delay: 3s; }
.footer-particle:nth-child(8) { left: 80%; animation-delay: 3.5s; }
@keyframes floatUp {
    0% { opacity: 0; transform: translateY(80px) scale(1); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-80px) scale(3); }
}

.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 30px; position: relative; z-index: 1; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1rem; margin-bottom: 15px; font-weight: 500; }
.footer-col p, .footer-col a { color: #888; text-decoration: none; line-height: 1.8; font-size: 0.78rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-links { list-style: none; }
.footer-col .footer-links li { margin-bottom: 5px; }
.footer-col .footer-links a { color: #888; text-decoration: none; transition: color 0.3s; }
.footer-col .footer-links a:hover { color: var(--gold); }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.payment-icon { background: #1A1A1A; border: 1px solid #333; border-radius: 6px; padding: 6px 10px; font-size: 0.68rem; color: #aaa; letter-spacing: 1px; display: flex; align-items: center; gap: 4px; }
.footer-bottom { border-top: 1px solid #1A1A1A; padding: 15px 0; text-align: center; font-size: 0.72rem; color: #666; position: relative; z-index: 1; }
.footer-bottom a { color: var(--gold); text-decoration: none; } .footer-bottom a:hover { text-decoration: underline; }

/* WHATSAPP */
.wpp-float { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; z-index: 9998; box-shadow: 0 5px 20px rgba(37,211,102,0.35); transition: all 0.3s; }
.wpp-float:hover { transform: scale(1.1); }
.wpp-float svg { width: 26px; height: 26px; fill: white; }

/* SAYFA HEADER */
.page-header {
    background: var(--black); color: var(--white);
    text-align: center; padding: 60px 0 50px;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(196,163,90,0.1) 0%, transparent 50%);
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 500; position: relative; z-index: 1; }
.page-header p { color: var(--gray); font-size: 0.9rem; margin-top: 10px; position: relative; z-index: 1; }
.page-header .gold-line { width: 40px; height: 2px; background: var(--gold); margin: 15px auto 0; position: relative; z-index: 1; }

/* TABLET */
@media (min-width: 768px) {
    .container { padding: 0 30px; }
    .logo img { height: 120px; }
    nav .container { height: 100px; }
    .nav-links { gap: 25px; }
    .nav-links > li > a, .nav-links > a { font-size: 0.75rem; letter-spacing: 1.5px; }
    .hero-slider { height: 75vh; min-height: 450px; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content .subtitle { font-size: 1rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-number { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-image img { height: 400px; }
    .about-text h3 { font-size: 1.8rem; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .map-container iframe { height: 350px; }
    .page-header { padding: 80px 0 60px; }
    .page-header h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .section-header h2 { font-size: 2.4rem; }
}

/* MASAÜSTÜ */
@media (min-width: 1024px) {
    nav .container { height: 110px; }
    .logo img { height: 150px; }
    .hero-slider { height: 85vh; min-height: 500px; }
    .hero-content h1 { font-size: 4.5rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .service-img { height: 220px; }
    .trust-number { font-size: 2.5rem; }
    .about-image img { height: 500px; }
    .about-text h3 { font-size: 2.2rem; }
    .map-container iframe { height: 380px; }
    .page-header { padding: 100px 0 70px; }
    .page-header h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.8rem; }
    section { padding: 80px 0; }
}

/* MOBİL MENÜ */
@media (max-width: 767px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; gap: 12px; border-bottom: 1px solid var(--light-gray); border-radius: 0 0 var(--radius) var(--radius); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .dropdown-menu { position: static; box-shadow: none; border: none; display: none; padding: 0 0 0 15px; }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown > a::after { content: ''; }
}