/* ============================================
   ICCA Dubai - India Website
   Shared Stylesheet
   Brand: International Centre for Culinary Arts
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
    /* ICCA Brand Colors - Minimalist black & white with red accent (matched to iccadubai.ae) */
    --icca-red: #E63946;          /* Logo red, used sparingly as accent only */
    --icca-red-dark: #C02132;
    --icca-red-light: #ED5560;
    --icca-gold: #B89B5E;          /* Subtle warm metallic accent */
    --icca-gold-dark: #9A8049;
    --icca-black: #0E0E0E;         /* Near-pure black for strong contrast */
    --icca-charcoal: #1F1F1F;
    --icca-grey: #6E6E6E;
    --icca-light-grey: #F2F2F2;
    --icca-off-white: #FAFAFA;
    --icca-cream: #FAFAFA;
    --icca-border: #E5E5E5;
    --icca-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout */
    --max-width: 1200px;
    --header-height: 88px;
    --shadow-soft: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.10);
}

body {
    font-family: var(--font-body);
    color: var(--icca-charcoal);
    line-height: 1.65;
    background: var(--icca-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--icca-black); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--icca-red); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--icca-black);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .85rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.65rem); margin-bottom: .75rem; }
h4 { font-size: 1.2rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================
   Top Strip
   ============================================ */
.top-strip {
    background: var(--icca-black);
    color: #cfcfcf;
    font-size: 13px;
    padding: 8px 0;
}
.top-strip .container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.top-strip a { color: #cfcfcf; }
.top-strip a:hover { color: var(--icca-gold); }
.top-strip .country-switch span { color: var(--icca-gold); font-weight: 600; }

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--icca-white);
    border-bottom: 1px solid var(--icca-border);
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
}
.logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--icca-black);
}
.logo-img {
    height: 44px; width: auto; display: block;
}
.site-header .logo-img { height: 42px; }
.site-footer .logo-img { height: 44px; }
.logo-mark {
    width: 56px; height: 56px;
    background: var(--icca-red); color: var(--icca-white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 900; font-size: 22px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
    font-family: var(--font-heading); font-size: 18px;
    color: var(--icca-black); letter-spacing: 0.5px;
}
.logo-text span {
    font-size: 11px; color: var(--icca-grey); text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 2px;
}
.logo-divider {
    width: 1px; height: 38px;
    background: linear-gradient(180deg, transparent 0%, var(--icca-red) 50%, transparent 100%);
}
.site-header .logo-text strong { font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.site-footer .logo-img { filter: brightness(0) invert(1); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    color: var(--icca-charcoal);
    font-weight: 500; font-size: 13px;
    padding: 10px 12px;
    text-transform: uppercase; letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}
@media (max-width: 1280px) {
    .main-nav a { font-size: 12px; padding: 10px 9px; letter-spacing: 0.5px; }
}
.main-nav a:hover { color: var(--icca-red); }
.main-nav a.active { color: var(--icca-black); }
.main-nav a.active::after {
    content: ''; position: absolute; bottom: -2px; left: 14px; right: 14px;
    height: 2px; background: var(--icca-red);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 11px; opacity: .7; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: var(--icca-white); min-width: 280px;
    box-shadow: var(--shadow-medium);
    border-top: 2px solid var(--icca-black);
    padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .25s ease;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 10px 20px; text-transform: none; letter-spacing: 0;
    font-weight: 500; font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--icca-light-grey); color: var(--icca-red); }

.btn-apply {
    background: var(--icca-black);
    color: var(--icca-white) !important;
    padding: 11px 24px !important;
    border-radius: 0;
    font-weight: 600 !important;
    margin-left: 12px;
    transition: background .25s ease, transform .25s ease;
    letter-spacing: 1.5px;
}
.btn-apply:hover { background: var(--icca-red); transform: translateY(-2px); }
.btn-apply.active { background: var(--icca-red); }

.menu-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--icca-black); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 36px;
    font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 2px;
    border-radius: 0;
    transition: all .3s ease;
    cursor: pointer; border: 1px solid transparent;
    text-align: center;
}
.btn-primary { background: var(--icca-black); color: var(--icca-white); border-color: var(--icca-black); }
.btn-primary:hover { background: var(--icca-white); color: var(--icca-black); border-color: var(--icca-black); transform: translateY(-2px); }

