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

:root {
  --navy:       #0B2545;
  --navy-mid:   #134074;
  --navy-light: #1A5276;
  --gold:       #C9A84C;
  --gold-dark:  #A07830;
  --gold-light: #E8C96A;
  --gold-pale:  #FBF5E6;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F1F3F5;
  --gray-200:   #E9ECEF;
  --gray-400:   #ADB5BD;
  --gray-600:   #6C757D;
  --text:       #1A2332;
  --text-soft:  #4A5568;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Noto Sans', 'Segoe UI', sans-serif;
  --radius:     4px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--white); color: var(--text); line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--gray-200); box-shadow: 0 1px 12px rgba(0,0,0,0.06); padding: 0 2rem; transition: box-shadow .3s; }
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { width: 28px; height: 28px; stroke: var(--gold); color: var(--gold); filter: drop-shadow(0 0 6px rgba(201,168,76,.3)); flex-shrink: 0; }
.nav-logo-text { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); letter-spacing: .3px; line-height: 1; }
.nav-logo-dot { color: var(--gold); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-soft); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color .2s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: .5rem 1.4rem !important; border-radius: var(--radius) !important; font-weight: 600 !important; font-size: .85rem !important; transition: background .2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999; background: var(--white); border-bottom: 2px solid var(--gold); padding: 1rem 1.5rem 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--text); text-decoration: none; padding: .7rem 0; font-size: .95rem; font-weight: 500; border-bottom: 1px solid var(--gray-200); transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding: 0 2rem; }
.hero-pattern { position: absolute; inset: 0; pointer-events: none; opacity: .04; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 40px); }
.hero-shape { position: absolute; right: -80px; top: 0; bottom: 0; width: 55%; background: var(--navy-mid); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); pointer-events: none; }
.hero-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 50px 0 50px; position: relative; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3); border-radius: 20px; padding: .3rem .9rem; margin-bottom: 1.25rem; }
.hero-tag span { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-name { font-family: var(--ff-display); font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: .5rem; }
.hero-subtitle { font-family: var(--ff-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: .5px; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 460px; line-height: 1.85; margin-bottom: 2.25rem; font-weight: 300; }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.5rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.stat-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: .72rem; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }
.hero-btns { display: flex; gap: .875rem; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--navy); padding: .85rem 2rem; font-weight: 700; font-size: .875rem; text-decoration: none; border-radius: var(--radius); transition: all .2s; display: inline-block; border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: rgba(255,255,255,.85); padding: .85rem 2rem; font-weight: 500; font-size: .875rem; text-decoration: none; border-radius: var(--radius); border: 2px solid rgba(255,255,255,.2); transition: all .2s; display: inline-block; }
.btn-outline:hover { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.06); }
.hero-photo-wrap { display: flex; justify-content: center; align-items: flex-end; }
.hero-frame { position: relative; width: 360px; height: 490px; }
.hero-frame::before { content: ''; position: absolute; top: -14px; left: -14px; width: 100%; height: 100%; border: 2px solid rgba(201,168,76,.4); border-radius: var(--radius); z-index: 0; }
.hero-frame::after { content: ''; position: absolute; bottom: -14px; right: -14px; width: 60%; height: 60%; border: 2px solid rgba(201,168,76,.2); border-radius: var(--radius); z-index: 0; }
.hero-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: var(--radius); }
.hero-badge { position: absolute; bottom: 20px; right: -20px; z-index: 3; background: var(--white); color: var(--navy); padding: .6rem 1rem; font-size: .78rem; font-weight: 600; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,.2); border-left: 3px solid var(--gold); white-space: nowrap; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; }
.eyebrow-line { width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.eyebrow span { font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.section-title { font-family: var(--ff-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 1rem; }
.section-title.white { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--text-soft); line-height: 1.8; max-width: 540px; }
.section-desc.light { color: rgba(255,255,255,.65); }
.gold-divider { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, transparent 100%); }

/* ── PAGE HEADER (daxili səhifələr üçün) ── */
.page-header { background: var(--navy); padding: 5rem 2rem 2.5rem; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 40px); pointer-events:none; }
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-header h1 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.65); font-size: 1rem; }
.page-header-img { position: absolute; top: 5rem; right: 2rem; bottom: 20px; z-index: 3; display: flex; align-items: center; justify-content: flex-end; }
.page-header-img img { display: block; width: auto; max-height: 100%; max-width: 300px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
@media(max-width:768px) { .page-header-img { display: none; } }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .8rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── ABOUT ── */
#haqqimda { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: flex-start; }
.about-photos { position: relative; }
.about-main { width: 100%; height: 500px; object-fit: cover; object-position: center top; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(11,37,69,.12); }
.about-small { position: absolute; bottom: -28px; right: -28px; width: 190px; height: 210px; object-fit: cover; object-position: center top; border-radius: var(--radius); border: 5px solid var(--white); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.about-gold-bar { position: absolute; top: 24px; left: -10px; width: 5px; height: 90px; background: var(--gold); border-radius: 3px; }
.about-quote { font-size: 1.05rem; font-style: italic; color: var(--text-soft); line-height: 1.85; border-left: 3px solid var(--gold); padding-left: 1.25rem; margin-bottom: 1.5rem; }
.about-body { font-size: .95rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 1.5rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.tag { background: var(--gold-pale); color: var(--navy-mid); padding: .3rem .85rem; font-size: .78rem; font-weight: 600; border-radius: 20px; border: 1px solid rgba(201,168,76,.3); }
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.cred-item { display: flex; align-items: flex-start; gap: .75rem; padding: .875rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.cred-strong { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; }
.cred-text { font-size: .78rem; color: var(--text-soft); line-height: 1.5; }

/* ── SERVICES ── */
#xidmetler { background: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); overflow: hidden; margin-top: 3rem; }
.service-card { background: rgba(255,255,255,.03); padding: 2.5rem 2rem; position: relative; transition: background .3s; }
.service-card:hover { background: rgba(201,168,76,.07); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--gold); transition: width .4s ease; }
.service-card:hover::after { width: 100%; }
.service-num { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: rgba(255,255,255,.04); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; transition: color .3s; pointer-events: none; }
.service-card:hover .service-num { color: rgba(201,168,76,.12); }
.service-icon { width: 50px; height: 50px; margin-bottom: 1.25rem; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; line-height: 1.3; }
.service-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; }

/* ── EXPERIENCE ── */
#tecrube { background: var(--white); }
.exp-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; }
.exp-aside { position: sticky; top: 100px; align-self: start; }
.exp-bignum { font-family: var(--ff-display); font-size: 7rem; font-weight: 700; color: var(--navy); line-height: .9; opacity: .06; pointer-events: none; margin-top: 2rem; }
.timeline { padding-left: 1.5rem; position: relative; }
.timeline::before { content: ''; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gray-200)); }
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -1.6rem; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 3px solid var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.tl-year { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .25rem; }
.tl-role { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.tl-org { font-size: .875rem; color: var(--text-soft); margin-bottom: .5rem; }
.tl-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.75; }
.tl-tag { display: inline-block; margin-top: .5rem; background: var(--gold-pale); color: var(--gold-dark); font-size: .72rem; font-weight: 600; letter-spacing: .5px; padding: .2rem .65rem; border-radius: 20px; }

