/* =============================================
   PREP4ENGLISH — DESIGN SYSTEM
   Color palette inspired by logo: Navy + Red
   ============================================= */

   :root {
    --p4e-navy:       #1a2e5a;
    --p4e-navy-dark:  #0f1d3a;
    --p4e-navy-light: #243870;
    --p4e-red:        #c0202a;
    --p4e-red-light:  #e8333e;
    --p4e-red-dark:   #9a1820;
    --p4e-gold:       #f5a623;
    --p4e-light:      #f4f7fc;
    --p4e-white:      #ffffff;
    --p4e-text:       #1e2d4e;
    --p4e-muted:      #6b7a99;
    --p4e-border:     #dde3ef;

    --font-display: 'Playfair Display', serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  36px;

    --shadow-card: 0 4px 24px rgba(26,46,90,0.08);
    --shadow-hover: 0 12px 40px rgba(26,46,90,0.16);
    --shadow-btn:  0 4px 16px rgba(192,32,42,0.3);
}

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--p4e-text);
    background: var(--p4e-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
}

/* ========== NAVBAR ========== */
.p4e-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--p4e-border);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.p4e-navbar.scrolled {
    box-shadow: 0 4px 32px rgba(26,46,90,0.12);
}

.brand-wordmark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--p4e-navy);
    letter-spacing: -0.5px;
}
.brand-accent { color: var(--p4e-red); }

.logo-img { border-radius: 4px; }

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--p4e-navy) !important;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    letter-spacing: 0.01em;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--p4e-red) !important;
    background: rgba(192,32,42,0.06);
}

/* Hamburger */
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger-icon span {
    display: block;
    height: 2px;
    background: var(--p4e-navy);
    border-radius: 2px;
    transition: 0.3s;
}

/* Dropdown */
.p4e-dropdown {
    border: 1px solid var(--p4e-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem;
    animation: dropIn 0.2s ease;
}
.p4e-dropdown .dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    color: var(--p4e-text);
    transition: all 0.15s;
}
.p4e-dropdown .dropdown-item:hover {
    background: var(--p4e-light);
    color: var(--p4e-navy);
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== BUTTONS ========== */
.btn-p4e-primary {
    background: var(--p4e-red);
    color: var(--p4e-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.65rem 1.5rem;
    box-shadow: var(--shadow-btn);
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}
.btn-p4e-primary:hover {
    background: var(--p4e-red-light);
    color: var(--p4e-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192,32,42,0.4);
}

.btn-p4e-outline {
    background: transparent;
    color: var(--p4e-white);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.65rem 1.5rem;
    transition: all 0.25s ease;
}
.btn-p4e-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-p4e-navy {
    background: var(--p4e-navy);
    color: var(--p4e-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.65rem 1.5rem;
    transition: all 0.25s ease;
}
.btn-p4e-navy:hover {
    background: var(--p4e-navy-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,46,90,0.3);
}

/* ========== HERO ========== */
.hero-section {
    background: linear-gradient(135deg, var(--p4e-navy-dark) 0%, var(--p4e-navy) 50%, #1d3a6e 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,32,42,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
    bottom: 0; left: 10%;
    pointer-events: none;
}

.hero-right-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=85');
    background-size: cover;
    background-position: center top;
    pointer-events: none;
    /* Fade into the navy background on the left and bottom */
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.9) 55%, black 100%),
        linear-gradient(to top, transparent 0%, black 18%);
    mask-image:
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.9) 55%, black 100%),
        linear-gradient(to top, transparent 0%, black 18%);
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
    /* Subtle navy tint overlay */
    mix-blend-mode: normal;
    opacity: 0.22;
    filter: saturate(0.6) brightness(1.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--p4e-gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--p4e-white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}
.hero-title .highlight {
    color: var(--p4e-gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.75;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-item { text-align: left; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--p4e-white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Hero Card */
.hero-card-container { position: relative; }
.hero-main-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.hero-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--p4e-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}
.hero-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0;
}
.hero-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.course-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 3px;
    transition: all 0.2s;
}
.course-chip:hover {
    background: var(--p4e-red);
    border-color: var(--p4e-red);
    color: white;
}

.floating-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: absolute;
    min-width: 170px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}
.floating-card-1 { top: -24px; right: -24px; animation-delay: 0s; z-index: 10; }
.floating-card-2 { bottom: -20px; left: -24px; animation-delay: 2s; z-index: 10; }
.floating-card-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.floating-card p { margin: 0; font-size: 0.75rem; }
.floating-card strong { font-size: 0.85rem; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ========== SECTION STYLES ========== */
.section { padding: 90px 0; }
.section-light { background: var(--p4e-light); }
.section-navy { background: var(--p4e-navy); }
.section-white { background: var(--p4e-white); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p4e-red);
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--p4e-red);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--p4e-navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.section-title.light { color: white; }

