/* ─── TOKENS ─── */
:root {
    --black: #0A0A0A;
    --dark:  #111111;
    --gold:  #C9A84C;
    --gold2: #E8C97A;
    --sand:  #F2EDE4;
    --white: #FAFAF8;
    --muted: #888880;
    --border: rgba(0,0,0,0.09);
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; padding-top: 104px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible    { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.08s !important; }
.d2 { transition-delay: 0.18s !important; }
.d3 { transition-delay: 0.28s !important; }
.d4 { transition-delay: 0.38s !important; }
.d5 { transition-delay: 0.48s !important; }
.d6 { transition-delay: 0.58s !important; }

/* ─── TOPBAR ─── */
#topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: var(--dark); color: var(--gold); padding: 9px 0; font-size: 0.8rem; }
#topbar a { color: var(--gold); transition: color .2s; }
#topbar a:hover { color: var(--gold2); }
.tb-item { display: flex; align-items: center; gap: 7px; }
.tb-item i { font-size: 0.7rem; opacity: 0.8; }

/* ─── NAVBAR ─── */
#mainNav {
    position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
    padding: 10px 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand img { max-height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li > a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.83rem; font-weight: 400; letter-spacing: 0.04em;
    padding: 7px 12px; border-radius: 2px; transition: color 0.2s;
    color: var(--black);
}
.nav-links > li > a:hover { color: var(--gold) !important; }
.nav-btn {
    background: var(--gold); color: var(--white) !important;
    font-weight: 700; padding: 8px 20px !important;
    transition: background 0.2s, transform 0.2s !important; border-radius: 2px;
}
.nav-btn:hover { background: var(--gold2) !important; transform: translateY(-1px); }

/* Dropdown */
.nav-links li { position: relative; }
.nav-dd {
    position: absolute; top: calc(100% + 10px); left: 0;
    background: var(--white); min-width: 200px;
    border-top: 2px solid var(--gold); border-radius: 0 0 4px 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all 0.22s; list-style: none; padding: 6px 0;
}
.nav-links li:hover .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd li a { display: block; padding: 8px 18px; font-size: 0.81rem; color: var(--black); transition: color 0.2s, padding 0.2s; }
.nav-dd li a:hover { color: var(--gold); padding-left: 24px; }

/* Mobile */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--black); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: all 0.3s; }

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: calc(100vh - 104px);
    background: #0A0A0A url('https://novvacelikkapi.com/gorsel/g1.png') center/cover no-repeat;
    display: flex; flex-direction: column; justify-content: flex-end;
    will-change: background-position;
}
#hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.45) 50%, rgba(8,8,8,0.18) 100%);
}
.hero-body {
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 0 0 56px; gap: 24px;
}
.hero-text { max-width: 660px; }
.hero-eye {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.1rem; display: block;
    animation: fuUp 0.9s ease 0.2s both;
}
#hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.08;
    color: var(--white); margin-bottom: 1.6rem;
    animation: fuUp 0.9s ease 0.45s both;
}
#hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: 0.97rem; color: rgba(255,255,255,0.75); line-height: 1.82; max-width: 480px; margin-bottom: 2rem;
    animation: fuUp 0.9s ease 0.65s both;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; animation: fuUp 0.9s ease 0.8s both; }
.btn-gold  { background: var(--gold); color: var(--white); font-weight: 700; font-size: 0.84rem; letter-spacing: 0.06em; padding: 13px 28px; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px; transition: background .25s, transform .25s; }
.btn-gold:hover  { background: var(--gold2); color: var(--white); transform: translateY(-2px); }
.btn-ghost-w { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.4); font-weight: 400; font-size: 0.84rem; letter-spacing: 0.06em; padding: 12px 28px; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-ghost-w:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.6); }

