/* ===== PCF CUSTOM STYLES v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=Bebas+Neue&display=swap');

:root {
  --pcf-red: #E30613; --pcf-red-dark: #B50510; --pcf-red-light: #FF1A28;
  --pcf-yellow: #FBBF24; --pcf-yellow-bright: #FCD34D;
  --pcf-dark: #1A1A1A; --pcf-darker: #0F0F0F; --pcf-gray: #6B7280; --pcf-gray-light: #F3F4F6;
  --pcf-bg: #F9FAFB; --pcf-white: #FFFFFF; --pcf-text: #111827; --pcf-text-secondary: #6B7280;
  --pcf-success: #10B981;
  --pcf-shadow: 0 4px 24px rgba(0,0,0,0.08); --pcf-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --pcf-shadow-red: 0 8px 30px rgba(227,6,19,0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; color: var(--pcf-text); background: var(--pcf-bg); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.15; }

/* TOP BAR */
.top-bar { background: var(--pcf-dark); color: rgba(255,255,255,0.7); font-size: 0.8rem; padding: 0.5rem 0; }
.top-bar a { color: var(--pcf-yellow); text-decoration: none; transition: color 0.2s; }
.top-bar a:hover { color: var(--pcf-yellow-bright); }

/* HEADER */
.header { background: var(--pcf-white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: all 0.35s; }
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 48px; width: auto; transition: transform 0.3s; }
.logo:hover img { transform: rotate(-5deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--pcf-red); letter-spacing: 0.04em; }
.logo-text .sub { font-size: 0.6rem; color: var(--pcf-gray); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: var(--pcf-text); text-decoration: none; font-weight: 500; font-size: 0.9rem; padding: 0.5rem 1rem; border-radius: 8px; transition: all 0.2s; position: relative; }
.nav-links a:hover { color: var(--pcf-red); background: rgba(227,6,19,0.04); }
.nav-links a.active { color: var(--pcf-red); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: var(--pcf-red); border-radius: 1px; }
.btn-track-nav { background: var(--pcf-red); color: white !important; padding: 0.6rem 1.25rem !important; border-radius: 8px !important; font-weight: 600 !important; font-size: 0.85rem !important; display: inline-flex; align-items: center; gap: 0.4rem; transition: all 0.25s !important; box-shadow: 0 2px 8px rgba(227,6,19,0.2); }
.btn-track-nav:hover { background: var(--pcf-red-dark) !important; transform: translateY(-1px); box-shadow: var(--pcf-shadow-red) !important; }

/* Mobile */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--pcf-dark); margin: 6px 0; transition: all 0.3s; border-radius: 1px; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--pcf-white); padding: 2rem; z-index: 999; flex-direction: column; gap: 0.5rem; animation: slideDown 0.3s ease; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--pcf-text); text-decoration: none; font-weight: 600; font-size: 1.1rem; padding: 1rem; border-radius: 12px; transition: all 0.2s; }
.mobile-menu a:hover { background: rgba(227,6,19,0.04); color: var(--pcf-red); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--pcf-darker); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; transform: scale(1.05); animation: heroZoom 25s ease-in-out infinite alternate; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.4) 50%, rgba(227,6,19,0.15) 100%); }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 6rem 1.5rem 4rem; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.3); color: var(--pcf-yellow); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeInUp 0.6s ease; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--pcf-yellow); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 8vw, 6.5rem); color: white; line-height: 0.95; letter-spacing: 0.02em; max-width: 700px; margin-bottom: 1.5rem; animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1 .highlight { color: var(--pcf-yellow); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.6; margin-bottom: 2.5rem; animation: fadeInUp 0.6s ease 0.2s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }

/* TRACKING WIDGET */
.tracking-widget { margin-top: 3rem; animation: fadeInUp 0.6s ease 0.4s both; }
.tracking-widget-inner { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.5rem; max-width: 580px; }
.tracking-widget label { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.tracking-input-wrap { display: flex; gap: 0.75rem; }
.tracking-input-wrap input { flex: 1; padding: 0.85rem 1.25rem; border: 2px solid rgba(255,255,255,0.1); border-radius: 10px; background: rgba(255,255,255,0.06); color: white; font-size: 1rem; font-family: inherit; transition: all 0.25s; }
.tracking-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.tracking-input-wrap input:focus { outline: none; border-color: var(--pcf-yellow); background: rgba(255,255,255,0.1); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer; font-family: inherit; transition: all 0.25s; }
.btn-primary { background: var(--pcf-red); color: white; box-shadow: 0 4px 16px rgba(227,6,19,0.3); }
.btn-primary:hover { background: var(--pcf-red-dark); transform: translateY(-2px); box-shadow: var(--pcf-shadow-red); }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.06); }
.btn-yellow { background: var(--pcf-yellow); color: var(--pcf-dark); font-weight: 700; }
.btn-yellow:hover { background: var(--pcf-yellow-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,191,36,0.3); }
.btn-outline-red { background: transparent; color: var(--pcf-red); border: 2px solid var(--pcf-red); }
.btn-outline-red:hover { background: var(--pcf-red); color: white; }
.btn-white { background: white; color: var(--pcf-red); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* SECTIONS */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--pcf-red); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--pcf-red); border-radius: 1px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--pcf-dark); margin-bottom: 1rem; }
.section-desc { color: var(--pcf-text-secondary); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(227,6,19,0.15), transparent); }

/* VALUE PROPS */
.value-props { background: white; border-top: 1px solid rgba(0,0,0,0.04); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.value-card { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(0,0,0,0.06); transition: all 0.3s; }
.value-card:last-child { border-right: none; }
.value-card:hover { background: rgba(227,6,19,0.02); }
.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
.value-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--pcf-red), var(--pcf-red-dark)); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.value-icon svg { width: 28px; height: 28px; color: white; stroke: white; fill: none; stroke-width: 2; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--pcf-text-secondary); line-height: 1.5; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: white; border-radius: 16px; padding: 2.5rem 2rem; box-shadow: var(--pcf-shadow); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--pcf-red), var(--pcf-yellow)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--pcf-shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { background: var(--pcf-red); }
.service-card:hover .service-icon svg { stroke: white; color: white; }
.service-icon { width: 52px; height: 52px; background: rgba(227,6,19,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.35s; }
.service-icon svg { width: 26px; height: 26px; color: var(--pcf-red); stroke: var(--pcf-red); fill: none; stroke-width: 2; transition: all 0.35s; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: var(--pcf-text-secondary); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.5rem; }
.service-link { color: var(--pcf-red); font-weight: 600; font-size: 0.85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.25s; }
.service-link:hover { gap: 0.6rem; }

/* STATS */
.stats-section { background: var(--pcf-dark); position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(227,6,19,0.15) 0%, transparent 70%); border-radius: 50%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--pcf-yellow); line-height: 1; margin-bottom: 0.5rem; transition: text-shadow 0.4s ease; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }

/* CTA */
.cta-banner { background: linear-gradient(135deg, var(--pcf-red) 0%, var(--pcf-red-dark) 100%); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; z-index: 1; }
.cta-text h2 { color: white; font-size: clamp(1.75rem,3vw,2.25rem); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* PHOTO SHOWCASE */
.photo-showcase { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.photo-showcase img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; transition: all 0.5s; filter: saturate(0.9); }
.photo-showcase img:hover { transform: scale(1.03); filter: saturate(1.1); box-shadow: var(--pcf-shadow-lg); }
.photo-showcase .span-2 { grid-column: span 2; }

/* FOOTER */
.footer { background: var(--pcf-darker); color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 300px; }
.footer h4 { color: white; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.footer-links a:hover { color: var(--pcf-yellow); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; font-size: 0.82rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.25s; }
.footer-social a:hover { background: var(--pcf-red); color: white; transform: translateY(-2px); }

/* PAGE HERO */
.page-hero { background: var(--pcf-dark); padding: 6rem 1.5rem 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(227,6,19,0.12) 0%, transparent 60%); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(227,6,19,0.3), transparent); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.75rem,6vw,4.5rem); color: white; letter-spacing: 0.03em; position: relative; animation: fadeInUp 0.5s ease; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 560px; margin: 1rem auto 0; position: relative; animation: fadeInUp 0.5s ease 0.1s both; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.85rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--pcf-yellow); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ABOUT */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; box-shadow: var(--pcf-shadow-lg); position: relative; }
.about-img img { width: 100%; height: 400px; object-fit: cover; transition: transform 6s ease; }
.about-img:hover img { transform: scale(1.05); }
.about-img .accent-bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--pcf-red), var(--pcf-yellow)); }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: var(--pcf-shadow); border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s; }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--pcf-shadow-lg); }
.mv-card h3 { font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.mv-card p { color: var(--pcf-text-secondary); line-height: 1.7; }
.core-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cv-card { text-align: center; padding: 2rem 1.5rem; background: white; border-radius: 16px; box-shadow: var(--pcf-shadow); border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s; }
.cv-card:hover { transform: translateY(-6px); box-shadow: var(--pcf-shadow-lg); }
.cv-card:hover .cv-icon { background: var(--pcf-red); }
.cv-card:hover .cv-icon svg { stroke: white; }
.cv-icon { width: 48px; height: 48px; background: rgba(227,6,19,0.08); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: all 0.35s; }
.cv-icon svg { width: 24px; height: 24px; stroke: var(--pcf-red); fill: none; stroke-width: 2; transition: all 0.35s; }
.cv-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.cv-card p { font-size: 0.85rem; color: var(--pcf-text-secondary); line-height: 1.5; }

/* LUZON MAP */
.luzon-map-wrap { position: relative; max-width: 480px; margin: 0 auto 3rem; }
.luzon-map-wrap svg { width: 100%; height: auto; }
.map-pin { opacity: 0; transform-origin: center bottom; }
.map-pin.animate { animation: pinBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes pinBounce { 0% { opacity: 0; transform: translateY(-25px) scale(0); } 60% { opacity: 1; transform: translateY(3px) scale(1.1); } 80% { transform: translateY(-2px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
.pin-pulse { animation: pingPulse 2s ease-in-out infinite; }
@keyframes pingPulse { 0%,100% { r: 8; opacity: 0.25; } 50% { r: 15; opacity: 0; } }

/* BRANCHES */
.region-filter { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.region-btn { padding: 0.5rem 1.25rem; border-radius: 50px; border: 2px solid rgba(0,0,0,0.08); background: white; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.25s; color: var(--pcf-text-secondary); }
.region-btn:hover, .region-btn.active { border-color: var(--pcf-red); color: var(--pcf-red); background: rgba(227,6,19,0.04); }
.branches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.branch-card { background: white; border-radius: 16px; padding: 2rem; box-shadow: var(--pcf-shadow); border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s; }
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--pcf-shadow-lg); }
.branch-card.hq { border-left: 4px solid var(--pcf-red); }
.branch-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.branch-card .hq-badge { background: var(--pcf-red); color: white; font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 700; }
.branch-card .region-tag { font-size: 0.8rem; color: var(--pcf-text-secondary); margin-bottom: 1rem; }
.branch-info { display: flex; flex-direction: column; gap: 0.6rem; }
.branch-info-row { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.88rem; color: var(--pcf-text-secondary); }
.branch-info-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--pcf-red); }
.branch-info-row a { color: var(--pcf-red); text-decoration: none; }
.branch-info-row a:hover { text-decoration: underline; }
.branch-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.06); }