/* ── BLOG ── */
#blog { background: var(--gray-50); }
.blog-section { background: var(--gray-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow .3s, transform .25s; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(11,37,69,.1); transform: translateY(-4px); }
.blog-thumb { width: 100%; height: 195px; background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-inner { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; }
.blog-thumb-inner svg { width: 32px; height: 32px; stroke: rgba(201,168,76,.5); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.blog-thumb-cat { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,.7); font-weight: 600; }
.blog-body { padding: 1.5rem; }
.blog-badge { display: inline-block; background: var(--gold-pale); color: var(--gold-dark); font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; padding: .2rem .6rem; border-radius: 20px; margin-bottom: .75rem; }
.blog-title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.45; margin-bottom: .6rem; }
.blog-title a { color: inherit; text-decoration: none; transition: color .2s; }
.blog-title a:hover { color: var(--gold-dark); }
.blog-excerpt { font-size: .84rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1rem; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; padding-top: .75rem; border-top: 1px solid var(--gray-200); font-size: .75rem; color: var(--gray-400); }
.blog-read { color: var(--navy); font-weight: 600; text-decoration: none; font-size: .8rem; transition: color .2s; }
.blog-read:hover { color: var(--gold); }

/* Blog single page */
.blog-single { background: var(--white); }
.blog-single-content { max-width: 780px; margin: 0 auto; }
.blog-single-content h2 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--navy); margin: 2rem 0 .75rem; }
.blog-single-content p { font-size: .95rem; color: var(--text-soft); line-height: 1.9; margin-bottom: 1.25rem; }
.blog-single-content img { width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }

