/* ============================================================
   AVYAN FM — ABOUT PAGE STYLES
   assets/css/about.css
   ============================================================ */

/* HERO */
.hero { position: relative; height: 88vh; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=80') center 30%/cover fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,54,93,.92),rgba(13,26,46,.74) 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.1; 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: 580px; margin-bottom: 40px; }
.btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ABOUT INTRO */
.about-intro { background: #fff; padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro h2 { color: var(--navy); margin-bottom: 28px; }
.about-intro p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.about-intro p:last-child { margin-bottom: 0; }

/* IMAGE MOSAIC */
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.m-wide { grid-column: 1/-1; height: 260px; overflow: hidden; border-radius: 1px; }
.m-half { height: 185px; overflow: hidden; border-radius: 1px; }
.m-wide img, .m-half img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.m-wide:hover img, .m-half:hover img { transform: scale(1.05); }

/* PARTNER PARALLAX */
.parallax-partner { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.p-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1633111126270-f50f378fde68?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.p-ov { position: absolute; inset: 0; background: linear-gradient(to right,rgba(26,54,93,.97) 40%,rgba(26,54,93,.6) 100%); }
.p-inner { position: relative; z-index: 2; max-width: 600px; padding: 80px; }
.p-inner .lbl { color: var(--light-blue); }
.p-inner .lbl::before { background: var(--light-blue); }
.p-inner h2 { color: #fff; margin-bottom: 24px; }
.p-inner p { font-size: 16px; color: rgba(255,255,255,.74); line-height: 1.85; margin-bottom: 32px; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.88); padding: 8px 18px; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: .06em; }

/* PROPERTY CARDS */
.prop-section { background: var(--off-white); padding: 100px 80px; }
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head h2 { color: var(--navy); margin-top: 8px; }
.prop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.prop-card { position: relative; height: 500px; overflow: hidden; }
.prop-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.prop-card:hover img { transform: scale(1.07); }
.prop-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,54,93,.96) 35%,rgba(26,54,93,.25) 75%,transparent); transition: background .4s; }
.prop-card:hover .prop-ov { background: linear-gradient(to top,rgba(26,54,93,.99) 45%,rgba(39,59,124,.65) 80%,rgba(39,59,124,.15)); }
.prop-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; }
.prop-tag { display: inline-block; background: var(--sky); color: #fff; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; padding: 5px 12px; font-weight: 600; margin-bottom: 14px; }
.prop-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,.08); line-height: 1; margin-bottom: 8px; }
.prop-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.prop-body p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s, opacity .4s; }
.prop-card:hover .prop-body p { max-height: 140px; opacity: 1; }

/* TESTIMONIALS */
.testi-section { position: relative; padding: 110px 80px; overflow: hidden; }
.t-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1680697589032-fe5c43895c7e?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.t-ov { position: absolute; inset: 0; background: rgba(13,26,46,.92); }
.t-inner { position: relative; z-index: 2; }
.t-head { text-align: center; margin-bottom: 60px; }
.t-head h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3vw,2.8rem); color: #fff; font-weight: 400; margin-top: 8px; }
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.t-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-left: 4px solid var(--sky); padding: 40px 36px; backdrop-filter: blur(8px); transition: background .3s, transform .3s; }
.t-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 18px; letter-spacing: 2px; }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 28px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid var(--sky); flex-shrink: 0; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-size: 15px; font-weight: 600; color: #fff; }
.t-loc { font-size: 12px; color: var(--light-blue); margin-top: 3px; }

/* GALLERY */
.gallery-section { background: var(--navy); padding: 100px 80px; }
.g-head { text-align: center; margin-bottom: 52px; }
.g-head h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3vw,2.8rem); color: #fff; font-weight: 400; margin-top: 8px; }
.g-grid { display: grid; grid-template-columns: repeat(5,1fr); grid-template-rows: 230px 230px; gap: 4px; }
.g-item { overflow: hidden; position: relative; cursor: zoom-in; }
.g-item:nth-child(1) { grid-column: 1/3; }
.g-item:nth-child(2) { grid-column: 3; }
.g-item:nth-child(3) { grid-column: 4/6; }
.g-item:nth-child(4) { grid-column: 1; }
.g-item:nth-child(5) { grid-column: 2/4; }
.g-item:nth-child(6) { grid-column: 4/6; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.g-item:hover img { transform: scale(1.08); }
.g-ov { position: absolute; inset: 0; background: rgba(26,54,93,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.g-item:hover .g-ov { background: rgba(26,54,93,.38); }
.g-ov span { color: #fff; font-size: 24px; opacity: 0; transform: scale(.7); transition: opacity .3s, transform .3s; }
.g-item:hover .g-ov span { opacity: 1; transform: scale(1); }

/* 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: 900px) {
  .hero-content { padding: 0 24px; }
  .about-intro { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .p-inner { padding: 60px 24px; }
  .prop-section { padding: 60px 24px; }
  .prop-grid { grid-template-columns: 1fr; }
  .prop-card { height: 360px; }
  .prop-card .prop-body p { max-height: 120px; opacity: 1; }
  .testi-section { padding: 60px 24px; }
  .t-grid { grid-template-columns: 1fr; }
  .gallery-section { padding: 60px 24px; }
  .g-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .g-item { grid-column: auto !important; grid-row: auto !important; height: 180px; }
  .cta-section { padding: 60px 24px; }
}