.btn-outline {
    background: transparent; color: var(--icca-white);
    border: 1px solid var(--icca-white);
}
.btn-outline:hover { background: var(--icca-white); color: var(--icca-black); }

.btn-gold { background: var(--icca-white); color: var(--icca-black); border-color: var(--icca-white); }
.btn-gold:hover { background: transparent; color: var(--icca-white); border-color: var(--icca-white); }

.btn-dark { background: var(--icca-black); color: var(--icca-white); border-color: var(--icca-black); }
.btn-dark:hover { background: transparent; color: var(--icca-black); }

.btn-accent { background: var(--icca-red); color: var(--icca-white); border-color: var(--icca-red); }
.btn-accent:hover { background: var(--icca-red-dark); border-color: var(--icca-red-dark); color: var(--icca-white); transform: translateY(-2px); }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%),
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--icca-white);
    padding: 130px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Background video for hero */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
    z-index: -1;
}
.hero.has-video > .container { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-block;
    color: var(--icca-white);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px;
    margin-bottom: 20px;
    padding: 7px 22px; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 0;
}
.hero h1 { color: var(--icca-white); margin-bottom: 1.2rem; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--icca-white); font-weight: 700; }
.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 760px; margin: 0 auto 2rem; opacity: .95;
}
.hero-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
    margin-top: 60px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero-stat { text-align: center; }
.hero-stat strong {
    display: block; font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--icca-gold); font-weight: 700;
}
.hero-stat span { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; opacity: .9; }

/* ============================================
   Page Header (subpages)
   ============================================ */
.page-header {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--icca-white);
    padding: 110px 0 90px;
    text-align: center;
}
.page-header h1 { color: var(--icca-white); font-weight: 400; }
.page-header .breadcrumb {
    color: rgba(255,255,255,0.7); font-size: 12px;
    text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 16px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb a:hover { color: var(--icca-white); }
.page-header p { max-width: 720px; margin: 1rem auto 0; font-size: 1.1rem; opacity: .92; }

/* ============================================
   Sections
   ============================================ */
section { padding: 80px 0; }

.section-eyebrow {
    display: block;
    color: var(--icca-black); font-weight: 700;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 14px;
    position: relative; padding-left: 36px;
}
.section-eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 26px; height: 1px; background: var(--icca-red);
}
.section-title-block .section-eyebrow { padding-left: 0; }
.section-title-block .section-eyebrow::before {
    position: relative; left: auto; top: auto; transform: none;
    display: block; margin: 0 auto 12px;
    width: 40px;
}
.section-title-block { text-align: center; margin-bottom: 50px; }
.section-title-block p { max-width: 720px; margin: 12px auto 0; color: var(--icca-grey); font-size: 1.05rem; }

.bg-cream { background: var(--icca-off-white); }
.bg-grey { background: var(--icca-light-grey); }
.bg-dark { background: var(--icca-black); color: var(--icca-white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--icca-white); }
.bg-dark .section-eyebrow { color: var(--icca-white); }
.bg-dark .section-eyebrow::before { background: var(--icca-red); }

/* ============================================
   Cards
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: var(--icca-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

.card-image {
    height: 240px;
    background-size: cover; background-position: center;
    position: relative;
}
.card-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--icca-black); color: var(--icca-white);
    padding: 6px 14px; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; border-radius: 0;
}
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { color: var(--icca-black); margin-bottom: 10px; }
.card-body p { color: var(--icca-grey); margin-bottom: 18px; flex: 1; font-size: 14.5px; }
.card-meta { font-size: 13px; color: var(--icca-grey); margin-bottom: 14px; }
.card-meta strong { color: var(--icca-black); }
.card-link {
    color: var(--icca-black); font-weight: 700;
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    margin-top: auto;
    border-bottom: 1px solid var(--icca-black);
    padding-bottom: 4px; display: inline-block; width: fit-content;
}
.card-link:hover { color: var(--icca-red); border-color: var(--icca-red); }
.card-link::after { content: ' \2192'; transition: margin-left .25s ease; }
.card-link:hover::after { margin-left: 6px; }

/* ============================================
   Feature Grid
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
}
.feature {
    text-align: center;
    padding: 30px 20px;
}
.feature-icon {
    width: 72px; height: 72px;
    background: var(--icca-black);
    color: var(--icca-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 700;
    margin: 0 auto 22px;
    font-family: var(--font-heading);
    border: 1px solid var(--icca-black);
    transition: all .3s ease;
}
.feature:hover .feature-icon {
    background: var(--icca-white); color: var(--icca-black);
}
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { color: var(--icca-grey); font-size: 14.5px; }

/* ============================================
   Two Column
   ============================================ */
