/* ============================================================
   PREM PG — Main Stylesheet
   Contains: Global + Layout + All Pages + Responsive
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy:   #16234d;
  --navy-2: #1d2c5e;
  --gold:   #f5a623;
  --gold-2: #ef8e1c;
  --green:  #25d366;
  --bg:     #f7f8fb;
  --text:   #2a2f45;
  --muted:  #6b7280;
  --line:   #e7e9ef;
  --shadow: 0 10px 30px rgba(16,26,64,.08);
  --radius: 14px;
}

/* ===== BASE RESET ===== */
html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif !important; color: var(--text); background: var(--bg); font-size: 15px; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
section { scroll-margin-top: 90px; }

/* ===== WRAPPER ===== */
.pg-wrap { width: 100%; padding: 0 60px; }

/* ===== BUTTONS ===== */
.btn              { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; border-radius: 8px; padding: 12px 22px; transition: .2s; white-space: nowrap; border: none; cursor: pointer; }
.btn-gold         { background: var(--gold)    !important; color: #1b1b1b !important; border-color: var(--gold) !important; }
.btn-gold:hover   { background: var(--gold-2)  !important; color: #1b1b1b !important; }
.btn-navy         { background: var(--navy)    !important; color: #fff    !important; }
.btn-navy:hover   { background: var(--navy-2)  !important; color: #fff    !important; }
.btn-wa           { background: var(--green)   !important; color: #fff    !important; }
.btn-wa:hover     { filter: brightness(.92); }
.btn-outline-hero { background: transparent; border: 1.5px solid rgba(255,255,255,.6) !important; color: #fff !important; }
.btn-outline-hero:hover { background: rgba(255,255,255,.12) !important; }
.btn-lg-pad       { padding: 14px 22px; }

/* ===== IMAGE PLACEHOLDER ===== */
.ph      { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; color: rgba(255,255,255,.85); background: linear-gradient(135deg,#3a4a78,#243a7a); border-radius: 12px; overflow: hidden; font-size: 12px; }
.ph i    { font-size: 22px; opacity: .9; }
.ph.alt  { background: linear-gradient(135deg,#4a5a88,#2d3f70); }
.ph.warm { background: linear-gradient(135deg,#8a6d3b,#6b5226); }
.ph .icon-lg { font-size: 30px; }

/* ===== TOPBAR ===== */
.topbar               { background: var(--navy); color: #cfd6e8; font-size: 12.5px; }
.topbar a             { color: #cfd6e8; transition: .2s; }
.topbar a:hover       { color: var(--gold); }
.topbar-inner         { display: flex; justify-content: space-between; align-items: center; height: 38px; padding: 0 60px; }
.topbar-social        { display: flex; align-items: center; gap: 12px; }
.topbar-follow        { opacity: .8; }

/* ===== HEADER ===== */
header.site             { position: sticky; top: 0; z-index: 1030; background: #fff; box-shadow: 0 2px 12px rgba(16,26,64,.06); }
.header-inner           { display: flex; align-items: center; justify-content: space-between; padding: 0 60px; height: 74px; gap: 20px; }
.logo .mark             { width: 42px; height: 42px; border-radius: 9px; background: var(--navy); display: grid; place-items: center; color: var(--gold); font-size: 20px; flex-shrink: 0; }
.logo b                 { font-size: 19px; color: var(--navy); font-weight: 800; letter-spacing: .5px; line-height: 1; }
.logo small             { display: block; font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 1px; }
nav.main a              { font-size: 14px; font-weight: 500; color: var(--text); position: relative; padding: 4px 0; white-space: nowrap; }
nav.main a:hover,
nav.main a.active       { color: var(--navy); }
nav.main a.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--gold); border-radius: 2px; }
.phone .pi              { width: 34px; height: 34px; border-radius: 50%; background: #eef1f8; color: var(--navy); display: grid; place-items: center; }
.phone b                { font-size: 14px; color: var(--navy); }
.phone small            { display: block; font-size: 11px; color: var(--muted); }
.menu-btn               { background: none; border: none; font-size: 22px; color: var(--navy); padding: 4px; cursor: pointer; }

/* Mobile Nav */
.mobile-nav             { display: none; flex-direction: column; gap: 8px; padding: 0 24px 12px; background: #fff; box-shadow: 0 4px 12px rgba(16,26,64,.06); }
.mobile-nav.open        { display: flex; }
.mobile-nav a           { font-size: 14px; font-weight: 500; color: var(--text); padding: 4px 0; }
.mobile-nav a.active,
.mobile-nav a:hover     { color: var(--navy); }

/* ===== SECTION HEADINGS ===== */
.eyebrow  { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.sec-pad  { padding: 50px 0; }
h2.title  { font-size: 33px; font-weight: 800; color: var(--navy); line-height: 1.2; }
h2.title-white { font-size: 33px; font-weight: 800; color: #fff; line-height: 1.2; }
.gold     { color: var(--gold); }

/* ===== CTA BANNER (shared) ===== */
.cta-banner       { background: linear-gradient(120deg,#1a2a57,#16234d); padding: 40px 60px; margin-bottom: 50px; }
.cta-banner h3    { color: #fff; font-size: 27px; font-weight: 800; margin-bottom: 4px; }
.cta-banner p     { color: #c4cce0; font-size: 14px; margin: 0; }

/* ===== PAGE HERO (About / Contact / Gallery) ===== */
.page-hero              { background: linear-gradient(120deg,rgba(16,23,52,.93) 0%,rgba(16,23,52,.80) 60%),linear-gradient(135deg,#1a2a57,#16234d); color: #fff; padding: 60px 60px 50px; }
.page-hero .breadcrumb-nav { font-size: 13px; color: #aab4ce; margin-bottom: 10px; background: none; padding: 0; }
.page-hero .breadcrumb-nav a { color: var(--gold); text-decoration: none; }
.page-hero h1           { font-size: 42px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.page-hero h1 span      { color: var(--gold); }
.page-hero p            { color: #c4cce0; font-size: 15px; margin: 0; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero           { position: relative; color: #fff; background: linear-gradient(120deg,rgba(16,23,52,.92) 0%,rgba(16,23,52,.78) 42%,rgba(16,23,52,.45) 100%), url('/images/hero.png') center/cover no-repeat; padding: 54px 60px 60px; }
.hero-badge     { display: inline-block; background: rgba(245,166,35,.16); color: var(--gold); border: 1px solid rgba(245,166,35,.4); padding: 6px 16px; border-radius: 30px; font-size: 12.5px; font-weight: 600; margin-bottom: 18px; }
.hero h1        { font-size: 46px; line-height: 1.12; font-weight: 800; margin-bottom: 14px; }
.hero .tagline  { font-size: 17px; font-weight: 500; color: #e2e7f3; margin-bottom: 26px; }
.hf             { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 12px 6px; text-align: center; }
.hf i           { font-size: 18px; color: var(--gold); }
.hf span        { display: block; font-size: 10px; margin-top: 6px; color: #dfe4f1; line-height: 1.3; }

/* Enquiry Card */
.enquiry              { background: #fff; color: var(--text); border-radius: 16px; padding: 28px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.enquiry h3           { color: var(--navy); font-size: 21px; font-weight: 700; margin-bottom: 4px; }
.enquiry .lead-text   { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.enquiry .form-control,
.enquiry .form-select { font-family: 'Poppins', sans-serif; font-size: 14px; border-color: var(--line); padding: 12px 15px; margin-bottom: 13px; border-radius: 8px; }
.enquiry .form-control:focus,
.enquiry .form-select:focus { border-color: var(--gold); box-shadow: none; }
.form-msg             { display: none; background: #e8f8ee; color: #1d7a45; border: 1px solid #bce8cd; padding: 11px; border-radius: 8px; font-size: 13px; margin-top: 12px; text-align: center; }

/* Features Strip */
.features-strip         { margin-top: -44px; position: relative; z-index: 5; padding-bottom: 50px; }
.feat-card              { background: #fff; border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: var(--shadow); transition: .25s; border: 1px solid var(--line); height: 100%; }
.feat-card:hover        { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(16,26,64,.13); }
.feat-card .ic          { width: 54px; height: 54px; border-radius: 14px; background: #fff4e2; color: var(--gold); display: grid; place-items: center; font-size: 22px; margin: 0 auto 14px; }
.feat-card h4           { font-size: 14.5px; color: var(--navy); font-weight: 600; margin-bottom: 6px; }
.feat-card p            { font-size: 11.5px; color: var(--muted); line-height: 1.45; margin: 0; }

/* About Section (Home) */
.about-section          { padding: 50px 0; background: #fff; }
.about-images           { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.img-box                { overflow: hidden; height: 170px; }
.img-box img            { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge            { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 120px; background: #0e1d5d; border: 6px solid #fff; border-radius: 50%; color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.about-badge h4         { font-size: 18px; margin-bottom: 4px; }
.about-badge span       { font-size: 12px; line-height: 18px; }
.sub-title              { font-size: 13px; font-weight: 700; color: #16245c; letter-spacing: .8px; }
.about-content h2       { margin: 10px 0 20px; font-size: 38px; line-height: 1.15; color: #111; font-weight: 700; }
.about-content h2 span  { color: #f4a000; }
.about-content p        { font-size: 15px; line-height: 28px; color: #666; margin-bottom: 20px; }
.about-content ul       { list-style: none; padding: 0; }
.about-content ul li    { margin-bottom: 12px; color: #444; font-size: 15px; position: relative; padding-left: 28px; }
.about-content ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #16245c; font-weight: 700; }
.about-btn              { display: inline-block; margin-top: 15px; background: #16245c; color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 600; transition: .2s; }
.about-btn:hover        { background: var(--gold); color: #1b1b1b; }
.about-stats            { background: #16245c; border-radius: 16px; padding: 35px; color: #fff; }
.stat-item              { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child   { border-bottom: none; }
.stat-item h3           { color: #f4a000; font-size: 34px; margin-bottom: 4px; }
.stat-item p            { font-size: 15px; opacity: .9; margin: 0; }

/* Rooms */
.rooms-section          { background: #fff; }
.room-card              { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; transition: .25s; height: 100%; }
.room-card:hover        { box-shadow: var(--shadow); transform: translateY(-5px); }
.room-card .rimg        { height: 190px; }
.room-card .rimg .ph    { height: 100%; border-radius: 0; }
.room-body              { padding: 20px; }
.room-body .rt          { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.room-body .rt i        { width: 34px; height: 34px; border-radius: 9px; background: #eef1f8; color: var(--navy); display: grid; place-items: center; font-size: 15px; }
.room-body h4           { font-size: 17px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.room-body p            { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.price                  { color: var(--gold); font-weight: 800; font-size: 20px; }
.price small            { color: var(--muted); font-weight: 500; font-size: 12px; }

/* Amenities */
.amenities-section  { background: linear-gradient(135deg,#1a2a57,#16234d); color: #fff; position: relative; overflow: hidden; }
.am                 { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 11px; padding: 14px; height: 100%; }
.am i               { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,166,35,.16); color: var(--gold); display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.am b               { font-size: 13.5px; font-weight: 600; display: block; line-height: 1.2; }
.am span            { font-size: 11px; color: #aab4ce; }

/* Gallery Strip */
.gal-item        { text-align: center; }
.gal-item .ph    { height: 130px; margin-bottom: 10px; }
.gal-item span   { font-size: 12.5px; color: var(--muted); font-weight: 500; }

/* Location / Testimonials */
.loc-wrap           { background: #fff; }
.loc-card           { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 26px; height: 100%; }
.loc-card h3        { color: var(--navy); font-size: 22px; font-weight: 800; margin-bottom: 18px; line-height: 1.25; }
.loc-list           { list-style: none; padding: 0; margin-bottom: 20px; }
.loc-list li        { display: flex; gap: 10px; align-items: center; font-size: 13.5px; margin-bottom: 11px; }
.loc-list i         { color: var(--gold); }
.map-box            { overflow: hidden; border-radius: 14px; }
.testi-head         { margin: 0 0 16px; font-weight: 700; color: var(--navy); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.testi              { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 20px; height: 100%; }
.testi .stars       { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.testi p            { font-size: 12.5px; color: #555c70; font-style: italic; margin-bottom: 14px; }
.testi b            { font-size: 13px; color: var(--navy); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.who-images         { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.who-images img     { border-radius: 10px; height: 165px; width: 100%; object-fit: cover; background: linear-gradient(135deg,#3a4a78,#243a7a); }
.who-label          { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.who-title          { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.who-text           { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.feat-check         { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.feat-check div     { background: #eef1f8; border-radius: 8px; padding: 11px 15px; font-size: 13.5px; font-weight: 600; color: var(--navy); }

/* Timeline */
.timeline-wrap         { background: var(--bg); }
.section-label         { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.timeline-grid         { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; position: relative; }
.timeline-grid::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 2px; background: var(--gold); opacity: .25; z-index: 0; }
.t-item                { background: #fff; border-radius: 14px; padding: 22px 16px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; z-index: 1; }
.t-dot                 { width: 16px; height: 16px; background: var(--gold); border-radius: 50%; margin: 0 auto 14px; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold); }
.t-item h4             { color: var(--navy); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.t-item p              { font-size: 12px; color: var(--muted); margin: 0; }

/* Why Choose */
.why-card           { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 28px 22px; text-align: center; transition: .25s; height: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.why-card:hover     { background: var(--navy); color: #fff; transform: translateY(-5px); }
.why-card i         { font-size: 28px; color: var(--gold); transition: .2s; }
.why-card:hover i   { color: #fff; }
.why-card span      { font-size: 14px; font-weight: 600; color: var(--navy); transition: .2s; }
.why-card:hover span { color: #fff; }

/* Values + Impact */
.values-wrap      { background: var(--bg); }
.values-title     { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.val-list         { list-style: none; padding: 0; margin: 0; }
.val-list li      { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.val-list li::before { content: "✓"; color: var(--gold); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.impact-box       { background: var(--navy); color: #fff; border-radius: 14px; padding: 22px; text-align: center; height: 100%; }
.impact-box h3    { font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.impact-box p     { font-size: 13px; margin: 0; opacity: .85; }

/* Team */
.team-wrap           { background: #fff; }
.member-card         { text-align: center; }
.member-card img     { width: 100%; height: 190px; object-fit: cover; border-radius: 14px; background: linear-gradient(135deg,#3a4a78,#243a7a); margin-bottom: 14px; }
.member-card h4      { font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.member-card p       { font-size: 13px; color: var(--gold); font-weight: 500; margin: 0; }

/* About CTA */
.about-cta     { background: linear-gradient(135deg,#1a2a57,#16234d); color: #fff; margin-bottom: 50px; }
.about-cta h2  { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.about-cta p   { color: #c4cce0; font-size: 15px; margin-bottom: 28px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.info-card              { background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line); height: 100%; }
.info-card h2           { font-size: 22px; color: var(--navy); font-weight: 700; margin-bottom: 24px; }
.info-item              { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-icon              { width: 44px; height: 44px; background: #eef1f8; color: var(--navy); border-radius: 12px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.info-item h4           { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 3px; }
.info-item p            { font-size: 15px; color: var(--navy); font-weight: 600; margin: 0; }
.contact-social a       { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 15px; transition: .2s; }
.contact-social a:hover { background: var(--gold); color: #1b1b1b; }
.form-card              { background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line); height: 100%; }
.form-card h2           { font-size: 22px; color: var(--navy); font-weight: 700; margin-bottom: 24px; }
.form-card .form-label  { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.form-card .form-control,
.form-card .form-select,
.form-card textarea     { font-family: 'Poppins', sans-serif; font-size: 14px; border: 1.5px solid var(--line); border-radius: 8px; padding: 12px 15px; color: var(--text); }
.form-card .form-control:focus,
.form-card .form-select:focus,
.form-card textarea:focus { border-color: var(--gold); box-shadow: none; }
.form-card textarea     { resize: vertical; min-height: 110px; }
.contact-success        { display: none; background: #e8f8ee; color: #1d7a45; border: 1px solid #bce8cd; padding: 12px; border-radius: 8px; font-size: 13px; text-align: center; margin-top: 12px; }
.divider-light          { border-color: var(--line); margin: 20px 0; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.rm-card            { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; transition: .25s; height: 100%; }
.rm-card:hover      { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(16,26,64,.13); }
.rm-card img        { width: 100%; height: 200px; object-fit: cover; display: block; background: linear-gradient(135deg,#3a4a78,#243a7a); }
.rm-card .rc        { padding: 22px; }
.rm-card .rc h3     { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.rm-card .rc p      { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.rm-card .rc .rp    { font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.rm-card .rc .rp small { font-size: 12px; color: var(--muted); font-weight: 500; }
.g-filter           { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.g-filter button    { padding: 9px 20px; border: 1.5px solid var(--line); border-radius: 30px; background: #fff; color: var(--text); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; transition: .2s; }
.g-filter button:hover,
.g-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.g-img              { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; display: block; background: linear-gradient(135deg,#3a4a78,#243a7a); transition: .3s; cursor: pointer; }
.g-img:hover        { transform: scale(1.04); box-shadow: 0 12px 30px rgba(16,26,64,.18); }
.am-strip           { background: linear-gradient(135deg,#1a2a57,#16234d); padding: 50px 0; text-align: center; margin-bottom: 30px; }
.am-strip h3        { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.am-pill            { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; padding: 10px 20px; border-radius: 30px; font-size: 13.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: .2s; cursor: default; }
.am-pill:hover      { background: var(--gold); color: #1b1b1b; border-color: var(--gold); }
.gallery-bg         { background: var(--bg); }

/* ============================================================
   FOOTER
   ============================================================ */

footer.site             { background: #101a3a; color: #aab4ce; padding-top: 54px; }
footer.site h5          { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 18px; }
.foot-about p           { font-size: 13px; margin: 14px 0 18px; line-height: 1.6; }
.foot-logo b            { color: #fff; font-size: 18px; }
.foot-logo small        { display: block; font-size: 10px; color: var(--gold); letter-spacing: 1px; }
.foot-social a          { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .2s; }
.foot-social a:hover    { background: var(--gold); color: #1b1b1b; }
footer.site ul          { list-style: none; padding: 0; margin: 0; }
footer.site ul li       { margin-bottom: 11px; font-size: 13px; transition: .2s; }
footer.site ul li:hover { color: var(--gold); }
footer.site ul li i     { color: var(--gold); font-size: 11px; margin-right: 8px; }
footer.site ul li a     { color: inherit; }
.foot-info li           { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 11px; }
.foot-info li span:first-child { display: flex; align-items: center; gap: 8px; }
.foot-divider           { border-bottom: 1px solid rgba(255,255,255,.08); }
.copy                   { padding: 18px 0; text-align: center; font-size: 12.5px; color: #8893b0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 10px; }

/* Float WhatsApp */
.float-wa  { position: fixed; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 26px; box-shadow: 0 8px 22px rgba(37,211,102,.45); z-index: 60; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-6px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .pg-wrap       { padding: 0 40px; }
  .hero          { padding: 48px 40px 54px; }
  .cta-banner    { padding: 36px 40px; }
  .page-hero     { padding: 50px 40px 42px; }
  .topbar-inner  { padding: 0 40px; }
  .header-inner  { padding: 0 40px; }
}

@media (max-width: 991px) {
  .pg-wrap            { padding: 0 30px; }
  .hero               { padding: 40px 30px; }
  .cta-banner         { padding: 30px; }
  .page-hero          { padding: 40px 30px 36px; }
  .hero h1            { font-size: 36px; }
  .about-content h2   { font-size: 28px; }
  .timeline-grid      { grid-template-columns: repeat(3,1fr); }
  .info-card,
  .form-card          { padding: 26px; }
  .topbar-inner       { padding: 0 30px; }
  .header-inner       { padding: 0 30px; }
}

@media (max-width: 767px) {
  .who-title          { font-size: 24px; }
  .timeline-grid      { grid-template-columns: 1fr 1fr; }
  .feat-check         { grid-template-columns: 1fr; }
  .g-img              { height: 150px; }
  .page-hero          { padding: 32px 16px 28px; }
  .page-hero h1       { font-size: 28px; }
}

@media (max-width: 576px) {
  .pg-wrap            { padding: 0 16px; }
  .hero               { padding: 32px 16px; }
  .hero h1            { font-size: 28px; }
  h2.title            { font-size: 24px; }
  h2.title-white      { font-size: 24px; }
  .cta-banner         { padding: 24px 16px; }
  .cta-banner h3      { font-size: 22px; }
  .page-hero          { padding: 32px 16px 28px; }
  .page-hero h1       { font-size: 28px; }
  .timeline-grid      { grid-template-columns: 1fr; }
  .topbar-inner       { padding: 0 16px; }
  .header-inner       { padding: 0 16px; }
}