/* ── CONTACT ── */
#elaqe { background: var(--navy); }
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.contact-list { list-style: none; margin-top: 1.5rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.c-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.c-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.c-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.35); }
.c-val { font-size: .95rem; color: var(--white); margin-top: 2px; }
.c-val a { color: var(--gold-light); text-decoration: none; }
.c-val a:hover { text-decoration: underline; }
.form-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2.5rem; }
.form-box h3 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--white); margin-bottom: 1.75rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: .75rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .8px; margin-bottom: .4rem; }
.fg input, .fg select, .fg textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); color: var(--white); padding: .75rem 1rem; font-family: var(--ff-body); font-size: .9rem; outline: none; transition: border-color .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: rgba(201,168,76,.04); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.2); }
.fg select option { background: var(--navy); color: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: .9rem; font-weight: 700; font-size: .9rem; cursor: pointer; font-family: var(--ff-body); border-radius: var(--radius); transition: background .2s, transform .15s; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Alert messages */
.alert-success { background: rgba(45,106,79,.15); border: 1px solid rgba(45,106,79,.4); color: #2D6A4F; padding: .9rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .9rem; }
.alert-error { background: rgba(185,28,28,.1); border: 1px solid rgba(185,28,28,.3); color: #fca5a5; padding: .9rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .9rem; }

/* ── FOOTER ── */
footer { background: #070F1A; color: rgba(255,255,255,.35); padding: 2rem; text-align: left; font-size: .82rem; border-top: 1px solid rgba(201,168,76,.15); }
footer strong { color: var(--gold); font-family: var(--ff-display); }

/* ── WHATSAPP ── */
.wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; animation: waPulse 3s infinite; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); animation: none; }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,.65); } }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.pagination a, .pagination span { padding: .5rem .9rem; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: .85rem; color: var(--text-soft); text-decoration: none; transition: all .2s; }
.pagination a:hover { border-color: var(--gold); color: var(--navy); }
.pagination .active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── RESPONSIVE ── */
@media(max-width:992px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 110px; gap: 3rem; }
  .hero-shape { display: none; }
  .hero-frame { width: 300px; height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-main { height: 360px; }
  .about-small { width: 140px; height: 160px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .exp-aside { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media(max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-creds { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ── FOOTER (zəngin) ── */
footer { background: #070F1A; border-top: 1px solid rgba(201,168,76,.15); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 0; }
.footer-bottom-wrap { padding: 0 2rem; background: #070F1A; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .75rem; padding: 1.5rem 0; font-size: .78rem; color: rgba(255,255,255,.25); border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom-inner strong { color: rgba(255,255,255,.5); }
.footer-bottom-inner p:last-child { text-align: right; }

.footer-grid { display: grid; grid-template-columns: 1.8fr 0.8fr 0.8fr 1.4fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }

/* Sütun 1 */
.footer-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--white); text-decoration: none; display: inline-block; margin-bottom: .6rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-about { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 1.25rem; }
.footer-badges { display: flex; flex-direction: column; gap: .5rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .5px; }
.footer-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .6; flex-shrink: 0; }

/* Sütun 2 & 3 — heading xətti mərkəzdə */
.footer-heading { font-family: var(--ff-display); font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; position: relative; padding-bottom: .75rem; text-align: left; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-links { list-style: none; text-align: left; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .875rem; transition: color .2s; display: inline-block; }
.footer-links a:hover { color: var(--gold); }

/* Sütun 3 */
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.footer-contact span, .footer-contact a { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }

/* Alt hissə */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 0 2rem; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .75rem; padding: 1.25rem 0; font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom-inner strong { color: rgba(255,255,255,.5); }
.footer-bottom-inner p:last-child { text-align: right; }
.footer-bottom-inner .powered-link { justify-self: center; }

/* Powered by */
.powered-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 6px; padding: .45rem 1.1rem;
  text-decoration: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; transition: all .25s; white-space: nowrap;
  position: relative;
}
.powered-link:hover { background: rgba(201,168,76,.18); border-color: rgba(201,168,76,.6); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.12); }
.powered-link > svg { width: 13px; height: 13px; stroke: var(--gold); fill: var(--gold); flex-shrink: 0; }
.powered-label { color: rgba(255,255,255,.45); font-weight: 400; }
.powered-domain { color: var(--gold); font-weight: 800; letter-spacing: .5px; }

@media(max-width:992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .footer-col--brand { grid-column: 1 / -1; } }
@media(max-width:600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom-inner { grid-template-columns: 1fr; gap: .5rem; text-align: center; } .footer-bottom-inner p:last-child { text-align: center; } .footer-bottom-inner .powered-link { justify-self: center; } }

/* ── TOPBAR ── */
#topbar { background: #070F1A; border-bottom: 1px solid rgba(201,168,76,.12); padding: 0 2rem; position: sticky; top: 0; z-index: 1001; }
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 36px; position: relative; }
.topbar-left { display: flex; align-items: center; gap: 1rem; }
.topbar-left a { display: flex; align-items: center; color: rgba(255,255,255,.45); transition: color .2s; }
.topbar-left a svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.5); text-decoration: none; font-size: .75rem; transition: color .2s; }
.topbar-right a svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.topbar-right a:hover { color: var(--gold); }

/* ── NAVBAR (yenilənmiş — logo sol, menyu mərkəz, konsultasiya sağ) ── */
#navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--gray-200); box-shadow: 0 1px 12px rgba(0,0,0,0.06); padding: 0 2rem; transition: box-shadow .3s, top .3s; }
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.1); top: 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; height: 70px; gap: 1rem; }
.nav-links { display: flex; justify-content: center; gap: 1.75rem; list-style: none; align-items: center; }

