/* SD ONUPRON GROUP - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy2: #142244;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #fdf8ee;
  --white: #ffffff;
  --gray: #f7f7f4;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.14);
  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
p { line-height: 1.75; }

/* Container */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ======================== TOP BAR ======================== */
.top-bar { background: var(--navy); padding: 9px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact a { color: rgba(255,255,255,0.7); font-size: 12.5px; text-decoration: none; transition: var(--transition); }
.top-bar-contact a:hover { color: var(--gold); }
.top-bar-contact a span { color: var(--gold); margin-right: 5px; }
.btn-quote { background: var(--gold); color: var(--navy); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; text-decoration: none; transition: var(--transition); letter-spacing: 0.5px; }
.btn-quote:hover { background: var(--gold-light); }

/* ======================== NAVBAR ======================== */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.navbar-brand { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.brand-logo-box { width: 44px; height: 44px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.brand-logo-box span { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); font-weight: 700; line-height: 1.1; }
.brand-name small { display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; color: var(--muted); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.navbar-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
.navbar-nav a:hover, .navbar-nav a.active { background: var(--gold-pale); color: var(--gold); }
.btn-work { background: var(--navy); color: var(--white) !important; padding: 9px 20px !important; border-radius: 50px !important; font-weight: 600 !important; }
.btn-work:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: var(--transition); }

/* ======================== HERO ======================== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1a2f5a 50%, #0d2141 100%); min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(38px, 5vw, 62px); color: var(--white); line-height: 1.15; margin-bottom: 22px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; margin-bottom: 36px; max-width: 580px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; text-decoration: none; transition: var(--transition); border: 2px solid transparent; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-navy:hover { border-color: var(--navy); background: var(--gray); }
.hero-shapes { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 600px; opacity: 0.06; pointer-events: none; }

/* ======================== SECTIONS ======================== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--navy); }
.section-gray { background: var(--gray); }
.section-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .overline { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); color: var(--navy); margin-bottom: 16px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0 auto; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 4px; margin: 16px auto 0; }

/* ======================== ABOUT STRIP ======================== */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-strip-img { position: relative; }
.about-strip-img .img-placeholder { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy); padding: 16px 20px; border-radius: var(--radius); font-weight: 700; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .num { font-size: 28px; font-family: 'Playfair Display', serif; display: block; }
.about-text .overline { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.about-text h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--navy); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 24px; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 15px; margin-bottom: 10px; }
.about-list li::before { content: '✦'; color: var(--gold); font-size: 10px; margin-top: 5px; flex-shrink: 0; }

/* ======================== WHAT WE DO ======================== */
.what-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.what-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); cursor: default; }
.what-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.what-card .icon { font-size: 40px; margin-bottom: 16px; display: block; }
.what-card h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.what-card p { color: var(--muted); font-size: 14px; }

/* ======================== COUNTERS ======================== */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter-card { text-align: center; padding: 32px 20px; }
.counter-num { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.counter-label { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ======================== SERVICES ======================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid transparent; }
.service-card:hover { border-top-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .svc-icon { font-size: 48px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.service-items { list-style: none; }
.service-items li { font-size: 13.5px; color: var(--text); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.service-items li:last-child { border: none; }
.service-items li::before { content: '→'; color: var(--gold); font-weight: 700; }

/* ======================== UNITS ======================== */
.units-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.unit-card { text-align: center; padding: 36px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); transition: var(--transition); }
.unit-card:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-4px); }
.unit-card .icon { font-size: 52px; margin-bottom: 16px; display: block; }
.unit-card h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.unit-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.65; }

/* ======================== TESTIMONIALS ======================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); position: relative; }
.testi-card::before { content: '"'; font-size: 80px; color: var(--gold); opacity: 0.15; position: absolute; top: 10px; left: 20px; font-family: Georgia, serif; line-height: 1; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testi-card p { color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.testi-author strong { display: block; font-size: 14px; color: var(--navy); }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ======================== CTA ======================== */
.cta-box { text-align: center; padding: 70px 40px; }
.cta-box h2 { font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 16px; }
.cta-box p { color: var(--muted); font-size: 17px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ======================== PORTFOLIO ======================== */
.portfolio-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 18px; border-radius: 50px; border: 2px solid var(--border); background: transparent; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: var(--transition); font-family: 'DM Sans', sans-serif; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.portfolio-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.portfolio-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.portfolio-info { padding: 20px; background: var(--white); }
.portfolio-info .cat { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.portfolio-info h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.portfolio-info p { font-size: 13px; color: var(--muted); }

/* ======================== CLIENTS ======================== */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.client-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: var(--transition); }
.client-card:hover { border-color: var(--gold); }
.client-logo { width: 64px; height: 64px; background: var(--gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 12px; }
.client-card .cat-badge { display: inline-block; background: var(--gold-pale); color: var(--gold); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }
.client-card h4 { font-size: 14px; color: var(--navy); font-family: 'DM Sans', sans-serif; font-weight: 600; }

/* ======================== BLOG ======================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; font-size: 50px; }
.blog-body { padding: 24px; }
.blog-body .cat { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-body h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); }
.read-more { color: var(--gold); font-weight: 600; text-decoration: none; font-size: 13px; }
.read-more:hover { text-decoration: underline; }

/* ======================== GALLERY ======================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { aspect-ratio: 1; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; cursor: pointer; transition: var(--transition); }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:nth-child(3n+1) { grid-column: span 2; aspect-ratio: 2/1; }

/* ======================== CAREERS ======================== */
.careers-grid { display: grid; gap: 20px; }
.career-card { background: var(--white); border-radius: var(--radius); padding: 28px 32px; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.career-info h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.career-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.career-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--gray); color: var(--muted); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.career-tag.type { background: var(--gold-pale); color: var(--gold); }

/* ======================== CONTACT ======================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3.5vw, 38px); color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-icon { width: 46px; height: 46px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.info-item h4 { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.info-item p { color: var(--navy); font-weight: 600; font-size: 14px; margin: 0; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: var(--transition); background: var(--gray); }
.form-control:focus { border-color: var(--gold); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ======================== PAGE HERO ======================== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ======================== TEAM ======================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 48px; margin: 0 auto 16px; border: 4px solid var(--gold); }
.team-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 5px; }
.team-card span { font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ======================== WHY CHOOSE US ======================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-item { padding: 32px 24px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); text-align: center; }
.why-item:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.why-item .icon { font-size: 44px; margin-bottom: 14px; display: block; }
.why-item h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.55); font-size: 13.5px; }

/* ======================== PROCESS ======================== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.process-steps::before { content:''; position:absolute; top:32px; left:10%; right:10%; height:2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index:0; }
.process-step { text-align: center; padding: 24px 16px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: var(--navy); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); margin: 0 auto 16px; }
.process-step h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--muted); }

/* ======================== ALERT MESSAGES ======================== */
.alert-msg { padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ======================== FOOTER ======================== */
.footer { background: #060e1e; color: rgba(255,255,255,0.65); }
.footer-main { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 22px; margin-bottom: 14px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; text-align: center; font-size: 13px; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .about-strip { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; aspect-ratio: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 2000; padding: 100px 30px 40px; gap: 8px; }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { font-size: 18px; padding: 12px 16px; }
  .nav-toggle { display: flex; z-index: 2001; }
  .top-bar-contact { display: none; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .about-badge { bottom: 10px; right: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row2 { grid-template-columns: 1fr; }
  .hero-shapes { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .counters { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