.two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.two-col-image {
    border-radius: 6px; overflow: hidden;
    height: 460px; background-size: cover; background-position: center;
    box-shadow: var(--shadow-medium);
}
.two-col-content h2 { margin-bottom: 1rem; }
.two-col-content ul { list-style: none; margin-top: 18px; }
.two-col-content ul li {
    padding-left: 30px; position: relative;
    margin-bottom: 12px; color: var(--icca-charcoal);
}
.two-col-content ul li::before {
    content: '\2014';
    position: absolute; left: 0; top: 0;
    width: 20px; height: 22px;
    color: var(--icca-black);
    display: flex; align-items: center; justify-content: flex-start;
    font-size: 14px; font-weight: 700;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: var(--icca-black);
    color: var(--icca-white);
    text-align: center;
    padding: 90px 0;
    position: relative;
}
.cta-banner::before {
    content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--icca-red);
}
.cta-banner h2 { color: var(--icca-white); margin-bottom: 16px; font-weight: 400; }
.cta-banner h2 em { font-style: italic; font-weight: 700; }
.cta-banner p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 30px; opacity: .85; }
.cta-banner .btn-outline { border-color: var(--icca-white); color: var(--icca-white); }
.cta-banner .btn-outline:hover { background: var(--icca-white); color: var(--icca-black); }

/* ============================================
   Testimonials
   ============================================ */
.testimonial {
    background: var(--icca-white);
    padding: 38px;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    border-top: 2px solid var(--icca-black);
    position: relative;
}
.testimonial::before {
    content: '\201C';
    position: absolute; top: 12px; right: 26px;
    font-family: var(--font-heading); font-size: 90px;
    color: var(--icca-light-grey); line-height: 1;
    z-index: 0;
}
.testimonial-quote {
    font-family: var(--font-heading);
    font-style: italic; font-size: 1.05rem;
    color: var(--icca-charcoal); margin-bottom: 22px;
    line-height: 1.7; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.testimonial-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--icca-black); color: var(--icca-white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    letter-spacing: 1px;
}
.testimonial-author strong { display: block; color: var(--icca-black); }
.testimonial-author span { font-size: 13px; color: var(--icca-grey); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--icca-black);
    color: #cfcfcf;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-grid h4 {
    color: var(--icca-white);
    font-family: var(--font-body); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 14px; margin-bottom: 18px;
}
.footer-grid p, .footer-grid a { color: #b0b0b0; font-size: 14px; }
.footer-grid a:hover { color: var(--icca-gold); }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }

