/* ===== VARIABLES ===== */
:root {
    --primary: #001D5F;
    --primary-dark: #001440;
    --accent: #D4AF37;
    --success: #10B981;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --gray: #6B7280;
    --dark: #1F2937;
    --cream: #F5F1E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SHARED STYLES ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 6px 16px;
    background: rgba(212,175,55,0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Lora', serif;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 29, 95, 0.70);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb-custom a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-custom a:hover { 
    opacity: 0.8; 
}

.breadcrumb-custom span {
    color: rgba(255,255,255,0.8);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    font-family: 'Lora', serif;
}

.hero h1 .word {
    display: inline-block;
    animation: fadeInUp 0.8s ease backwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.5s; }



.hero-tagline {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ===== QUICK STATS BAR ===== */
.quick-stats-bar {
    background: var(--primary);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    border-right: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.stat-bar-item:last-child {
    border-right: none;
}

.stat-bar-item:hover {
    background: var(--cream);
}

.stat-bar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #C5A028);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-bar-content {
    display: flex;
    flex-direction: column;
}

.stat-bar-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-bar-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== FOUNDER STORY ===== */
.founder-story-section {
    padding: 100px 0;
    background: var(--white);
}

.founder-story-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.founders-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.founder-card-compact {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    transition: all 0.3s;
}

.founder-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

.founder-photo-compact {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.founder-photo-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.founder-card-compact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.founder-card-compact p {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* Story Side */
.story-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-quote {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, #FAFAF8 100%);
    border-left: 4px solid var(--accent);
    padding: 40px 40px 40px 50px;
    border-radius: 12px;
}

.story-quote i {
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
}

.story-quote p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.story-quote strong {
    color: var(--primary);
    font-weight: 600;
}

.quote-author {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--primary);
    font-weight: 600;
}

/* Timeline Horizontal */
.timeline-horizontal {
    display: flex;
    gap: 30px;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding-top: 30px;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E5E7EB;
    z-index: -1;
}

.timeline-item:first-child::before {
    left: 50%;
}

.timeline-item:last-child::before {
    right: 50%;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin: 15px 0 10px;
}

.timeline-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== VISION & MISSION ===== */
.vision-mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,29,95,0.08);
    transition: all 0.3s;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,29,95,0.12);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--white);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Lora', serif;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list li i {
    color: var(--success);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--light);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(212,175,55,0.15);
    background: var(--white);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #C5A028);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== LEADERSHIP ===== */
.leadership-section {
    padding: 100px 0;
    background: var(--light);
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,29,95,0.08);
    transition: all 0.3s;
    border: 1px solid #E5E7EB;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,29,95,0.12);
    border-color: var(--accent);
}

.leader-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--light);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.4s;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.05);
}

.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.placeholder i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.7;
}

.leader-info {
    padding: 25px 20px;
    text-align: center;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.leader-position {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Team Section */
.team-section-inner {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #E5E7EB;
}

.team-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.team-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--accent);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== TRUST & CERTIFIED ===== */
.trust-certified-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.trust-certified-section .section-badge {
    color: var(--accent);
    background: rgba(212,175,55,0.15);
}

.trust-certified-section .section-title {
    color: var(--white);
}

.trust-certified-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

/* PPIU License Card */
.ppiu-license-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ppiu-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #C5A028);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ppiu-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.ppiu-content {
    flex: 1;
}

.ppiu-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.ppiu-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ppiu-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ppiu-detail-item .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ppiu-detail-item .value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

/* Legal Grid */
.legal-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card-compact {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.legal-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.legal-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    padding: 15px;
}

.legal-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.legal-card-compact h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.legal-card-compact p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ===== BRANCHES ===== */
.branches {
    padding: 100px 0;
    background: var(--light);
}

.branch-cards-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
}

.branch-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--light);
}

.branch-cards-container::-webkit-scrollbar {
    height: 6px;
}

.branch-cards-container::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

.branch-cards-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.branch-card {
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,29,95,0.08);
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: var(--success);
    box-shadow: 0 8px 25px rgba(0,29,95,0.12);
}

