/* ===== Section Label ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* ===== About ===== */
.about-section {
    background: white;
    padding: 80px 24px;
    border-bottom: 1px solid var(--border);
}

.about-inner { max-width: 1200px; margin: 0 auto; }

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 16px;
}

.about-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 2;
}

.branches-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branches-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.branch-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    border-right: 3px solid var(--gold);
    transition: all 0.2s;
}

.branch-card:hover {
    background: var(--gold-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.branch-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.branch-name::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.branch-address {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.6;
    padding-right: 14px;
}

/* Contact Strip */
.contact-strip {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-strip-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(200,169,110,0.3);
}

.contact-strip-label {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-strip-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.contact-strip-phone {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    direction: ltr;
    display: inline-block;
}

.contact-strip-hours {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #152a47 0%, #1e3a5f 60%, #1a4a6e 100%);
    padding: 50px 24px;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-left: none; }
.stat-value { font-size: 36px; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 1px; }

/* Events */
.events-section { background: var(--bg); padding: 80px 24px; }
.events-inner   { max-width: 1200px; margin: 0 auto; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.section-sub   { font-size: 13px; color: var(--text-light); }

.btn-more {
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: Tahoma, Arial, sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-more:hover { background: var(--navy); color: white; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.event-card {
    background: white;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--border);
    border-right: 4px solid var(--navy);
    transition: all 0.2s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26,39,68,0.1);
    border-right-color: var(--gold);
}

.event-date {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--navy);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date .day   { font-size: 20px; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 10px; font-weight: 600; color: var(--gold); margin-top: 2px; }

.event-info { flex: 1; }

.event-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.4; }
.event-desc  { font-size: 12px; color: var(--text-light); line-height: 1.7; }

/* Who We Are */
.who-section { background: white; padding: 90px 24px; border-top: 1px solid var(--border); }
.who-inner   { max-width: 1200px; margin: 0 auto; }

.who-header { text-align: center; margin-bottom: 70px; }

.who-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 8px;
}

.who-items { display: flex; flex-direction: column; gap: 80px; }

.who-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-item.reverse         { direction: ltr; }
.who-item.reverse .who-item-text { direction: rtl; }
.who-item.reverse .who-item-img  { direction: rtl; }

.who-item-num {
    font-size: 60px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: -10px;
}

.who-item-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.who-item-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 2.2;
    margin-top: 14px;
}

.who-item-img { position: relative; }

.who-img-main {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(26,39,68,0.15);
}

.who-item-img::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--gold);
    border-radius: 12px;
    z-index: 0;
    animation: borderPulse 3s ease-in-out infinite;
}

.who-item.reverse .who-item-img::before { right: auto; left: -16px; }

.who-item-img::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 40%;
    height: 40%;
    background: var(--navy);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.08;
    animation: floatBox 4s ease-in-out infinite;
}

.who-item.reverse .who-item-img::after { left: auto; right: -16px; }

.who-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--navy);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    z-index: 2;
    border: 2px solid var(--gold);
}

.who-item.reverse .who-img-badge { right: auto; left: 20px; }

.who-img-badge .badge-val { font-size: 20px; font-weight: 800; color: var(--gold); line-height: 1; }
.who-img-badge .badge-lbl { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 2px; }

@keyframes borderPulse {
    0%, 100% { transform: translate(0,0); opacity: 1; }
    50%       { transform: translate(4px,-4px); opacity: 0.7; }
}

@keyframes floatBox {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    50%       { transform: translate(-5px,5px) rotate(3deg); }
}

/* Responsive */
@media (max-width: 960px) {
    .about-top  { grid-template-columns: 1fr; gap: 32px; }
    .who-item, .who-item.reverse { grid-template-columns: 1fr; direction: rtl; gap: 30px; }
    .who-item.reverse .who-item-img::before { right: -12px; left: auto; }
    .who-item.reverse .who-item-img::after  { left: -12px; right: auto; }
    .who-item.reverse .who-img-badge { right: 20px; left: auto; }
}

@media (max-width: 768px) {
    .events-grid  { grid-template-columns: 1fr; }
    .stats-inner  { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-left: none; }
}

@media (max-width: 640px) {
    .contact-strip { flex-direction: column; text-align: center; }
    .contact-strip-phone { font-size: 20px; }
    .branches-grid { grid-template-columns: 1fr; }
    .who-img-main  { height: 220px; }
    .who-item-num  { font-size: 40px; }
}