/* ===== Typography Overrides ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2 !important;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    font-weight: 700 !important;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
    font-weight: 600 !important;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
    font-weight: 700 !important;
}

.footer h4 {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
}

p {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

.hero-decoration {
    display: none;
}

.help-icon {
    width: 100px;
    height: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 50%, rgba(20,94,47,0.65) 100%);
}

/* ===== Section Backgrounds ===== */
#team {
    background: #ffffff;
}

.team-content {
    background: url('../images/green bg seko.png') center/cover no-repeat;
}

#comprehensive {
    background: url('../images/green bg seko.png') center/cover no-repeat;
}

#reviews {
    background: url('../images/green bg seko.png') center/cover no-repeat;
}

/* ===== Info Bar ===== */
.info-bar {
    background: url('../images/green bg seko.png') center/cover no-repeat;
    position: relative;
    padding: 48px 0;
}

.info-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,40,18,0.93) 0%, rgba(27,122,61,0.88) 60%, rgba(13,51,24,0.93) 100%);
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 1;
}

.info-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.info-bar-item:hover {
    background: rgba(255,255,255,0.06);
}

.info-bar-item:hover .info-bar-icon {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.28);
}

.info-bar-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.info-bar-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.info-bar-icon img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.info-bar-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.55);
}

.info-bar-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-bar-text strong {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.info-bar-text span {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .info-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .info-bar-item:nth-child(3) {
        border-right: none;
    }
    .info-bar-item:nth-child(4),
    .info-bar-item:nth-child(5) {
        border-top: 1px solid rgba(255,255,255,0.15);
    }
}

@media (max-width: 600px) {
    .info-bar {
        padding: 32px 0;
    }
    .info-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-bar-item {
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    .info-bar-item:nth-child(1),
    .info-bar-item:nth-child(2) {
        border-top: none;
    }
    .info-bar-item:nth-child(even) {
        border-right: none;
    }
}

/* ===== Branches Section ===== */
.branches-section {
    background: #F7F9F4;
    position: relative;
    overflow: hidden;
}

.branches-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #C5CEC3 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

.branches-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.branches-grid .branch-card {
    flex: 0 0 calc(33.333% - 16px);
}

.branch-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border: 1px solid #E2E8E0;
    transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.1);
    border-color: #1B7A3D;
}

.branch-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1B7A3D;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(27,122,61,0.35);
}

.branch-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #145E2F, #23994D);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(27,122,61,0.25);
    flex-shrink: 0;
}

.branch-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.branch-card h3 {
    font-size: 1.05rem !important;
    color: #1A231A;
    font-weight: 700 !important;
    margin: 0;
    line-height: 1.3 !important;
}

.branch-area {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1A5276;
    background: rgba(26,82,118,0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

.branch-directions {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: #1B7A3D;
    border: 2px solid #1B7A3D;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    margin-top: auto;
    font-family: var(--font);
    text-decoration: none;
}

.branch-directions svg {
    width: 14px;
    height: 14px;
    transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.branch-directions:hover {
    background: #1B7A3D;
    color: #fff;
    transform: translateY(-2px);
}

.branch-directions:hover svg {
    transform: translateX(3px);
}

.branch-detail {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .branches-grid .branch-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .branches-grid .branch-card {
        flex: 0 0 100%;
    }
}