.footer-brand .logo-mark { background: var(--icca-red); }
.footer-brand .logo-text strong { color: var(--icca-white); }
.footer-brand p { margin-top: 16px; max-width: 360px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--icca-white); font-size: 14px; font-weight: 700;
}
.footer-social a:hover { background: var(--icca-red); color: var(--icca-white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    font-size: 13px;
    color: #888;
}
.footer-bottom a { color: #b0b0b0; }
.footer-bottom a:hover { color: var(--icca-gold); }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    background: var(--icca-white);
    border-radius: 5px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.faq-q {
    padding: 20px 26px;
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700; color: var(--icca-black);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; color: var(--icca-black); font-size: 28px; font-weight: 300; }
.faq-item.open .faq-q::after { content: '\2013'; }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 26px;
}
.faq-item.open .faq-a {
    max-height: 600px; padding: 0 26px 22px;
}
.faq-a p { color: var(--icca-grey); }

/* ============================================
   Tables (curriculum, fees)
   ============================================ */
.data-table {
    width: 100%; border-collapse: collapse;
    background: var(--icca-white);
    border-radius: 6px; overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.data-table th {
    background: var(--icca-black); color: var(--icca-white);
    text-align: left; padding: 18px 22px;
    text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700;
}
.data-table td {
    padding: 16px 22px;
    border-bottom: 1px solid var(--icca-border);
    font-size: 14.5px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--icca-off-white); }

/* ============================================
   Form
   ============================================ */
.contact-form {
    background: var(--icca-white);
    padding: 44px;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
    border-top: 3px solid var(--icca-black);
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; margin-bottom: 6px;
    font-weight: 600; font-size: 14px;
    color: var(--icca-charcoal);
}
.form-control {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #ddd; border-radius: 3px;
    font-family: var(--font-body); font-size: 15px;
    transition: border-color .25s ease;
}
.form-control:focus { outline: none; border-color: var(--icca-red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ============================================
   Video Embeds
   ============================================ */
.video-hero {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.video-hero iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.video-card {
    background: var(--icca-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.video-card .video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.video-card .video-embed iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: none;
}
.video-card-body { padding: 18px 22px; }
.video-card-body h4 { margin-bottom: 4px; font-size: 1.05rem; }
.video-card-body p { font-size: 13.5px; color: var(--icca-grey); margin: 0; }

.video-grid.shorts {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.video-grid.shorts .video-embed { padding-top: 177.78%; /* 9:16 */ }

/* ============================================
   The 5 Ps
   ============================================ */
.five-ps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 30px;
}
.five-p {
    text-align: center;
    padding: 32px 18px;
    background: var(--icca-white);
    border-top: 2px solid var(--icca-black);
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}
.five-p:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.five-p .p-letter {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--icca-black);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.five-p strong { display: block; font-family: var(--font-heading); color: var(--icca-black); margin-bottom: 4px; }
.five-p span { font-size: 13px; color: var(--icca-grey); }

/* ============================================
   Stats Strip
   ============================================ */
.stats-strip {
    background: var(--icca-black);
    color: var(--icca-white);
    padding: 60px 0;
    border-top: 1px solid var(--icca-black);
    border-bottom: 1px solid var(--icca-black);
}
.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.stats-strip-item {
    padding: 0 14px;
}
.stats-strip-item + .stats-strip-item {
    border-left: 1px solid rgba(255,255,255,0.12);
}
.stats-strip-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--icca-white);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.stats-strip-item span {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
@media (max-width: 700px) {
    .stats-strip-item + .stats-strip-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 30px; }
}

/* ============================================
   Pill / Eyebrow accents
   ============================================ */
.icca-pill {
    display: inline-block;
    background: transparent;
    color: var(--icca-black);
    padding: 6px 0;
    border: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}
.icca-pill::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 26px; height: 1px; background: var(--icca-red);
}
.section-title-block .icca-pill { padding-left: 0; }
.section-title-block .icca-pill::before {
    position: relative; left: auto; top: auto; transform: none;
    display: block; margin: 0 auto 12px; width: 40px;
}

/* ============================================
   Fee Schedule
   ============================================ */
.fee-schedule {
    background: var(--icca-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border-top: 2px solid var(--icca-black);
}
.fee-schedule .data-table { box-shadow: none; }
.fee-schedule .total-row td {
    background: var(--icca-black) !important;
    color: var(--icca-white);
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.gold { color: var(--icca-gold); }
.red { color: var(--icca-red); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--icca-white); box-shadow: var(--shadow-medium); padding: 14px 0; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 24px; border-bottom: 1px solid #f0f0f0; }
    .main-nav .btn-apply { margin: 14px 24px; text-align: center; }
    .menu-toggle { display: flex; }
    .nav-dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 16px; border: none; }
    .two-col { grid-template-columns: 1fr; gap: 30px; }
    .two-col-image { height: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 600px) {
    section { padding: 56px 0; }
    .hero { padding: 70px 0 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .top-strip .container { justify-content: center; text-align: center; }
    .contact-form { padding: 26px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}
