/* ═══ PHONE PERFECT RESPONSIVE - BULLETPROOF ═══ */
:root {
    --gold: #c89f5f;
    --navy: #00234b;
    --whatsapp: #25D366;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-600: #4b5563;
    --shadow: 0 8px 32px rgba(0,0,0,0.1);
    --radius: 16px;
}

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body { 
    font-family: system-ui, sans-serif; 
    line-height: 1.6; 
    color: #1f2937;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* MOBILE FIRST CONTAINER */
.container { 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* SECTIONS - MOBILE OPTIMIZED */
.hero-section { 
    background: linear-gradient(135deg, var(--navy), #001a38);
    color: white;
    text-align: center;
    padding: 60px 0 40px;
}

section:not(.hero-section) { 
    padding: 50px 0; 
}
section:nth-child(even) { background: var(--gray-100); }

/* PERFECT MOBILE TYPOGRAPHY */
.hero-title { 
    font-size: clamp(1.75rem, 10vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 8px;
}
.section-title {
    font-size: clamp(1.25rem, 8vw, 2.25rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
    padding: 0 8px;
}
.hero-subtitle, .section-subtitle {
    font-size: clamp(0.95rem, 5vw, 1.125rem);
    opacity: 0.9;
    margin: 0 auto 2rem;
    padding: 0 12px;
    max-width: 100%;
}
.highlight { color: var(--gold); }

/* MOBILE CARDS - TOUCH FRIENDLY */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
}

/* LEADERSHIP - PHONE PERFECT */
.leadership-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}
.leadership-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .leadership-img { width: 180px; height: 180px; }
}
.leadership-content {
    flex: 1;
    text-align: center;
    width: 100%;
}
.lead-text {
    font-size: clamp(1rem, 4vw, 1.125rem);
    color: var(--navy);
    font-weight: 500;
    margin: 0.75rem 0;
}
.bio-text {
    color: var(--gray-600);
    font-size: clamp(0.875rem, 3vw, 1rem);
    margin-bottom: 1.5rem;
    padding: 0 8px;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
@media (min-width: 768px) {
    .direct-contact { flex-direction: row; gap: 16px; }
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
    min-height: 64px;
}
.contact-item i {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* MOBILE GRID - 1 COLUMN ONLY */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
@media (min-width: 640px) {
    .options-grid { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1024px) {
    .options-grid { 
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.option-card i {
    font-size: clamp(2.25rem, 12vw, 3rem);
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.option-card h3 {
    font-size: clamp(1.125rem, 6vw, 1.375rem);
    color: var(--navy);
    margin-bottom: 6px;
}
.option-card .lead {
    font-size: clamp(1rem, 4vw, 1.125rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.option-card p {
    font-size: clamp(0.875rem, 3.5vw, 0.95rem);
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* WHATSAPP COLORS */
.whatsapp-card i, .whatsapp-btn i { color: var(--whatsapp) !important; }
.whatsapp-btn {
    background: var(--whatsapp) !important;
    color: white !important;
    border: 2px solid var(--whatsapp);
}
.whatsapp-btn:hover { background: #128C7E !important; }

/* HOURS GRID - MOBILE FIRST */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
@media (min-width: 640px) {
    .hours-grid { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* PERFECT MOBILE BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(14px, 4vw, 16px) 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 3vw, 1rem);
    min-height: 48px;
    transition: all 0.3s ease;
    white-space: nowrap;
    justify-content: center;
}
.btn-primary:hover { transform: translateY(-2px); }

/* MOBILE SPECIFIC FIXES */
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    section:not(.hero-section) { padding: 40px 0; }
    .hero-section { padding: 50px 0 30px; }
    .card { padding: 24px 16px; margin-bottom: 20px; }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
    section:not(.hero-section) { padding: 60px 0; }
    .hero-section { padding: 80px 0 60px; }
}

/* DESKTOP */
@media (min-width: 1024px) {
    section:not(.hero-section) { padding: 80px 0; }
    .hero-section { padding: 100px 0 80px; }
    .container { padding: 0 24px; }
}

/* PREVENT HORIZONTAL SCROLL */
@media (max-width: 768px) {
    body { padding-bottom: 20px; }
}

/* SMOOTH */
html { scroll-behavior: smooth; }