.branch-card.main {
    background: linear-gradient(135deg, var(--accent) 0%, #C5A028 100%);
    color: var(--white);
}

.branch-card.main:hover {
    border-color: var(--accent);
}

.branch-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.branch-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(16,185,129,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.branch-card.main .branch-card-icon {
    background: rgba(255,255,255,0.2);
}

.branch-card-icon i {
    font-size: 1.5rem;
    color: var(--success);
}

.branch-card.main .branch-card-icon i {
    color: var(--white);
}

.branch-card-title h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.branch-card.main .branch-card-title h4 {
    color: var(--white);
}

.branch-card-title p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

.branch-card.main .branch-card-title p {
    color: rgba(255,255,255,0.9);
}

.branch-card-body {
    padding-top: 12px;
    border-top: 1px solid #E5E7EB;
}

.branch-card.main .branch-card-body {
    border-top-color: rgba(255,255,255,0.2);
}

.branch-card-address {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    display: flex;
    gap: 8px;
}

.branch-card.main .branch-card-address {
    color: rgba(255,255,255,0.95);
}

.branch-card-address i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-card.main .branch-card-address i {
    color: var(--white);
}

.branch-badge-card {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.branch-card.main .branch-badge-card {
    background: rgba(255,255,255,0.3);
}

.map-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,29,95,0.1);
    height: 70vh;
    min-height: 500px;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

/* ===== CTA ABOUT ===== */
.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #FAFAF8 100%);
}

.cta-content-about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #C5A028);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.cta-content-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Lora', serif;
}

.cta-content-about p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons-about {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-outline-cta {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary-cta {
    background: linear-gradient(135deg, var(--success) 0%, #0D9488 100%);
    color: var(--white);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16,185,129,0.3);
    color: var(--white);
}

.btn-outline-cta {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-bar-item:nth-child(2) {
        border-right: none;
    }
    
    .founder-story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founders-side {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ppiu-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Navbar Z-Index Fix */
    .hero-content {
        position: relative;
        z-index: 1; /* Lower z-index so navbar (1000) can win */
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .quick-stats-bar {
        margin-top: -30px;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    
    .stat-bar-item {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        padding: 20px;
    }
    
    .stat-bar-item:last-child {
        border-bottom: none;
    }
    
    .founders-side {
        flex-direction: column;
        align-items: center;
    }
    
    /* FIX TIMELINE OVERFLOW */
    .timeline-horizontal {
        flex-direction: column;
        gap: 0;
        border-left: 2px solid #E5E7EB;
        margin-left: 20px;
        padding-left: 0;
    }
    
    .timeline-item {
        text-align: left;
        padding-left: 30px;
        padding-top: 0;
        padding-bottom: 30px;
        border: none;
    }

    .timeline-item::before { display: none; }

    .timeline-marker {
        left: -9px; /* Align with border-left */
        top: 0;
        transform: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .ppiu-license-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }
    
    .ppiu-icon {
        margin: 0 auto;
    }
    
    .legal-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content-about h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-about {
        flex-direction: column;
    }
    
    .btn-primary-cta,
    .btn-outline-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Vision Mission Fix */
    .vision-card, .mission-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .founder-photo-compact {
        width: 120px;
        height: 120px;
    }
    
    .story-quote {
        padding: 25px 20px 25px 30px;
    }
    
    .story-quote p {
        font-size: 1rem;
    }
}

/* ========== PPIU BUTTON & MODAL ========== */
.btn-view-ppiu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-view-ppiu:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.ppiu-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ppiu-modal.active {
    display: flex;
}

.ppiu-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    animation: ppiuModalZoom 0.3s ease;
}



.ppiu-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: #F3F4F6;
    color: #374151;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.ppiu-modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.ppiu-modal-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppiu-modal-content h4 i {
    color: var(--accent);
}

.ppiu-modal-image {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.ppiu-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-download-ppiu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--success), #0D9488);
    color: white;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-download-ppiu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

@media (max-width: 576px) {
    .ppiu-modal-content {
        padding: 20px;
    }
    
    .ppiu-modal-content h4 {
        font-size: 1.1rem;
    }
}