.section-desc {
    font-size: 1.05rem;
    color: var(--p4e-muted);
    max-width: 560px;
    line-height: 1.75;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

/* ========== COURSE CARDS ========== */
.course-card {
    background: var(--p4e-white);
    border: 1px solid var(--p4e-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--p4e-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.course-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.course-card:hover::before { transform: scaleX(1); }

.course-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--p4e-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--p4e-red);
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.course-card:hover .course-icon {
    background: var(--p4e-red);
    color: white;
}

.course-card h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--p4e-navy);
    margin-bottom: 0.5rem;
}
.course-card p {
    font-size: 0.875rem;
    color: var(--p4e-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.course-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
    background: var(--p4e-light);
    color: var(--p4e-navy);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========== FEATURES / WHY US ========== */
.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.feature-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--p4e-red), var(--p4e-red-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 16px rgba(192,32,42,0.25);
}
.feature-text h6 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--p4e-navy);
    margin-bottom: 0.3rem;
}
.feature-text p {
    font-size: 0.875rem;
    color: var(--p4e-muted);
    margin: 0;
    line-height: 1.6;
}

/* ========== PROCESS STEPS ========== */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--p4e-red) 0%, var(--p4e-border) 100%);
    border-radius: 2px;
}
.process-step:last-child::after { display: none; }

.step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--p4e-white);
    border: 3px solid var(--p4e-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--p4e-navy);
    margin: 0 auto 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.process-step:hover .step-number {
    background: var(--p4e-red);
    border-color: var(--p4e-red);
    color: white;
    transform: scale(1.1);
}
.process-step h6 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--p4e-navy);
    margin-bottom: 0.4rem;
}
.process-step p {
    font-size: 0.82rem;
    color: var(--p4e-muted);
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: var(--p4e-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--p4e-border);
    height: 100%;
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.stars { color: var(--p4e-gold); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-quote {
    font-size: 0.925rem;
    color: var(--p4e-text);
    line-height: 1.75;
    margin: 1rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--p4e-border);
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--p4e-navy);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}
.author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--p4e-navy);
    margin: 0;
}
.author-meta {
    font-size: 0.78rem;
    color: var(--p4e-muted);
    margin: 0;
}

/* ========== STAT COUNTERS ========== */
.stat-counter-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-counter-card:last-child { border-right: none; }

.stat-counter-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-counter-number span { color: var(--p4e-gold); }
.stat-counter-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.04em;
}
.stat-counter-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ========== AI SECTION ========== */
.ai-feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.ai-feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.ai-feature-card .ai-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}
.ai-feature-card h6 {
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.ai-feature-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--p4e-red-dark) 0%, var(--p4e-red) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* ========== FOOTER ========== */
.p4e-footer { background: var(--p4e-navy-dark); }

.footer-top { padding: 70px 0 50px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}
.footer-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--p4e-gold);
    margin: 0;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.footer-contact-list i { color: var(--p4e-red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: white; }

.social-links { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.social-btn:hover {
    background: var(--p4e-red);
    border-color: var(--p4e-red);
    color: white;
    transform: translateY(-2px);
}

.footer-input {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: white !important;
    border-radius: 50px !important;
}
.footer-input::placeholder { color: rgba(255,255,255,0.4) !important; }
.footer-input:focus {
    background: rgba(255,255,255,0.12) !important;
    box-shadow: 0 0 0 3px rgba(192,32,42,0.3) !important;
}

/* ========== CONTACT PAGE ========== */
.contact-form-card {
    background: var(--p4e-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--p4e-border);
}

.form-control, .form-select {
    border: 1.5px solid var(--p4e-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--p4e-text);
    transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--p4e-navy);
    box-shadow: 0 0 0 3px rgba(26,46,90,0.1);
}
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--p4e-navy);
    margin-bottom: 0.4rem;
}

.contact-info-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--p4e-light);
    margin-bottom: 1rem;
    transition: all 0.2s;
}
.contact-info-item:hover { background: rgba(192,32,42,0.05); }
.contact-info-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--p4e-red);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--p4e-navy-dark), var(--p4e-navy));
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { background: none; padding: 0; margin-bottom: 1rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ========== ABOUT PAGE ========== */
.about-image-block { position: relative; }
.about-image-block img {
    border-radius: var(--radius-xl);
    width: 100%;
    object-fit: cover;
}
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--p4e-red);
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(192,32,42,0.35);
}
.about-image-badge .badge-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

/* ========== UTILITIES ========== */
.text-red { color: var(--p4e-red) !important; }
.text-navy { color: var(--p4e-navy) !important; }
.text-gold { color: var(--p4e-gold) !important; }
.bg-navy { background: var(--p4e-navy) !important; }
.bg-red { background: var(--p4e-red) !important; }

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-section { padding: 120px 0 60px; min-height: auto; }
    .process-step::after { display: none; }
    .stat-counter-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .about-image-badge { right: 0; }
}

@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .hero-stats { gap: 1.5rem; }
    .floating-card-1, .floating-card-2 { display: none; }
    .contact-form-card { padding: 1.5rem; }
}