/* ============================================================
   AVYAN FM — SERVICES PAGE STYLES
   assets/css/services.css
   ============================================================ */

/* HERO */
.hero { position: relative; height: 82vh; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1742112125567-3e8967bad60f?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg,rgba(26,54,93,.93),rgba(13,26,46,.75) 55%,rgba(39,59,124,.62)); }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 80px; animation: fadeUp 1.1s ease both; }
.eyebrow { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--light-blue); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--light-blue); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,5.5vw,5rem); font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--light-blue); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.76); line-height: 1.75; max-width: 600px; margin-bottom: 40px; }
.btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* COMMERCIAL */
.commercial { background: #fff; padding: 100px 80px; }
.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 72px; }
.svc-intro h2 { color: var(--navy); margin-bottom: 24px; }
.svc-intro p { font-size: 16px; color: var(--text-mid); line-height: 1.85; }
.img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.img-top { grid-column: 1/-1; height: 220px; overflow: hidden; border-radius: 1px; }
.img-bot { height: 175px; overflow: hidden; border-radius: 1px; }
.img-top img, .img-bot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.img-top:hover img, .img-bot:hover img { transform: scale(1.05); }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; }
.svc-card { background: var(--off-white); padding: 32px 24px; position: relative; overflow: hidden; border-bottom: 3px solid transparent; transition: border-color .25s, transform .25s; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: var(--navy); transform: translateY(100%); transition: transform .35s ease; z-index: 0; }
.svc-card:hover::before { transform: translateY(0); }
.svc-card:hover { border-color: var(--sky); transform: translateY(-4px); }
.svc-card:hover .svc-icon { background: rgba(123,179,224,.18); }
.svc-card:hover .svc-title { color: var(--light-blue); }
.svc-card:hover .svc-text { color: rgba(255,255,255,.72); }
.svc-card:hover .svc-num { color: rgba(255,255,255,.05); }
.svc-num { position: absolute; top: 16px; right: 18px; z-index: 1; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: rgba(26,54,93,.07); line-height: 1; transition: color .3s; }
.svc-icon { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%; background: rgba(74,144,217,.12); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; transition: background .3s; }
.svc-title { position: relative; z-index: 1; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.35; transition: color .3s; }
.svc-text { position: relative; z-index: 1; font-size: 13px; color: var(--text-light); line-height: 1.7; transition: color .3s; }

/* PARALLAX HIGHLIGHT */
.parallax-mid { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.pm-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1646640381839-02748ae8ddf0?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.pm-ov { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,54,93,.94),rgba(39,59,124,.88)); }
.pm-inner { position: relative; z-index: 2; max-width: 720px; padding: 80px 40px; }
.pm-inner h2 { color: #fff; margin-bottom: 20px; margin-top: 8px; }
.pm-inner p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 36px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.88); padding: 9px 20px; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: .07em; transition: background .2s; }
.chip:hover { background: rgba(74,144,217,.3); }

/* DOMESTIC */
.domestic { background: var(--off-white); padding: 100px 80px; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 6px; }
.m-tall { grid-row: 1/3; height: 346px; overflow: hidden; border-radius: 1px; }
.m-sm { height: 170px; overflow: hidden; border-radius: 1px; }
.m-wide { grid-column: 1/-1; height: 155px; overflow: hidden; border-radius: 1px; }
.m-tall img, .m-sm img, .m-wide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.m-tall:hover img, .m-sm:hover img, .m-wide:hover img { transform: scale(1.05); }
.dom-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.dom-grid .svc-card { background: #fff; }

/* FIRE SAFETY PARALLAX */
.parallax-fire { position: relative; min-height: 460px; display: flex; align-items: center; overflow: hidden; }
.pf-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1649836215936-41c76a724233?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.pf-ov { position: absolute; inset: 0; background: linear-gradient(to right,rgba(13,26,46,.97) 40%,rgba(13,26,46,.6)); }
.pf-inner { position: relative; z-index: 2; max-width: 560px; padding: 80px; }
.pf-inner h2 { color: #fff; margin-bottom: 20px; margin-top: 8px; }
.pf-inner p { font-size: 16px; color: rgba(255,255,255,.74); line-height: 1.85; margin-bottom: 28px; }
.fire-list { list-style: none; }
.fire-list li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255,255,255,.82); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.fire-list li:last-child { border-bottom: none; }
.fire-list li::before { content: '✓'; width: 24px; height: 24px; background: var(--sky); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }

/* CTA */
.cta-section { position: relative; padding: 110px 80px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.c-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.c-ov { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(39,59,124,.93),rgba(26,54,93,.90)); }
.c-inner { position: relative; z-index: 2; max-width: 680px; }
.c-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.2rem); color: #fff; font-weight: 300; line-height: 1.2; margin-bottom: 20px; margin-top: 8px; }
.c-inner p { font-size: 16px; color: rgba(255,255,255,.74); line-height: 1.75; margin-bottom: 16px; }
.c-tel { display: block; color: var(--light-blue); text-decoration: none; font-weight: 700; font-size: 1.6rem; font-family: 'Cormorant Garamond', serif; letter-spacing: .03em; margin-bottom: 36px; transition: color .2s; }
.c-tel:hover { color: #fff; }
.c-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(3,1fr); } .dom-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px) {
  .hero-content { padding: 0 24px; }
  .commercial, .domestic { padding: 60px 24px; }
  .svc-intro { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid, .dom-grid { grid-template-columns: repeat(2,1fr); }
  .pm-inner { padding: 60px 24px; }
  .pf-inner { padding: 60px 24px; }
  .cta-section { padding: 60px 24px; }
}
@media (max-width: 580px) { .svc-grid, .dom-grid { grid-template-columns: 1fr; } }
