@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Mulish:wght@300;400;500;600&display=swap');
 
* { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
    --navy: #0f2545;
    --navy-light: #1a3a6b;
    --gold: #c8a951;
    --gold-light: #e8c97a;
    --cream: #f8f5ef;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #8a9ab5;
    --white: #ffffff;
    --card-shadow: 0 4px 20px rgba(15,37,69,0.10);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
 
 
/* ===== HERO ===== */
.fac-hero {
    position: relative;
    background: linear-gradient(135deg, #0f2545 0%, #1a3a6b 60%, #243d6b 100%);
    padding: 72px 0 56px;
    overflow: hidden;
}
.fac-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.fac-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 64px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.fac-hero-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.fac-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,81,0.18);
    border: 1px solid rgba(200,169,81,0.35);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}
.fac-hero-badge span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.fac-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.fac-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 13px;
    list-style: none;
}
.fac-breadcrumb li a { color: var(--gold-light); text-decoration: none; opacity: 0.85; transition: var(--transition); }
.fac-breadcrumb li a:hover { opacity: 1; }
.fac-breadcrumb .sep { color: var(--gold); opacity: 0.5; font-size: 10px; }
.fac-breadcrumb .active { color: rgba(255,255,255,0.55); }
 
/* ===== SECTION ===== */
.fac-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px 72px;
}
.fac-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.fac-section-label { display: flex; align-items: center; gap: 14px; }
.fac-accent-line {
    width: 4px;
    height: 48px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--navy-light) 100%);
    border-radius: 4px;
    flex-shrink: 0;
}
.fac-label-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.fac-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
 
/* ===== GRID ===== */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
}
 
/* ===== CARD ===== */
.fac-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200,169,81,0.12);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: facFadeUp 0.5s ease both;
}
.fac-card:nth-child(1) { animation-delay: 0.05s; }
.fac-card:nth-child(2) { animation-delay: 0.12s; }
.fac-card:nth-child(3) { animation-delay: 0.19s; }
.fac-card:nth-child(4) { animation-delay: 0.26s; }
.fac-card:nth-child(5) { animation-delay: 0.33s; }
.fac-card:nth-child(6) { animation-delay: 0.40s; }
 
@keyframes facFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
.fac-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,37,69,0.18);
    border-color: rgba(200,169,81,0.35);
}
 
.fac-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #dde5f5 0%, #b8cce8 100%);
}
.fac-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.fac-card:hover .fac-card-img img { transform: scale(1.06); }
 
.fac-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15,37,69,0.78);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-transform: uppercase;
}
 
.fac-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fac-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
    text-align: center;
}
.fac-card-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    margin: 0 auto 14px;
    width: 48px;
    border-radius: 2px;
    opacity: 0.6;
}
 
.fac-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white) !important;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 11px 18px;
    transition: var(--transition);
    align-self: center;
    letter-spacing: 0.02em;
}
.fac-card-cta:hover {
    background: var(--gold);
    color: var(--navy) !important;
}
.fac-cta-arrow { transition: transform 0.25s ease; }
.fac-card-cta:hover .fac-cta-arrow { transform: translateX(4px); }