/* Konsultasiya düyməsi */
.nav-consult { display: inline-flex; align-items: center; gap: 7px; background: var(--gold); color: var(--navy); padding: .5rem 1.1rem; border-radius: var(--radius); font-weight: 700; font-size: .8rem; text-decoration: none; white-space: nowrap; transition: all .2s; letter-spacing: .2px; }
.nav-consult svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-consult:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hero padding — topbar + navbar hündürlüyü */
#hero { padding-top: 106px; min-height: calc(100vh - 36px); }

@media(max-width:992px) {
  #topbar { display: none; }
  #navbar { top: 0; }
  .nav-inner { grid-template-columns: 1fr auto auto; }
  .nav-links { display: none; }
  .nav-consult { display: none; }
  #hero { padding-top: 70px; }
}

/* ══════════════════════════════════════
   PREMIUM HOVER EFFEKTLƏRİ
══════════════════════════════════════ */

/* ── LOGO hover ── */
.nav-logo { transition: all .3s ease; }
.nav-logo svg {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .3s ease;
}
.nav-logo-text {
  transition: letter-spacing .3s ease, color .3s ease;
}
.nav-logo:hover svg {
  transform: rotate(-12deg) scale(1.18);
  filter: drop-shadow(0 0 10px rgba(201,168,76,.7));
}
.nav-logo:hover .nav-logo-text {
  letter-spacing: 1.5px;
  color: var(--navy-mid);
}
.nav-logo:hover .nav-logo-dot {
  text-shadow: 0 0 8px rgba(201,168,76,.9);
}

/* ── NAV LİNKLƏR hover ── */
.nav-links a {
  transition: color .25s ease, transform .25s ease;
  display: inline-block;
}
.nav-links a:hover {
  transform: translateY(-2px);
}
.nav-links a::after {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  transform-origin: left;
}

/* ── KONSULTASIYA DÜYMƏSİ hover ── */
.nav-consult {
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.nav-consult::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .4s ease;
}
.nav-consult:hover::before { left: 100%; }
.nav-consult:hover {
  box-shadow: 0 6px 20px rgba(201,168,76,.45);
  transform: translateY(-2px);
}

/* ── SERVİS KARTLARI hover ── */
.service-card {
  transition: background .3s ease, transform .3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
}
.service-icon {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .3s ease, box-shadow .3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(201,168,76,.2);
  box-shadow: 0 0 16px rgba(201,168,76,.3);
}

/* ── BLOG KART hover ── */
.blog-card {
  transition: box-shadow .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(11,37,69,.15);
}
.blog-read {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s ease, gap .3s ease, letter-spacing .2s ease;
}
.blog-read::after { content: '›'; transition: transform .25s ease; display: inline-block; }
.blog-read:hover { gap: 8px; letter-spacing: .3px; }
.blog-read:hover::after { transform: translateX(3px); }

/* ── BTN-GOLD hover ── */
.btn-gold {
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .45s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}

/* ── FOOTER LİNKLƏR hover ── */
.footer-links a {
  position: relative;
  transition: color .25s ease, transform .25s ease, letter-spacing .25s ease;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s cubic-bezier(.34,1.56,.64,1);
}
.footer-links a:hover {
  transform: translateX(5px);
  letter-spacing: .3px;
}
.footer-links a:hover::after { width: 100%; }

