/* ====================
   BASE & VARIABLES
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8901E;
    --navy: #0A1C2F;
    --navy-light: #1C3A5C;
    --white: #FFFFFF;
    --offwhite: #F8F6F2;
    --black: #111111;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 32px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================
   TOP BAR
==================== */
.top-bar {
    background: var(--navy);
    color: #B0C4DE;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-info span {
    margin-right: 24px;
}
.contact-info i {
    color: var(--gold);
    margin-right: 6px;
}

.social-links a {
    color: #B0C4DE;
    margin-left: 16px;
    transition: var(--transition);
}
.social-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ====================
   HEADER
==================== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-placeholder {
    width: 55px;
    height: 55px;
    background: #F0EAD6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.logo-text h1 .logo-sub {
    font-size: 0.70em;  /* smaller than main "MOK" */
    font-weight: 600;   /* optional: slightly lighter */
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.main-nav .nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
    font-size: 0.95rem;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--gold);
}

.donate-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700 !important;
    transition: var(--transition);
}

.donate-btn:hover {
    background: var(--gold-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

/* ====================
   HERO SLIDESHOW
==================== */
.hero-slideshow {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    background: var(--navy);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,28,47,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 550px;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline, .btn-emergency {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: white;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
}

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ====================
   VIDEO SECTION
==================== */
.video-section {
    padding: 80px 0;
    background: var(--offwhite);
}

.video-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-text {
    flex: 1;
    padding: 48px;
}

.gold-accent {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.video-text h2 {
    font-size: 2.2rem;
    margin: 16px 0 20px;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.quote {
    margin-top: 24px;
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    color: var(--gray);
}

.video-wrapper {
    flex: 1;
    min-height: 350px;
    background: #1a1a2e;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f, #0a1c2f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-height: 350px;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 16px;
    transition: var(--transition);
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: var(--gold-dark);
}

/* ====================
   FOCUS SECTION
==================== */
.focus-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: var(--gold-dark);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.section-sub {
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.focus-card {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-align: center;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.focus-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.focus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.focus-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
    color: var(--gold-dark);
}

/* ====================
   PROJECT SECTION
==================== */
.project-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E9ECF3 100%);
}

.project-card {
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    box-shadow: var(--shadow-md);
    border-left: 8px solid var(--gold);
}

.project-content {
    flex: 2;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.project-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.progress-container {
    margin: 24px 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
}

.progress-bar {
    background: var(--gray-light);
    border-radius: 40px;
    height: 10px;
    overflow: hidden;
}

.progress-fill {
    background: var(--gold);
    height: 100%;
    border-radius: 40px;
    transition: width 0.5s ease;
}

.project-stats {
    flex: 1;
    background: var(--offwhite);
    border-radius: 24px;
    padding: 28px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--navy);
}

.stat i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ====================
   EMERGENCY SECTION
==================== */
.emergency-section {
    padding: 60px 0;
    background: var(--navy);
}

.emergency-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #C4450C, #A33A08);
    border-radius: 28px;
    padding: 32px 40px;
    color: white;
}

.emergency-icon i {
    font-size: 3rem;
}

.emergency-text h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.btn-emergency {
    background: white;
    color: #C4450C;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ====================
   HOW IT WORKS
==================== */
.howitworks-section {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy);
}

/* ====================
   STORIES SECTION
==================== */
.stories-section {
    padding: 80px 0;
    background: var(--offwhite);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.story-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 24px;
}

.story-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy);
}

/* ====================
   FOOTER
==================== */
footer {
    background: var(--navy);
    color: #B0C4DE;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3, .footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #B0C4DE;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.newsletter form {
    display: flex;
    margin-top: 12px;
    gap: 8px;
}

.newsletter input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 40px;
    border: none;
    background: #1E3A5F;
    color: white;
}

.newsletter button {
    background: var(--gold);
    border: none;
    width: 40px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1E3A5F;
    font-size: 0.85rem;
}

/* ====================
   RESPONSIVE
==================== */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--gray-light);
    }
    .main-nav .nav-list.show {
        display: flex;
    }
    .hero-slideshow {
        height: 70vh;
        min-height: 450px;
    }
    .slide-content h2 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        text-align: center;
    }
    .video-card {
        flex-direction: column;
    }
    .video-text {
        padding: 32px;
    }
    .project-card {
        padding: 28px;
    }
    .emergency-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Subpage Hero */