/* Floating contact card */
.hero-card {
    background: rgba(250,250,248,0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 1.6rem 1.8rem;
    min-width: 240px;
    flex-shrink: 0;
    animation: fuUp 0.9s ease 1s both;
}
.hero-card-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.hero-card-phone { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.88); font-size: 0.9rem; margin-bottom: 0.6rem; }
.hero-card-phone i { color: var(--gold); font-size: 0.78rem; }
.hero-card-phone a { color: inherit; transition: color .2s; }
.hero-card-phone a:hover { color: var(--gold); }
.hero-card-wa {
    display: flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--white);
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 9px 16px; border-radius: 2px; margin-top: 1rem;
    transition: background .2s;
}
.hero-card-wa:hover { background: var(--gold2); color: var(--white); }

/* Hero stats band */
.hero-stats {
    position: relative; z-index: 2;
    background: rgba(8,8,8,0.72);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid; grid-template-columns: repeat(4,1fr);
    padding: 20px 0;
}
.hstat { text-align: center; padding: 4px 0; border-right: 1px solid rgba(255,255,255,0.08); }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.hstat-lbl { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 3px; }

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

/* ─── HİZMETLER ─── */
#hizmetler { padding: 88px 0 60px; background: var(--white); }
.sec-eye { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.sec-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.15; margin-bottom: 0.8rem; }
.sec-sub { font-size: 0.92rem; color: var(--muted); line-height: 1.78; max-width: 520px; }

.svc-img-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 3rem; }
.svc-img-card {
    height: 400px; position: relative; overflow: hidden; border-radius: 3px;
    background: var(--sand);
    cursor: default;
}
.svc-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-img-card:hover img { transform: scale(1.05); }
.svc-img-over {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
    transition: background 0.35s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem;
}
.svc-img-card:hover .svc-img-over { background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.1) 100%); }
.svc-icon-circle {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.9rem;
}
.svc-icon-circle i { color: var(--gold); font-size: 1rem; }
.svc-img-over h3 { color: var(--white); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.6rem; }
.svc-img-desc {
    color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.7;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s;
}
.svc-img-card:hover .svc-img-desc { max-height: 100px; opacity: 1; margin-top: 0.4rem; }

/* Extra 3 services */
.svc-extra { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 16px; border: 1px solid var(--border); border-radius: 3px; }
.svc-extra-item {
    display: flex; align-items: center; gap: 16px;
    padding: 1.4rem 1.6rem;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}
.svc-extra-item:last-child { border-right: none; }
.svc-extra-item:hover { background: var(--sand); }
.svc-extra-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.svc-extra-item:hover .svc-extra-icon { background: var(--gold); }
.svc-extra-icon i { color: var(--gold); font-size: 0.9rem; transition: color .2s; }
.svc-extra-item:hover .svc-extra-icon i { color: var(--black); }
.svc-extra-item span { font-size: 0.88rem; font-weight: 500; color: var(--black); }