/* ── FOOTER LOGO hover ── */
.footer-logo {
  display: inline-flex; align-items: center;
  transition: all .3s ease;
}
.footer-logo svg {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .3s ease;
  display: inline-block; vertical-align: middle;
}
.footer-logo:hover svg {
  transform: rotate(-12deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(201,168,76,.7));
}
.footer-logo:hover { letter-spacing: 1px; }

/* ── ƏLAQƏ LİNKLƏRİ hover ── */
.footer-contact a {
  transition: color .25s ease, letter-spacing .25s ease;
}
.footer-contact a:hover { letter-spacing: .3px; }

/* ── TOPBAR LİNKLƏRİ hover ── */
.topbar-left a {
  transition: color .2s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.topbar-left a:hover { transform: translateY(-3px) scale(1.2); }
.topbar-right a {
  transition: color .25s ease, letter-spacing .2s ease;
}
.topbar-right a:hover { letter-spacing: .3px; }

/* ── TİMELİNE hover ── */
.tl-item {
  transition: transform .25s ease;
}
.tl-item:hover { transform: translateX(6px); }
.tl-dot {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.tl-item:hover .tl-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 5px rgba(201,168,76,.2);
}

/* ── CRED ITEM hover ── */
.cred-item {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cred-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,37,69,.08);
  border-color: rgba(201,168,76,.4);
}

/* ── TAG hover ── */
.tag {
  transition: background .2s ease, transform .25s ease, box-shadow .2s ease;
  cursor: default;
}
.tag:hover {
  background: rgba(201,168,76,.2);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(201,168,76,.2);
}

/* ── POWERED BY — ildırımla dolub-boşalan hover ── */


/* ── DİL SWİTCHER ── */
.lang-switcher { display: flex; align-items: center; gap: .4rem; margin-left: .75rem; }
.lang-switcher span { color: rgba(255,255,255,.2); font-size: .7rem; }
.lang-switcher a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .72rem; font-weight: 600; letter-spacing: .8px; transition: color .2s, transform .2s; display: inline-block; }
.lang-switcher a:hover { color: var(--gold); transform: translateY(-1px); }
.lang-switcher a.lang-active { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ── LOGO PREMIUM ── */
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-brand { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); letter-spacing: .3px; transition: letter-spacing .3s ease; }
.nav-logo-dot { color: var(--gold); }
.nav-logo-slogan { font-family: var(--ff-body); font-size: .65rem; font-weight: 500; color: var(--text-soft); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; transition: color .3s ease; }
.nav-logo:hover .nav-logo-brand { letter-spacing: 1px; }
.nav-logo:hover .nav-logo-slogan { color: var(--gold-dark); }

/* ── Ziyarətçi sayacı ── */
.visitor-count { margin-left: auto;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 4px; padding: .2rem .65rem;
}
.visitor-count svg { width: 12px; height: 12px; stroke: var(--gold); flex-shrink: 0; }
.vc-label { font-size: .65rem; color: rgba(255,255,255,.35); letter-spacing: .8px; text-transform: uppercase; }
.vc-num { font-size: .8rem; font-weight: 700; color: var(--gold); }

/* ── Topbar tarix/saat ── */
.topbar-datetime { display: flex; align-items: center; gap: .4rem; margin-left: .5rem; padding-left: .75rem; border-left: 1px solid rgba(255,255,255,.1); font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .3px; }
.topbar-dt-sep { color: rgba(255,255,255,.2); }

/* ── Topbar slogan ── */
.topbar-slogan {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .8px;
  white-space: nowrap;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  pointer-events: none;
}
.topbar-slogan svg {
  animation: sloganBlink 2s ease-in-out infinite;
}
@keyframes sloganBlink {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 3px rgba(201,168,76,.8)); }
  50%       { opacity: .3; filter: drop-shadow(0 0 0px rgba(201,168,76,0)); }
}
/* ── Faydalı keçidlər bölməsi ── */
.useful-links-bar { background: #060D16; border-top: 1px solid rgba(201,168,76,.1); padding: .75rem 2rem; }
.useful-links-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.useful-links-label { font-size: .68rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.useful-links-list { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.useful-links-list a { font-size: .7rem; color: rgba(255,255,255,.35); text-decoration: none; padding: .2rem .6rem; border-radius: 3px; transition: all .2s; white-space: nowrap; }
.useful-links-list a:hover { color: var(--gold); background: rgba(201,168,76,.08); }
.useful-links-list a:not(:last-child)::after { content: '·'; margin-left: .25rem; color: rgba(255,255,255,.15); }