.subpage-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.subpage-hero h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}
.subpage-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-mission {
    padding: 70px 0;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.mission-card {
    background: var(--offwhite);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
}
.mission-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.founder-story {
    padding: 70px 0;
    background: var(--offwhite);
}
.story-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}
.story-text { flex: 1; }
.story-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
}
.detailed-focus {
    padding: 70px 0;
}
.detailed-focus.alt-bg {
    background: var(--offwhite);
}
.focus-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}
.focus-detail.reverse {
    flex-direction: row-reverse;
}
.focus-icon-large i {
    font-size: 4rem;
    color: var(--gold);
}
.focus-detail-text { flex: 2; }
.focus-detail-text ul {
    margin: 20px 0;
    list-style: none;
}
.focus-detail-text ul li {
    margin-bottom: 12px;
}
.focus-detail-text ul li i {
    color: var(--gold);
    margin-right: 10px;
}
.operating-model {
    background: var(--navy);
    color: white;
    padding: 70px 0;
    text-align: center;
}
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Apply Form */
.apply-form-section {
    padding: 70px 0;
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
}
.required { color: #e74c3c; }
.checkbox label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-note { margin-top: 20px; font-size: 0.85rem; color: var(--gray); }

/* Contact Page */
.contact-section {
    padding: 70px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}
.info-card {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--offwhite);
    border-radius: 20px;
}
.info-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.map-section {
    padding-bottom: 70px;
}
.map-placeholder {
    background: var(--gray-light);
    height: 300px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* Donation Page */
.donation-section {
    padding: 70px 0;
}
.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
}
.donation-form-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.amount-presets { margin-bottom: 20px; }
.preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.preset-buttons button {
    background: var(--offwhite);
    border: 1px solid var(--gray-light);
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.preset-buttons button:hover {
    background: var(--gold);
    color: var(--navy);
}
.btn-large {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}
.secure-badge {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
}
.current-campaign, .impact-box, .transparency-box {
    background: var(--offwhite);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
}
.campaign-card {
    margin-top: 16px;
}

/* Blog Grid */
.blog-grid-page, .stories-grid-page {
    padding: 70px 0;
}
.blog-grid, .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.blog-card, .story-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover, .story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-image, .story-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.blog-content, .story-content {
    padding: 24px;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}
/* ====================
   FOUNDER STORY (ENHANCED)
==================== */
.founder-story {
    padding: 80px 0;
    background: var(--offwhite);
}

.founder-story .story-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.founder-story .story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.founder-story .story-text {
    flex: 1;
    min-width: 280px;
}

.founder-story .story-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin: 12px 0 16px;
    font-family: 'Playfair Display', serif;
}

.founder-story .story-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.founder-story .gold-accent {
    display: inline-block;
    margin-bottom: 8px;
}

.founder-story .story-image {
    flex: 1;
    min-height: 360px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* subtle overlay for depth */
.founder-story .story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,28,47,0.3));
    border-radius: 24px;
}

/* ====================
   RESPONSIVE
==================== */
@media (max-width: 992px) {
    .founder-story .story-card {
        flex-direction: column;
        padding: 32px;
    }

    .founder-story .story-image {
        width: 100%;
        height: 300px;
    }

    .founder-story .story-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .founder-story {
        padding: 60px 0;
    }

    .founder-story .story-card {
        padding: 24px;
        gap: 24px;
    }

    .founder-story .story-text h2 {
        font-size: 1.6rem;
    }

    .founder-story .story-text p {
        font-size: 0.95rem;
    }
}

/* ====================
   CONTACT FORM
==================== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

/* Form Layout */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--gray-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--offwhite);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* Textarea */
.contact-form textarea {
    resize: none;
}

/* Button */
.contact-form button {
    margin-top: 10px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Icon animation */
.contact-form button i {
    transition: var(--transition);
}

.contact-form button:hover i {
    transform: translateX(4px);
}

/* ====================
   RESPONSIVE
==================== */
@media (max-width: 768px) {
    .contact-form {
        padding: 28px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 24px;
    }

    .contact-form h3 {
        font-size: 1.4rem;
    }
}