/* ============================================================
   PRIYA HR SOLUTIONS — Main Stylesheet
   File: css/style.css
   To edit colors: change values in :root section below
   ============================================================ */

:root {
  --navy:       #0b1c3a;   /* Main dark background */
  --navy-mid:   #132952;
  --navy-light: #1e3d6e;
  --gold:       #c9922a;   /* Primary accent color */
  --gold-light: #f0b84e;
  --gold-pale:  #fdf3e0;
  --cream:      #faf7f2;   /* Page background */
  --white:      #ffffff;
  --text-dark:  #0d1b2e;
  --text-mid:   #3d5070;
  --text-light: #7b92b0;
  --border:     rgba(201,146,42,0.2);
  --wa:         #25D366;   /* WhatsApp green */
  --wa-dark:    #128C7E;
}

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

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-popup { width: 310px; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.18); border: 1px solid rgba(0,0,0,0.07); opacity: 0; transform: translateY(12px) scale(0.96); pointer-events: none; transition: opacity .28s ease, transform .28s ease; }
.wa-popup.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-popup-head { background: var(--wa-dark); padding: 14px 16px; display: flex; align-items: center; gap: 11px; }
.wa-ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--navy); font-size: 15px; flex-shrink: 0; }
.wa-head-info strong { display: block; color: #fff; font-size: 13.5px; font-weight: 600; }
.wa-head-info span { font-size: 11.5px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; }
.wa-dot { width: 7px; height: 7px; background: #64ffb0; border-radius: 50%; }
.wa-body { padding: 16px; background: #e5ddd5; }
.wa-msg { background: #fff; border-radius: 0 10px 10px 10px; padding: 10px 13px; font-size: 13px; color: #111; line-height: 1.55; box-shadow: 0 1px 3px rgba(0,0,0,0.09); position: relative; }
.wa-msg::before { content: ''; position: absolute; top: 0; left: -8px; border: 8px solid transparent; border-right-color: #fff; border-top-color: #fff; }
.wa-msg-time { font-size: 10px; color: #888; text-align: right; margin-top: 3px; }
.wa-opts { padding: 12px 16px; display: flex; flex-direction: column; gap: 7px; }
.wa-opt { background: #f0faf4; border: 1px solid rgba(37,211,102,0.3); color: var(--wa-dark); font-size: 12.5px; font-weight: 500; padding: 8px 12px; border-radius: 7px; cursor: pointer; text-decoration: none; display: block; transition: background .2s; }
.wa-opt:hover { background: #d8f5e6; }
.wa-opt::before { content: '💬 '; }
.wa-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--wa); box-shadow: 0 6px 22px rgba(37,211,102,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s; animation: waPulse 2.5s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.6); animation: none; }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; transition: transform .3s; }
.wa-btn.on svg { transform: rotate(90deg); }
.wa-tip { position: absolute; right: 66px; bottom: 12px; background: var(--navy); color: #fff; font-size: 11.5px; padding: 5px 12px; border-radius: 20px; white-space: nowrap; animation: tipFade 4s ease 1.5s both; }
@keyframes waPulse { 0%,100%{box-shadow:0 6px 22px rgba(37,211,102,0.5)} 50%{box-shadow:0 6px 22px rgba(37,211,102,0.5),0 0 0 10px rgba(37,211,102,0.1)} }
@keyframes tipFade { 0%,70%{opacity:1} 100%{opacity:0;pointer-events:none} }

/* ── NAVBAR ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,28,58,.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,146,42,.3); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; color: var(--navy); font-size: 20px; letter-spacing: 1px; }
.nav-logo-text { color: #fff; }
.nav-logo-text .logo-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; line-height: 1.1; }
.nav-logo-text .logo-tagline { display: block; font-size: 10px; color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important; color: var(--navy) !important; padding: 9px 20px !important; border-radius: 6px !important; font-weight: 600 !important; font-size: 12.5px !important; transition: transform .2s, box-shadow .2s !important; }
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 6px 20px rgba(201,146,42,.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 22px; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.mobile-menu a:hover { color: var(--gold-light); }
.mmclose { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 28px; cursor: pointer; background: none; border: none; }

/* ── HERO ── */
#home { min-height: 100vh; background: var(--navy); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 70% 50%,rgba(30,61,110,.7) 0%,transparent 70%),radial-gradient(ellipse 40% 60% at 10% 80%,rgba(201,146,42,.12) 0%,transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,146,42,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,146,42,.04) 1px,transparent 1px); background-size: 60px 60px; }
.hero-ring { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(201,146,42,.15); }
.hero-ring::before { content: ''; position: absolute; inset: 40px; border-radius: 50%; border: 1px solid rgba(201,146,42,.1); }
.hero-ring::after { content: ''; position: absolute; inset: 100px; border-radius: 50%; border: 1px solid rgba(201,146,42,.08); }
.hero-content { position: relative; z-index: 2; padding: 100px 5% 0; max-width: 720px; animation: fadeUp .9s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,146,42,.12); border: 1px solid rgba(201,146,42,.3); padding: 6px 16px; border-radius: 30px; margin-bottom: 28px; }
.hero-badge span { font-size: 11px; color: var(--gold-light); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px,6vw,72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 36px; font-weight: 300; line-height: 1.8; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 48px; display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .5px; }

/* ── BUTTONS ── */
.btn-primary { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); font-weight: 700; font-size: 14px; padding: 13px 30px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; transition: transform .2s,box-shadow .2s; display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,146,42,.4); }
.btn-outline { color: #fff; font-weight: 500; font-size: 14px; padding: 13px 28px; border-radius: 8px; border: 1px solid rgba(255,255,255,.3); cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block; background: transparent; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-wa { background: var(--wa); color: #fff; font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s,box-shadow .2s; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.4); }
.btn-wa svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }

/* ── TICKER ── */
.ticker { background: linear-gradient(135deg,var(--gold),var(--gold-light)); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: 13px; font-weight: 600; color: var(--navy); padding: 0 28px; }
.ticker-track span::after { content: '◆'; margin-left: 28px; opacity: .4; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION COMMON ── */
section { padding: 90px 5%; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-heading em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 15px; color: var(--text-mid); max-width: 560px; line-height: 1.75; font-weight: 300; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.about-visual { position: relative; }
.about-card { background: var(--navy); border-radius: 20px; padding: 48px 36px; position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle,rgba(201,146,42,.2),transparent); }
.about-card-text { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #fff; font-style: italic; line-height: 1.5; position: relative; z-index: 1; }
.about-card-text strong { color: var(--gold-light); font-style: normal; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; position: relative; z-index: 1; }
.about-badge { background: rgba(201,146,42,.15); border: 1px solid rgba(201,146,42,.3); color: var(--gold-light); font-size: 12px; padding: 5px 14px; border-radius: 20px; }
.about-float { position: absolute; bottom: -20px; right: -24px; background: var(--gold-pale); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.about-float-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--gold); line-height: 1; }
.about-float-label { font-size: 12px; color: var(--text-mid); margin-top: 3px; }
.about-content p { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
.about-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-dark); font-weight: 500; }
.about-list li::before { content: '✓'; width: 22px; height: 22px; min-width: 22px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); font-size: 12px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ── SERVICES ── */
#services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; margin-top: 52px; }
.service-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1px solid rgba(0,0,0,.06); transition: transform .25s,box-shadow .25s,border-color .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(11,28,58,.1); border-color: var(--border); }
.service-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { background: var(--cream); color: var(--text-mid); font-size: 11.5px; padding: 4px 11px; border-radius: 20px; border: 1px solid rgba(0,0,0,.06); }

/* ── INDUSTRIES ── */
#industries { background: var(--navy); }
#industries .section-heading { color: #fff; }
#industries .section-sub { color: rgba(255,255,255,.55); }
.industry-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 52px; }
.industry-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 28px 20px; text-align: center; transition: all .25s; }
.industry-card:hover { background: rgba(201,146,42,.1); border-color: rgba(201,146,42,.3); transform: translateY(-4px); }
.industry-icon { font-size: 32px; margin-bottom: 12px; }
.industry-card span { display: block; font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; line-height: 1.3; }

