/* ============================================================
   AVYAN FM — HOME PAGE STYLES
   assets/css/home.css
   ============================================================ */

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,54,93,.88),rgba(13,26,46,.70) 60%,rgba(39,59,124,.55)); }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 80px; animation: fadeUp 1.1s ease both; }
.hero-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; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--light-blue); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,6vw,5.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,.78); line-height: 1.7; max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; z-index: 2; animation: bounce 2s infinite; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom,rgba(255,255,255,.5),transparent); }

/* STATS */
.stats-bar { background: var(--navy); padding: 36px 80px; display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid rgba(255,255,255,.07); }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: var(--light-blue); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: .15em; color: rgba(255,255,255,.55); text-transform: uppercase; margin-top: 6px; }

/* INTRO */
.intro-section { background: var(--off-white); padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-section h2 { color: var(--navy); margin-bottom: 28px; }
.intro-section p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.intro-section p:last-of-type { margin-bottom: 28px; }
.service-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: rgba(26,54,93,.08); color: var(--navy); padding: 7px 16px; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: .06em; border: 1px solid rgba(26,54,93,.15); }
.intro-img { position: relative; height: 480px; overflow: hidden; border-radius: 1px; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.intro-img:hover img { transform: scale(1.04); }
.intro-img::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--sky); z-index: 1; pointer-events: none; }

/* MISSION PARALLAX */
.parallax-mission { position: relative; height: 560px; 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-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.pm-ov { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(26,54,93,.93),rgba(39,59,124,.88)); }
.pm-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 40px; }
.pm-inner h2 { color: #fff; margin-bottom: 28px; font-style: italic; margin-top: 8px; }
.pm-inner p { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.8; }

/* VALUES */
.values-section { background: #fff; padding: 100px 80px; }
.values-head { text-align: center; margin-bottom: 72px; }
.values-head h2 { color: var(--navy); margin-top: 8px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.val-card { background: var(--off-white); padding: 48px 36px; position: relative; overflow: hidden; transition: background .3s, transform .3s; }
.val-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sky); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.val-card:hover::before { transform: scaleX(1); }
.val-card:hover { background: var(--navy); transform: translateY(-4px); }
.val-card:hover .val-num { color: rgba(255,255,255,.06); }
.val-card:hover h3 { color: var(--light-blue); }
.val-card:hover p { color: rgba(255,255,255,.72); }
.val-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(26,54,93,.07); line-height: 1; margin-bottom: 16px; transition: color .3s; }
.val-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); font-weight: 600; margin-bottom: 14px; transition: color .3s; }
.val-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; transition: color .3s; }

/* SERVICES TABS */
.services-section { background: var(--off-white); padding: 100px 80px; }
.services-head { text-align: center; margin-bottom: 56px; }
.services-head h2 { color: var(--navy); margin-top: 8px; }
.services-head p { font-size: 16px; color: var(--text-mid); max-width: 620px; margin: 12px auto 0; line-height: 1.7; }
.tab-btns { display: flex; justify-content: center; gap: 0; margin-bottom: 52px; }
.tab-btn { padding: 14px 44px; background: none; border: 1px solid #dde4ee; font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; cursor: pointer; color: var(--text-mid); transition: all .2s; }
.tab-btn:first-child { border-radius: 2px 0 0 2px; }
.tab-btn:last-child { border-radius: 0 2px 2px 0; border-left: none; }
.tab-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.tab-btn:hover:not(.active) { background: rgba(26,54,93,.06); color: var(--navy); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.svc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.svc-card { background: #fff; padding: 32px 24px; border-left: 3px solid transparent; transition: border-color .2s, background .2s, transform .2s; }
.svc-card:hover { border-left-color: var(--sky); background: rgba(26,54,93,.02); transform: translateX(3px); }
.svc-icon { width: 36px; height: 36px; background: rgba(74,144,217,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 16px; }
.svc-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.svc-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* CTA PARALLAX */
.cta-section { position: relative; padding: 100px 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-1716703371653-ca74beaa7a4a?auto=format&fit=crop&w=1920&q=80') center top/cover fixed; }
.c-ov { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(39,59,124,.93),rgba(26,54,93,.88)); }
.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); } }
@media (max-width: 900px) {
  .hero-content { padding: 0 24px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 36px 24px; }
  .intro-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .intro-img { height: 300px; }
  .intro-img::before { display: none; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .values-section { padding: 60px 24px; }
  .services-section { padding: 60px 24px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .cta-section { padding: 60px 24px; }
}
@media (max-width: 580px) {
  .svc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