/* ─── HAKKIMIZDA ─── */
#hakkimizda { display: flex; min-height: 600px; }
.about-img { flex: 1; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
#hakkimizda:hover .about-img img { transform: scale(1.03); }
.about-txt {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: clamp(2.5rem, 6vw, 5rem); background: var(--sand);
}
.about-txt p { font-size: 0.92rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.8rem 0 2rem; }
.astat { background: var(--white); padding: 1.2rem 1.4rem; border-radius: 3px; }
.astat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.astat-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; display: block; }
.btn-dark { background: var(--black); color: var(--white); font-size: 0.83rem; font-weight: 400; letter-spacing: 0.08em; padding: 13px 26px; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px; transition: background .25s; }
.btn-dark:hover { background: #333; color: white; }

/* ─── MODELLER ─── */
#modeller { padding: 88px 0; background: var(--white); }
.door-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 2.2rem; flex-wrap: wrap; }
.dtab {
    font-size: 0.81rem; font-weight: 400; letter-spacing: 0.05em;
    padding: 11px 20px; background: none; border: none; cursor: pointer;
    color: var(--muted); border-bottom: 2px solid transparent;
    margin-bottom: -1px; transition: all 0.22s;
}
.dtab.active { color: var(--black); border-bottom-color: var(--gold); }
.dtab:hover { color: var(--black); }
.dpanel { display: none; }
.dpanel.active { display: block; }
.door-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dcard { position: relative; overflow: hidden; border-radius: 2px; background: var(--sand); }
.dcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dcard:hover img { transform: scale(1.06); }
.dcard-over {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 1rem;
}
.dcard:hover .dcard-over { opacity: 1; }
.dcard-over a {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    display: flex; align-items: center; gap: 6px;
}
.dcard-over a::after { content: '→'; }
.models-cta { text-align: center; margin-top: 2rem; }
.btn-outline-dark { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,0.3); font-size: 0.81rem; font-weight: 400; letter-spacing: 0.08em; padding: 11px 24px; border-radius: 2px; display: inline-block; transition: all .25s; }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ─── DEKORASYON ─── */
#dekorasyon { padding: 88px 0; background: var(--dark); }
#dekorasyon .sec-title { color: var(--white); }
#dekorasyon .sec-sub { color: rgba(255,255,255,0.55); }
.deco-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 3rem; }
.deco-card { position: relative; overflow: hidden; border-radius: 3px; height: 360px; }
.deco-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.deco-card:hover img { transform: scale(1.06); }
.deco-over {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.15) 55%, transparent 100%);
    transition: background 0.35s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.deco-card:hover .deco-over { background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.45) 55%, rgba(8,8,8,0.05) 100%); }
.deco-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.deco-over h3 { font-size: 1.5rem; font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.deco-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); margin-top: 0.8rem;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s, opacity 0.4s;
}
.deco-card:hover .deco-link { max-height: 40px; opacity: 1; color: var(--gold); }
.deco-link::after { content: '→'; }

/* ─── NEDEN NOVVA ─── */
#neden { padding: 88px 0; background: var(--sand); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 3rem; }
.why-item {
    background: var(--white); border-radius: 3px; padding: 1.8rem;
    display: flex; gap: 1.2rem; align-items: flex-start;
    border: 1px solid transparent;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-item:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--gold);
    line-height: 1; min-width: 44px;
}
.why-body .wi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.wi-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wi-icon i { color: var(--gold); font-size: 0.82rem; }
.why-body h4 { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; }
.why-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.68; margin-top: 0.5rem; }

/* ─── SÜREÇ ─── */
#surec { padding: 88px 0; background: var(--white); }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 3rem; }
.proc-grid::before {
    content: ''; position: absolute; top: 32px; left: 12%; right: 12%;
    height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2), var(--gold));
}
.pstep { text-align: center; padding: 0 1.2rem; }
.pdot {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--black); border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.4rem; position: relative; z-index: 1;
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold);
    transition: background 0.25s;
}
.pstep:hover .pdot { background: var(--gold); color: var(--black); }
.pstep h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.5rem; }
.pstep p { font-size: 0.81rem; color: var(--muted); line-height: 1.65; }

/* ─── GALERİ ─── */
#galeri { padding: 88px 0; background: var(--black); }
#galeri .sec-title { color: var(--white); }
#galeri .sec-sub { color: rgba(255,255,255,0.45); }
.masonry { columns: 3; column-gap: 8px; margin-top: 3rem; }
.masonry-item { display: block; break-inside: avoid; margin-bottom: 8px; position: relative; overflow: hidden; border-radius: 2px; }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-over {
    position: absolute; inset: 0; background: rgba(8,8,8,0.5);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.masonry-item:hover .masonry-over { opacity: 1; }
.masonry-over span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--white);
    border-bottom: 1px solid var(--gold); padding-bottom: 4px; letter-spacing: 0.05em;
}

