/**
 * Paradise Lakes Care Centre
 * Stylesheet
 * ─────────────────────────────
 * Brand: Vanguard Care Communities
 * Primary:   #FF6600 (Orange)
 * Secondary: #03177A (Navy)
 * Font:      Host Grotesk / Arial
 */

:root {
  --navy: #03177A; --navy-deep: #030C61; --navy-mid: #0A2694; --navy-soft: #1a3399;
  --orange: #FF6600; --orange-hover: #e55b00; --orange-light: #FF9D32; --orange-pale: #FFF3E8;
  --blue-mist: #F0F4FF; --blue-light: #E6EEFF; --info-blue: #AAC3FF;
  --cream: #FFFBF7; --cream-dark: #FFF5EC;
  --white: #FFFFFF;
  --text: #1a1a2e; --text-body: #404660; --text-muted: #8890a8;
  --border: #e8ecf4; --border-warm: #f0e6da;
  --radius-sm: 12px; --radius-md: 20px; --radius-lg: 28px; --radius-xl: 36px;
  --shadow-soft: 0 4px 24px rgba(3,23,122,0.04);
  --shadow-md: 0 8px 32px rgba(3,23,122,0.07);
  --shadow-lg: 0 16px 48px rgba(3,23,122,0.09);
  --shadow-warm: 0 8px 32px rgba(255,102,0,0.08);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Host Grotesk', Arial, -apple-system, sans-serif; color: var(--text-body); background: var(--cream); line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Host Grotesk', Arial, sans-serif; color: var(--navy); line-height: 1.15; font-weight: 700; }
h4, h5, h6 { font-family: 'Host Grotesk', Arial, sans-serif; color: var(--navy); font-weight: 600; }
a { color: var(--orange); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--orange-hover); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── TOPBAR ─── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 0.8rem; padding: 10px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--info-blue); font-weight: 500; }
.topbar a:hover { color: #fff; }

/* ─── NAVBAR ─── */
.navbar { background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-body); padding: 8px 14px; border-radius: 10px; transition: all 0.25s; }
.nav-links a:hover { background: var(--blue-mist); color: var(--navy); }
.nav-cta { background: var(--orange) !important; color: white !important; padding: 10px 22px !important; border-radius: 100px !important; font-weight: 600 !important; box-shadow: 0 4px 16px rgba(255,102,0,0.2); }
.nav-cta:hover { background: var(--orange-hover) !important; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,102,0,0.28) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; transition: background 0.2s; }
.hamburger:hover { background: var(--blue-mist); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ─── HERO ─── */
.hero { background: var(--cream); padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-blob-1 { position: absolute; top: -100px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,102,0,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-blob-2 { position: absolute; bottom: -120px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(3,23,122,0.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-pale); color: var(--orange); padding: 8px 18px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 24px; }
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { font-size: clamp(2.6rem, 4.5vw, 3.8rem); color: var(--navy); margin-bottom: 22px; font-weight: 800; letter-spacing: -0.02em; }
.hero h1 .highlight { position: relative; white-space: nowrap; }
.hero h1 .highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 12px; background: rgba(255,102,0,0.12); border-radius: 4px; z-index: -1; }
.hero p { font-size: 1.1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px; border-radius: 100px; font-family: 'Host Grotesk', Arial, sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 4px 20px rgba(255,102,0,0.2); }
.btn-primary:hover { background: var(--orange-hover); color: white; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,102,0,0.3); }
.btn-soft { background: var(--blue-mist); color: var(--navy); }
.btn-soft:hover { background: var(--blue-light); color: var(--navy); transform: translateY(-1px); }
.hero-visual { position: relative; }
.hero-card { background: none; border-radius: var(--radius-xl); padding: 0; box-shadow: none; }
.hero-card::before { display: none; }
.hero-card-inner { background: none; border-radius: var(--radius-md); }
.hero-card-inner h3 { color: white; font-size: 1.4rem; margin-bottom: 8px; }
.hero-card-inner p { color: var(--info-blue); font-size: 0.95rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.hero-stat { text-align: center; padding: 16px 8px; background: var(--blue-mist); border-radius: var(--radius-sm); }
.hero-stat .num { font-family: 'Host Grotesk', Arial, sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); display: block; line-height: 1.1; letter-spacing: -0.02em; }
.hero-stat .lab { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── TRUST STRIP ─── */
.trust-strip { padding: 48px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 12px; padding: 10px 20px; background: var(--cream); border-radius: 100px; border: 1px solid var(--border-warm); }
.trust-pill-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.trust-pill-icon svg { width: 18px; height: 18px; }
.trust-pill-text h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.trust-pill-text p { font-size: 0.72rem; color: var(--text-muted); }

/* ─── SECTIONS ─── */
section { padding: 100px 0; }
.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 14px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 1px; }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; font-weight: 700; letter-spacing: -0.02em; }
.section-desc { font-size: 1.05rem; color: var(--text-body); max-width: 560px; line-height: 1.8; }
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-desc { margin: 0 auto; }

