/* ══════════════════════════════════════════
   İZOLAST — Premium Industrial Website CSS
   ══════════════════════════════════════════ */

:root {
  --gold: #B8952A;
  --gold-light: #D4AF50;
  --dark: #0D1117;
  --dark2: #161B22;
  --dark3: #1F2937;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --bg: #F8F7F5;
  --bg2: #EEECEA;
  --border: #E5E7EB;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
  --transition: .3s ease;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.dark-section { background: var(--dark); color: var(--white); }
.gold { color: var(--gold); }
.center { text-align: center; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-3 { margin-bottom: 2rem; }
.empty-msg { color: var(--text-muted); padding: 2rem 0; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 6px; font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .5px; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,149,42,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--bg2); }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1EBE57; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.75rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header.center .section-sub { text-align: center; }
.dark-section .section-sub { color: rgba(255,255,255,.6); }

/* ── FLASH MESSAGES ─────────────────────────────────────── */
.flash-messages { position: fixed; top: 80px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; }
.flash { padding: 1rem 1.5rem; border-radius: var(--radius); font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-width: 280px; box-shadow: var(--shadow); }
.flash-success { background: #D1FAE5; color: #065F46; }
.flash-error { background: #FEE2E2; color: #991B1B; }
.flash button { background: none; border: none; cursor: pointer; font-size: 1.25rem; opacity: .6; }

/* ── HEADER ─────────────────────────────────────────────── */
.header-top { display: none; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.header-contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.header-contacts a, .header-contacts span { display: flex; align-items: center; gap: .35rem; transition: var(--transition); }
.header-contacts a:hover { color: var(--gold); }
.header-contacts i { color: var(--gold); font-size: .85rem; }
.header-socials { display: flex; gap: .75rem; }
.header-socials a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .75rem; transition: var(--transition); }
.header-socials a:hover { background: var(--gold); color: var(--white); }

.navbar { background: transparent; box-shadow: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background .35s ease, box-shadow .35s ease; }
.navbar.scrolled { background: var(--dark); box-shadow: 0 4px 32px rgba(0,0,0,.35); }
body { padding-top: 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-brand { display: flex; align-items: center; }
.logo-img { height: 96px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link { padding: .5rem .9rem; border-radius: 6px; font-weight: 500; font-size: .95rem; transition: var(--transition); color: var(--white); }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(184,149,42,.08); }
.nav-cta { margin-left: .75rem; padding: .55rem 1.25rem; background: var(--gold); color: var(--white); border-radius: 6px; font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: .4rem; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--dark); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; animation: kenburns 8s ease-in-out infinite alternate; }
.hero-slide.active { opacity: 1; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,17,23,.88) 0%, rgba(13,17,23,.65) 100%); }
.hero-particles { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(184,149,42,.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(184,149,42,.08) 0%, transparent 40%); }
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 80px 24px; }
.hero-badge { display: inline-flex; background: rgba(184,149,42,.15); border: 1px solid rgba(184,149,42,.3); color: var(--gold); padding: .4rem 1.2rem; border-radius: 100px; font-size: .8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { text-align: center; padding: 0 2rem; }
.stat:first-child { padding-left: 0; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: .25rem; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: var(--gold); animation: bounce 2s infinite; cursor: pointer; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── FEATURES STRIP ─────────────────────────────────────── */
.features-strip { background: var(--gold); padding: 0; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.feature-item { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,.2); }
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 2rem; color: var(--white); opacity: .9; flex-shrink: 0; }
.feature-item strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.feature-item p { margin: 0; color: rgba(255,255,255,.75); font-size: .8rem; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sub { position: absolute; bottom: -2rem; right: -2rem; width: 55%; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-lg); border: 4px solid var(--white); }
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-exp { position: absolute; top: -1.5rem; left: -1.5rem; background: var(--gold); color: var(--white); width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 2; }
.about-badge-exp span { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-exp small { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.5rem 0; }
.value { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.value i { color: var(--gold); }

/* ── SERVICES ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(184,149,42,.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: rgba(184,149,42,.15); border: 1px solid rgba(184,149,42,.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon i { font-size: 1.4rem; color: var(--gold); }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.service-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-link { color: var(--gold); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; transition: var(--transition); }
.service-link:hover { gap: .7rem; }

/* ── GALLERY ────────────────────────────────────────────── */
.gallery-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 12px; }
.gallery-thumb { display: block; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; position: relative; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(13,17,23,.6); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; opacity: 0; transition: var(--transition); color: var(--white); }
.gallery-overlay i { font-size: 1.5rem; color: var(--gold); }
.gallery-overlay span { font-size: .85rem; text-align: center; padding: 0 1rem; }
.gallery-thumb:hover .gallery-overlay { opacity: 1; }
.gallery-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: .5rem 1.25rem; border-radius: 100px; border: 1.5px solid var(--border); background: transparent; cursor: pointer; font-size: .85rem; font-weight: 500; transition: var(--transition); font-family: var(--font-body); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: rgba(255,255,255,.05); color: var(--white); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; text-align: left; transition: var(--transition); font-family: var(--font-body); }
.faq-q:hover { background: rgba(255,255,255,.1); }
.faq-q i { flex-shrink: 0; transition: var(--transition); color: var(--gold); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a > div { padding: 1.25rem 1.5rem; color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-grid-full { grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: .78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-card h2, .blog-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: .5rem 0 .75rem; line-height: 1.4; }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--text-muted); font-size: .88rem; flex: 1; }
.blog-read-more { margin-top: 1rem; color: var(--gold); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; transition: var(--transition); }
.blog-read-more:hover { gap: .7rem; }
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; }
.page-btn { padding: .5rem .85rem; border-radius: 6px; border: 1.5px solid var(--border); font-size: .9rem; transition: var(--transition); }
.page-btn.active, .page-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── BLOG POST ──────────────────────────────────────────── */
.post-hero { position: relative; padding: 80px 0 48px; background: var(--dark); color: var(--white); }
.post-hero.has-image { min-height: 400px; display: flex; align-items: flex-end; }
.post-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4)); }
.post-hero-content { position: relative; z-index: 1; }
.post-hero time { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.post-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 800; margin-top: .75rem; max-width: 800px; }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3rem 0; }
.post-content { font-size: 1.05rem; line-height: 1.85; }
.post-content h1,.post-content h2,.post-content h3 { font-family: var(--font-display); font-weight: 700; margin: 2rem 0 1rem; color: var(--dark); }
.post-content h2 { font-size: 1.6rem; }
.post-content h3 { font-size: 1.3rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: .5rem; }
.sidebar-card { background: var(--bg); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.related-post { display: block; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; font-weight: 500; transition: var(--transition); }
.related-post:last-child { border-bottom: none; }
.related-post:hover { color: var(--gold); }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 44px; height: 44px; background: rgba(184,149,42,.1); border: 1px solid rgba(184,149,42,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: .2rem; }
.contact-item a { color: var(--text-muted); font-size: .9rem; }
.contact-item a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--bg); border-radius: var(--radius); padding: 2.5rem; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; color: var(--text); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,42,.1); }
.form-group textarea { resize: vertical; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero { background: var(--dark); color: var(--white); padding: 80px 0 60px; border-bottom: 3px solid var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; }

/* ── SERVICES DETAIL ────────────────────────────────────── */
.services-detail-grid { display: flex; flex-direction: column; gap: 2rem; }
.service-detail-card { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; background: var(--bg); border-radius: var(--radius); padding: 2.5rem; border-left: 4px solid var(--gold); transition: var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow); }
.sdc-icon { width: 72px; height: 72px; background: var(--gold); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sdc-icon i { font-size: 1.8rem; color: var(--white); }
.sdc-content h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: .6rem; }
.sdc-content p { color: var(--text-muted); margin-bottom: 1rem; }
.sdc-image { width: 160px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sdc-image img { width: 100%; height: 100%; object-fit: cover; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner { position: relative; background: var(--dark); padding: 80px 0; text-align: center; overflow: hidden; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,149,42,.12), transparent); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-logo { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.8; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { font-size: .88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-list > div { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.65); font-size: .85rem; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .8rem; }
.footer-bottom a { color: var(--gold); }

/* ── FLOATING BUTTONS ───────────────────────────────────── */
.float-buttons { position: fixed; bottom: 28px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.1rem; border-radius: 50px; font-weight: 700; font-size: .9rem; box-shadow: 0 4px 20px rgba(0,0,0,.2); transition: var(--transition); white-space: nowrap; }
.whatsapp-btn { background: #25D366; color: var(--white); }
.whatsapp-btn:hover { background: #1EBE57; transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.call-btn { background: var(--dark); color: var(--white); }
.call-btn:hover { background: var(--gold); transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(184,149,42,.4); }
.float-btn i { font-size: 1.1rem; }
.float-label { font-size: .82rem; font-weight: 600; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header-contacts { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 1rem; box-shadow: var(--shadow); gap: .25rem; }
  .nav-menu.open { display: flex; }
  .nav-cta { margin-left: 0; }
  .hero { min-height: 100svh; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .service-detail-card { grid-template-columns: 1fr; }
  .sdc-icon { width: 56px; height: 56px; }
  .post-layout { grid-template-columns: 1fr; }
  .float-label { display: none; }
  .float-btn { padding: 1rem; border-radius: 50%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1rem; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
}