/* TRACKING */
.track-container { max-width: 640px; margin: 0 auto; }
.track-form-card { background: white; border-radius: 20px; padding: 3rem; box-shadow: var(--pcf-shadow-lg); border: 1px solid rgba(0,0,0,0.04); }
.track-form-card label { font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 0.75rem; }
.track-input-wrap { display: flex; gap: 0.75rem; }
.track-input-wrap input { flex: 1; padding: 1rem 1.25rem; border: 2px solid rgba(0,0,0,0.08); border-radius: 12px; font-size: 1rem; font-family: inherit; transition: all 0.25s; }
.track-input-wrap input:focus { outline: none; border-color: var(--pcf-red); }
.track-result { margin-top: 2rem; padding: 2rem; background: var(--pcf-gray-light); border-radius: 16px; display: none; }
.track-result.active { display: block; animation: fadeInUp 0.3s ease; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }
.contact-form-card { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: var(--pcf-shadow); border: 1px solid rgba(0,0,0,0.04); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 2px solid rgba(0,0,0,0.08); border-radius: 10px; font-size: 0.95rem; font-family: inherit; transition: all 0.25s; background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--pcf-red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(227,6,19,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.contact-info-item:hover .contact-info-icon { background: var(--pcf-red); }
.contact-info-item:hover .contact-info-icon svg { stroke: white; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--pcf-red); transition: all 0.3s; }
.contact-info-text h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-text p { font-size: 0.88rem; color: var(--pcf-text-secondary); }
.contact-info-text a { color: var(--pcf-red); text-decoration: none; }
.contact-map { border-radius: 16px; overflow: hidden; margin-top: 2rem; height: 220px; box-shadow: var(--pcf-shadow); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* TOAST */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--pcf-dark); color: white; padding: 1rem 1.5rem; border-radius: 12px; font-size: 0.9rem; font-weight: 500; box-shadow: 0 8px 32px rgba(0,0,0,0.2); z-index: 9999; transform: translateY(120%); transition: transform 0.35s; }
.toast.success { border-left: 4px solid var(--pcf-success); }
.toast.error { border-left: 4px solid var(--pcf-red); }
.toast.show { transform: translateY(0); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-left.visible { opacity: 1; transform: translateX(0); }
.animate-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-right.visible { opacity: 1; transform: translateX(0); }
.animate-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-scale.visible { opacity: 1; transform: scale(1); }
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) { .services-grid,.stats-grid,.value-grid { grid-template-columns: repeat(2, 1fr); } .value-card:nth-child(2) { border-right: none; } .footer-grid { grid-template-columns: repeat(2, 1fr); } .about-intro,.contact-grid { grid-template-columns: 1fr; } .core-values-grid { grid-template-columns: repeat(2, 1fr); } .photo-showcase { grid-template-columns: 1fr 1fr; } .photo-showcase .span-2 { grid-column: span 2; } }
@media (max-width: 768px) { .nav-links { display: none; } .mobile-toggle { display: block; } .hero { min-height: 85vh; } .hero h1 { font-size: 3rem; } .hero-actions { flex-direction: column; } .hero-actions .btn { text-align: center; justify-content: center; } .tracking-input-wrap,.track-input-wrap { flex-direction: column; } .value-grid,.services-grid,.core-values-grid { grid-template-columns: 1fr; } .value-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); } .stats-grid { grid-template-columns: 1fr 1fr; } .stat-number { font-size: 2.75rem; } .cta-inner { flex-direction: column; text-align: center; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } .section { padding: 3.5rem 1.25rem; } .mission-vision { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .branches-grid { grid-template-columns: 1fr; } .page-hero { padding: 4rem 1.25rem 3rem; } .track-form-card { padding: 2rem 1.5rem; } .photo-showcase { grid-template-columns: 1fr; } .photo-showcase .span-2 { grid-column: span 1; } .about-intro { gap: 2rem; } }
@media (max-width: 480px) { .hero h1 { font-size: 2.5rem; } .top-bar .container { flex-direction: column; gap: 0.25rem; } .header-inner { height: 64px; } .logo img { height: 40px; } .logo-text .brand { font-size: 1.25rem; } }

/* ===== PHILIPPINES MAP ZOOM ANIMATION ===== */
.ph-map-viewport {
  aspect-ratio: 4/5;
  max-height: 620px;
}
.ph-map-inner {
  transform-origin: 62% 58%;
  animation: none;
}
.ph-map-inner.zoom-active {
  animation: mapZoomIn 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes mapZoomIn {
  0% { transform: scale(1) translate(0, 0); }
  35% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(2.2) translate(-12%, -8%); }
}
/* Pin delays account for the zoom duration */
.ph-map-svg .map-pin {
  opacity: 0;
}
.ph-map-inner.zoom-active .map-pin {
  animation: pinBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes pinBounce {
  0% { opacity: 0; transform: translateY(-20px) scale(0); }
  60% { opacity: 1; transform: translateY(3px) scale(1.15); }
  80% { transform: translateY(-2px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