/* ─── ABOUT ─── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; margin-top: 48px; }
.about-visual { position: relative; }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.about-float-badge .badge-num { font-family: 'Host Grotesk', Arial, sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.about-float-badge .badge-text { font-size: 0.8rem; font-weight: 600; color: var(--text-body); line-height: 1.3; }
.about-content p { margin-bottom: 16px; line-height: 1.85; }
.about-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-feature { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--cream); border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: var(--navy); border: 1px solid var(--border-warm); }
.about-feature svg { width: 16px; height: 16px; color: var(--orange); }

/* ─── FACILITIES ─── */
.facilities { background: var(--cream); position: relative; }
.facilities::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,102,0,0.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.facility-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.facility-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; }
.facility-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--navy-soft)); opacity: 0; transition: opacity 0.3s; }
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.facility-card:hover::after { opacity: 1; }
.fc-icon { width: 52px; height: 52px; background: var(--blue-mist); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s; }
.fc-icon svg { width: 24px; height: 24px; color: var(--navy); transition: color 0.3s; }
.facility-card:hover .fc-icon { background: var(--navy); }
.facility-card:hover .fc-icon svg { color: white; }
.facility-card h3 { font-family: 'Host Grotesk', Arial, sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.facility-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }

/* ─── CARE ─── */
.care { background: var(--white); }
.care-feature { background: var(--cream); border: 1px solid var(--border-warm); border-radius: var(--radius-xl); padding: 48px; margin-top: 48px; position: relative; overflow: hidden; }
.care-feature::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(255,102,0,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.care-feature-top { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; position: relative; }
.care-feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 20px rgba(255,102,0,0.2); }
.care-feature-icon svg { width: 26px; height: 26px; color: white; }
.care-feature-top h3 { font-size: 1.4rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.care-feature-top p { font-size: 1rem; color: var(--text-body); line-height: 1.75; }
.care-aspects { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.care-aspect { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; transition: all 0.3s; }
.care-aspect:hover { border-color: var(--orange); box-shadow: var(--shadow-warm); transform: translateY(-3px); }
.care-aspect-icon { width: 44px; height: 44px; background: var(--blue-mist); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.care-aspect-icon svg { width: 20px; height: 20px; color: var(--navy); }
.care-aspect h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.care-aspect p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.care-allied { margin-top: 32px; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%); border-radius: var(--radius-xl); padding: 40px; color: white; position: relative; overflow: hidden; }
.care-allied::before { content: ''; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,102,0,0.1) 0%, transparent 70%); border-radius: 50%; }
.care-allied-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; position: relative; }
.care-allied-top h3 { color: white; font-size: 1.3rem; letter-spacing: -0.01em; }
.care-allied-top p { color: rgba(255,255,255,0.65); font-size: 0.88rem; max-width: 420px; text-align: right; line-height: 1.6; }
.allied-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; position: relative; }
.allied-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 10px; transition: all 0.25s; }
.allied-pill:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.allied-pill-dot { width: 8px; height: 8px; background: var(--orange-light); border-radius: 50%; flex-shrink: 0; }
.allied-pill span { font-size: 0.86rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* ─── FEES ─── */
.fees { background: var(--cream); }
.fees-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.fee-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px; }
.fee-card h3 { font-family: 'Host Grotesk', Arial, sans-serif; font-size: 1.08rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.fee-card h3 svg { width: 22px; height: 22px; color: var(--orange); }
.fee-card p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 10px; }
.fee-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 8px; }
.fee-note a { color: var(--orange); }
.rad-card { background: var(--white); border: 2px solid var(--orange); border-radius: var(--radius-xl); padding: 36px; margin-bottom: 20px; position: relative; overflow: hidden; }
.rad-card::before { content: ''; position: absolute; top: 0; right: 0; width: 160px; height: 160px; background: radial-gradient(circle at top right, rgba(255,102,0,0.06) 0%, transparent 70%); pointer-events: none; }
.rad-card-label { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-pale); color: var(--orange); padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.rad-card-label svg { width: 14px; height: 14px; }
.rad-card h3 { font-size: 1.15rem; margin-bottom: 8px; position: relative; }
.rad-price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0; position: relative; }
.rad-price .amount { font-family: 'Host Grotesk', Arial, sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.rad-price .per { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.rad-card > p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; margin-bottom: 10px; position: relative; }
.rad-details { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); position: relative; }
.rad-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--text-body); line-height: 1.6; }
.rad-detail svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.rad-card .fee-note { font-size: 0.78rem; }
.fees-help-box { background: linear-gradient(160deg, var(--navy), var(--navy-soft)); border-radius: var(--radius-xl); padding: 40px 32px; color: white; position: relative; overflow: hidden; }
.fees-help-box::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,157,50,0.1) 0%, transparent 70%); border-radius: 50%; }
.fees-help-box h3 { color: white; font-size: 1.3rem; margin-bottom: 14px; position: relative; }
.fees-help-box p { font-size: 0.92rem; opacity: 0.88; line-height: 1.75; margin-bottom: 14px; position: relative; }
.fees-help-box a { color: var(--orange-light); }
.help-links { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.help-link { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 14px 18px; color: white; font-size: 0.88rem; font-weight: 500; transition: all 0.3s; }
.help-link:hover { background: rgba(255,255,255,0.12); color: white; transform: translateX(4px); }
.help-link svg { width: 18px; height: 18px; color: var(--orange-light); flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--white); position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(3,23,122,0.03) 0%, transparent 70%); border-radius: 50%; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--cream); border: 1px solid var(--border-warm); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: all 0.3s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--orange); }
.testi-card blockquote { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-author { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* ─── INSTAGRAM ─── */
.instagram { background: var(--cream); position: relative; overflow: hidden; }
.instagram::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,102,0,0.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.insta-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.insta-header-left .section-label { margin-bottom: 10px; }
.insta-follow { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 100px; background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; box-shadow: 0 4px 20px rgba(131,58,180,0.2); }
.insta-follow:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,58,180,0.3); color: white; }
.insta-follow svg { width: 20px; height: 20px; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insta-post { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; min-height: 300px; cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.insta-post:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.insta-post-overlay { display: none; }
.insta-cta { text-align: center; margin-top: 36px; }
.insta-cta p { font-size: 0.92rem; color: var(--text-muted); }
.insta-cta a { font-weight: 600; }

/* ─── RIGHTS ─── */
.rights { background: var(--blue-mist); }
.rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 880px; margin: 0 auto; }
.right-card { display: flex; gap: 14px; padding: 22px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); transition: all 0.25s; }
.right-card:hover { box-shadow: var(--shadow-soft); }
.right-card-icon { width: 40px; height: 40px; background: var(--orange-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.right-card-icon svg { width: 18px; height: 18px; color: var(--orange); }
.right-card p { font-size: 0.86rem; color: var(--text-body); line-height: 1.6; }
.right-card strong { color: var(--navy); font-weight: 600; }
.rights-footer { text-align: center; margin-top: 40px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.rights-footer a { color: var(--orange); text-decoration: underline; }

/* ─── CONTACT ─── */
.contact-section { background: var(--cream); padding: 100px 0 80px; }
.contact-wrapper { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.contact-info { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%); padding: 56px 48px; color: white; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,102,0,0.08) 0%, transparent 70%); border-radius: 50%; }
.contact-info h2 { color: white; font-size: 2rem; margin-bottom: 12px; position: relative; }
.contact-info > p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 40px; position: relative; }
.ci-items { display: flex; flex-direction: column; gap: 24px; position: relative; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-item-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item-icon svg { width: 18px; height: 18px; color: var(--orange-light); }
.ci-item h4 { color: white; font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.ci-item p, .ci-item a { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.ci-item a:hover { color: white; }
.contact-form-wrap { padding: 56px 48px; }
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-body); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; background: var(--cream); border: 1.5px solid var(--border); border-radius: 14px; color: var(--text); font-family: 'Host Grotesk', Arial, sans-serif; font-size: 0.92rem; transition: all 0.25s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(255,102,0,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; background: var(--orange); border: none; border-radius: 100px; color: white; font-family: 'Host Grotesk', Arial, sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 16px rgba(255,102,0,0.2); }
.form-submit:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,102,0,0.28); }