/* ─── CTA ─── */
#cta { padding: 88px 0; background: linear-gradient(135deg, var(--dark) 0%, #0d0d0d 100%); text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; top: -30%; right: 5%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.07), transparent); }
#cta .sec-eye { text-align: center; }
#cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); margin: 0.5rem 0 0.8rem; }
#cta h2 em { font-style: italic; color: var(--gold); }
.cta-line { width: 40px; height: 1px; background: var(--gold); margin: 1rem auto 1.5rem; }
#cta p { font-size: 0.92rem; color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 2.2rem; line-height: 1.78; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.btn-cta-gold { background: var(--gold); color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; padding: 14px 28px; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px; transition: background .25s, transform .25s; }
.btn-cta-gold:hover { background: var(--gold2); color: var(--white); transform: translateY(-2px); }
.btn-cta-line { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.3); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; padding: 13px 28px; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-cta-line:hover { border-color: rgba(255,255,255,0.65); color: white; }

/* ─── FOOTER ─── */
#footer { background: #050505; padding: 68px 0 0; color: rgba(255,255,255,0.58); }
.f-logo img { max-height: 58px; filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 1rem; }
#footer p, #footer address { font-size: 0.84rem; line-height: 1.82; font-style: normal; }
#footer h6 { font-family: 'DM Sans', sans-serif; font-size: 0.67rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
#footer a { color: rgba(255,255,255,0.52); font-size: 0.84rem; display: block; padding: 3px 0; transition: color 0.2s, padding-left 0.2s; }
#footer a:hover { color: var(--gold); padding-left: 4px; }
.f-social { display: flex; align-items: center; gap: 10px; margin-top: 0.9rem; }
#footer .f-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.66);
    font-size: 0.82rem;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}
#footer .f-social a:hover { background: var(--gold); color: var(--black); padding-left: 0; }
.f-bot { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.1rem 0; margin-top: 3.5rem; }
.f-bot .d-flex { flex-wrap: nowrap !important; }
.f-bot p { font-size: 0.75rem; color: rgba(255,255,255,0.28); margin: 0; }
.f-bot .footer-credit { display: flex; align-items: center; gap: 0.35rem; flex-wrap: nowrap; white-space: nowrap; min-width: max-content; }
.f-bot a { display: inline; color: var(--gold); font-size: 0.75rem; padding: 0; }
.f-bot a:hover { padding-left: 0; }

.contact-social-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.65rem; }
.contact-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201,164,75,0.1);
    color: var(--gold);
    font-size: 0.86rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.contact-social-icons a:hover { background: var(--gold); color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .svc-img-cards { grid-template-columns: repeat(3,1fr); }
    .door-grid { grid-template-columns: repeat(3,1fr); }
    .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    #hakkimizda { flex-direction: column; }
    .about-img { min-height: 320px; }
    .svc-img-cards { grid-template-columns: 1fr; }
    .svc-extra { grid-template-columns: 1fr; }
    .svc-extra-item { border-right: none; border-bottom: 1px solid var(--border); }
    .svc-extra-item:last-child { border-bottom: none; }
    .deco-grid { grid-template-columns: 1fr; }
    .proc-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .proc-grid::before { display: none; }
    .masonry { columns: 2; }
}
@media (max-width: 768px) {
    #topbar { display: none !important; }
    #mainNav { top: 0; }
    body { padding-top: 64px; }
    #hero { min-height: 60vh; }
    .hero-body { flex-direction: column; align-items: flex-start; }
    .hero-card { display: none; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .door-grid { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; position: fixed; inset: 0; background: var(--black); flex-direction: column; align-items: center; justify-content: center; gap: 0; list-style: none; }
    .nav-links.open { display: flex; }
    .nav-links > li > a { color: rgba(255,255,255,0.85) !important; font-size: 1.1rem; padding: 14px 20px; }
    .nav-dd { position: static; background: transparent; box-shadow: none; border-top: none; opacity: 1; visibility: visible; transform: none; }
    .nav-dd li a { color: rgba(255,255,255,0.5) !important; text-align: center; }
    .nav-toggle { display: block; z-index: 1001; }
}
@media (max-width: 480px) {
    .door-grid { grid-template-columns: repeat(2,1fr); }
    .masonry { columns: 1; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
}