/* ── TESTIMONIALS ── */
#testimonials { background: #fff; }
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.testi-rating-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--gold); line-height: 1; }
.testi-stars-big { color: var(--gold); font-size: 18px; margin: 4px 0; }
.testi-rating-label { font-size: 12px; color: var(--text-light); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: var(--cream); border-radius: 18px; padding: 30px 26px; border: 1px solid rgba(0,0,0,.05); position: relative; transition: transform .25s,box-shadow .25s; }
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(11,28,58,.08); }
.testi-card.featured { background: var(--navy); border-color: transparent; }
.testi-q { font-size: 40px; line-height: 1; color: var(--gold); opacity: .2; font-family: 'Cormorant Garamond', serif; font-weight: 700; position: absolute; top: 20px; right: 22px; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 22px; font-style: italic; }
.testi-card.featured .testi-text { color: rgba(255,255,255,.72); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; color: #fff; }
.ava-blue{background:linear-gradient(135deg,#3b82f6,#1d4ed8)} .ava-green{background:linear-gradient(135deg,#10b981,#059669)} .ava-purple{background:linear-gradient(135deg,#8b5cf6,#6d28d9)} .ava-orange{background:linear-gradient(135deg,#f97316,#c2410c)} .ava-teal{background:linear-gradient(135deg,#14b8a6,#0f766e)} .ava-gold{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy)!important}
.testi-info strong { display: block; font-size: 13.5px; color: var(--navy); font-weight: 700; }
.testi-card.featured .testi-info strong { color: #fff; }
.testi-info span { font-size: 11.5px; color: var(--text-light); }
.testi-card.featured .testi-info span { color: rgba(255,255,255,.45); }
.testi-chip { display: inline-block; background: rgba(201,146,42,.15); border: 1px solid rgba(201,146,42,.3); color: var(--gold-light); font-size: 10.5px; padding: 3px 10px; border-radius: 20px; margin-top: 6px; }
.testi-wa-banner { margin-top: 48px; text-align: center; background: linear-gradient(135deg,#e8f9f0,#d0f4e1); border: 1px solid rgba(37,211,102,.25); border-radius: 16px; padding: 30px; }
.testi-wa-banner p { font-size: 15px; color: var(--text-mid); margin-bottom: 16px; }
.testi-wa-banner p strong { color: var(--navy); }

/* ── OPENINGS ── */
.openings-section { background: linear-gradient(135deg,var(--navy-mid),var(--navy)); padding: 72px 5%; }
.openings-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.openings-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,3vw,40px); color: #fff; font-weight: 700; margin-bottom: 10px; }
.openings-text h2 em { font-style: italic; color: var(--gold-light); }
.openings-text p { font-size: 14px; color: rgba(255,255,255,.55); }
.openings-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.opill { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: 13px; padding: 7px 14px; border-radius: 30px; display: flex; align-items: center; gap: 6px; }
.opill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.openings-btns { display: flex; flex-direction: column; gap: 10px; }

/* ── WHY US ── */
#why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.why-feat { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.why-feat:last-child { border-bottom: none; }
.why-feat-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: rgba(201,146,42,.2); flex-shrink: 0; width: 36px; line-height: 1; }
.why-feat h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-feat p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }
.why-visual { background: var(--navy); border-radius: 24px; padding: 44px 38px; position: relative; overflow: hidden; }
.why-visual::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle,rgba(201,146,42,.15),transparent); }
.why-visual h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: #fff; font-weight: 700; margin-bottom: 30px; line-height: 1.2; }
.why-visual h3 em { color: var(--gold-light); font-style: italic; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 1; }
.why-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5; }
.why-list li span:first-child { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-top: 56px; }
.contact-info p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.cdetail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.cdetail-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: var(--gold-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.cdetail-text span:first-child { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 3px; }
.cdetail-text span:last-child { font-size: 14px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.wa-cta-btn { display: flex; align-items: center; gap: 10px; background: var(--wa); color: #fff; padding: 13px 20px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px; margin-top: 10px; transition: transform .2s,box-shadow .2s; width: fit-content; }
.wa-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.wa-cta-btn svg { width: 20px; height: 20px; fill: #fff; }
.contact-form { background: #fff; border-radius: 20px; padding: 40px; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 20px 60px rgba(0,0,0,.06); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.form-wa-note { font-size: 12.5px; color: var(--wa-dark); margin-bottom: 22px; display: flex; align-items: center; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11.5px; font-weight: 600; color: var(--text-mid); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 6px; }
.fg input,.fg select,.fg textarea { width: 100%; padding: 11px 14px; border: 1px solid rgba(0,0,0,.1); border-radius: 8px; font-family: 'DM Sans',sans-serif; font-size: 14px; color: var(--text-dark); background: var(--cream); transition: border-color .2s,box-shadow .2s; outline: none; }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,146,42,.12); }
.fg textarea { resize: vertical; min-height: 90px; }
.form-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.fsub { padding: 14px; border-radius: 10px; background: linear-gradient(135deg,var(--navy),var(--navy-mid)); color: #fff; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: transform .2s,box-shadow .2s; }
.fsub:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,28,58,.3); }
.fsub-wa { padding: 14px; border-radius: 10px; background: var(--wa); color: #fff; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 600; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: transform .2s,box-shadow .2s; }
.fsub-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.fsub-wa svg { width: 17px; height: 17px; fill: #fff; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 70px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.07); }
.flogo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.flogo-icon { width: 40px; height: 40px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue',sans-serif; color: var(--navy); font-size: 18px; }
.flogo-text { color: #fff; font-family: 'Cormorant Garamond',serif; font-size: 18px; font-weight: 700; }
.flogo-sub { display: block; color: var(--gold-light); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-family: 'DM Sans',sans-serif; }
.footer-about p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 18px; }
.footer-note { background: rgba(201,146,42,.08); border: 1px solid rgba(201,146,42,.2); border-radius: 10px; padding: 14px 18px; margin-bottom: 14px; }
.footer-note p { font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; }
.footer-note strong { color: var(--gold-light); }
.footer-wa-link { display: flex; align-items: center; gap: 8px; background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25); color: #64e08a; font-size: 13px; padding: 10px 14px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.footer-wa-link:hover { background: rgba(37,211,102,.18); }
.footer-wa-link svg { width: 15px; height: 15px; fill: #64e08a; }
.fcol h4 { font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fcol ul li a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.fcol ul li a:hover { color: var(--gold-light); }
.fcol-addr p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }
.fcol-addr strong { color: rgba(255,255,255,.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-core { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-core span { font-size: 11.5px; color: rgba(255,255,255,.4); }
.footer-core span::before { content: '✔ '; color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid,.why-grid,.contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row,.form-btns { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .wa-popup { width: 280px; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .contact-form { padding: 26px 20px; }
  .wa-float { bottom: 16px; right: 16px; }
}