/* ─── FOOTER ─── */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 64px 0 32px; font-size: 0.85rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h4 { font-family: 'Host Grotesk', Arial, sans-serif; font-size: 1.2rem; color: white; margin-bottom: 12px; }
.footer-brand p { line-height: 1.7; margin-bottom: 14px; }
footer h5 { color: var(--orange-light); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 10px; }
.f-links a { color: rgba(255,255,255,0.55); }
.f-links a:hover { color: white; }
.f-regulatory { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 20px; font-size: 0.76rem; line-height: 1.7; color: rgba(255,255,255,0.4); }
.f-regulatory a { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ─── ENERGETIC ENHANCEMENTS ─── */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #FF6600, #FF9D32, #FF6600);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.hero h1 .highlight::after {
  display: none;
}

.section-title {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  animation: fadeUp 0.6s ease forwards, pulse 3s ease-in-out 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.trust-pill {
  transition: all 0.3s ease;
}
.trust-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.hero-stat {
  transition: all 0.3s ease;
}
.hero-stat:hover {
  transform: translateY(-2px);
  background: var(--blue-light);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.insta-follow {
  background-size: 200% auto;
  animation: gradientShift 3s ease infinite;
}

.about-feature {
  transition: all 0.25s ease;
}
.about-feature:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.fc-icon {
  transition: all 0.3s ease;
}
.facility-card:hover .fc-icon {
  transform: rotate(8deg) scale(1.1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .facility-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid .insta-post:nth-child(n+7) { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: white; padding: 20px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .about-grid, .fees-layout { grid-template-columns: 1fr; gap: 36px; }
  .care-aspects { grid-template-columns: repeat(2, 1fr); }
  .allied-grid { grid-template-columns: repeat(2, 1fr); }
  .care-feature { padding: 28px; }
  .care-allied { padding: 28px; }
  .care-allied-top { flex-direction: column; align-items: flex-start; }
  .care-allied-top p { text-align: left; }
  .trust-items { gap: 16px; }
  .facility-cards, .testi-grid { grid-template-columns: 1fr; }
  .insta-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;}
  .insta-grid .insta-post:nth-child(n+5) { display: block; }
  .insta-post {
    min-height: 250px;
    min-width: 250px;
    flex-shrink: 0;
    scroll-snap-align: start;}
  .insta-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .insta-follow { font-size: 0.82rem; padding: 10px 18px; }
  .instagram .section-title { font-size: 1.6rem; }  .rights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-values { grid-template-columns: 1fr; }
  .about-photo-grid { gap: 8px; }
  .about-photo { min-height: 150px; }
}
/* Hide scrollbar on Instagram carousel */
.insta-grid::-webkit-scrollbar { display: none; }
.insta-grid { -ms-overflow-style: none; scrollbar-width: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up.d1 { animation-delay: 0.1s; } .fade-up.d2 { animation-delay: 0.2s; } .fade-up.d3 { animation-delay: 0.3s; } .fade-up.d4 { animation-delay: 0.4s; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.about-float-badge { animation: float 4s ease-in-out infinite; }
