/* =========================================================
   SECTION-4000
   FILE: branch.css
   PURPOSE: Branch page specific styling
   THEME: Light Backgrounds | Premium Teal Cards | Gold Highlights
========================================================= */

/* =========================================================
   SECTION-4100
   BRANCH MAIN CONTAINER
========================================================= */

.branch-main {
    background: #F7F2E8;
    overflow: hidden;
}

/* =========================================================
   SECTION-4200
   SECTION HEADERS - REUSABLE
========================================================= */

.branch-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.branch-section-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.branch-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.branch-section-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6B6B6B;
    max-width: 550px;
    margin: 0 auto;
}

/* =========================================================
   SECTION-4201-00
   HERO - COMPACT, PREMIUM, DARK
========================================================= */

.branch-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #073B36, #0A4A45);
    padding: 4.5rem 0 3.5rem 0;
    overflow: hidden;
}

.branch-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(7, 59, 54, 0.3) 0%, rgba(10, 74, 69, 0.92) 100%);
    z-index: 1;
}

.branch-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    transform: translateY(-20px);
}

.branch-hero-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #D4AF37;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.12);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 1.25rem;
}

.branch-hero-badge i {
    margin: 0 0.5rem;
    font-size: 0.5rem;
    color: #D4AF37;
}

.branch-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.branch-hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.branch-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.branch-hero-divider span {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.branch-hero-divider i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.branch-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

.branch-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.branch-hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.branch-hero-wave path {
    fill: #F7F2E8;
}

/* =========================================================
   SECTION-4201-01
   STATS - PREMIUM TEAL CARDS
========================================================= */

.branch-stats {
    padding: 4rem 0;
    background: #F7F2E8;
}

.branch-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.branch-stat-card {
    text-align: center;
    padding: 2.75rem 1.75rem;
    background: linear-gradient(145deg, #0F635C, #0A5550);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 46, 42, 0.08);
}

.branch-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.branch-stat-card:hover::before {
    opacity: 1;
}

.branch-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 46, 42, 0.15);
    border-color: rgba(212, 175, 55, 0.15);
}

.branch-stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: #D4AF37;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.branch-stat-card:hover .branch-stat-icon {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.branch-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.branch-stat-number span {
    font-size: 1.75rem;
    color: #D4AF37;
}

.branch-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   SECTION-4201-02
   BRANCH INFO - MAIN BRANCH OFFICE
========================================================= */

.branch-info {
    padding: 4rem 0;
    background: #FAF8F3;
}

.branch-info-card {
    background: linear-gradient(145deg, #0C5A54, #084C47);
    border-radius: 28px;
    padding: 4rem 4rem 3.5rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(10, 46, 42, 0.08);
    transition: all 0.4s ease;
}

.branch-info-card:hover {
    border-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 30px 70px rgba(10, 46, 42, 0.12);
}

.branch-info-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.branch-info-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.branch-info-header h2 i {
    color: #D4AF37;
    margin-right: 0.75rem;
}

.branch-info-header p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.branch-info-header p i {
    color: #D4AF37;
    margin-right: 0.4rem;
}

.branch-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.branch-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.branch-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.1);
}

.branch-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.branch-info-icon i {
    font-size: 1.1rem;
    color: #D4AF37;
}

.branch-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.branch-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.branch-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
    word-break: break-word;
    line-height: 1.3;
}

.branch-info-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.branch-info-address:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.1);
}

.branch-info-address-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.branch-info-address-icon i {
    font-size: 1.1rem;
    color: #D4AF37;
}

.branch-info-address-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.branch-info-address-text .branch-info-label {
    color: rgba(255, 255, 255, 0.4);
}

.branch-info-address-text .branch-info-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

/* =========================================================
   SECTION-4201-03
   CONSULTANCY - PREMIUM
========================================================= */

.branch-consultancy {
    padding: 4rem 0;
    background: #F7F2E8;
}

.branch-consultancy-card {
    background: linear-gradient(145deg, #14736A, #0F635C);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(10, 46, 42, 0.06);
    transition: all 0.4s ease;
}

.branch-consultancy-card:hover {
    border-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 30px 70px rgba(10, 46, 42, 0.1);
}

.branch-consultancy .branch-section-header h2 {
    color: #D4AF37;
}

.branch-consultancy .branch-section-header p {
    color: rgba(255, 255, 255, 0.5);
}

.branch-consultancy .branch-section-badge {
    border-color: rgba(212, 175, 55, 0.1);
}

.branch-consultancy-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.branch-consultancy-select {
    margin-bottom: 1.25rem;
}

.branch-select-container {
    position: relative;
    width: 100%;
}

.branch-select-field {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    color: #FFFFFF;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.branch-select-field:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
}

.branch-select-field option {
    background: #0F635C;
    color: #FFFFFF;
}

.branch-select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.85rem;
}

.branch-consultancy-fee {
    margin-bottom: 1.5rem;
}

.branch-fee-display {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.06);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.branch-fee-display.active {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.08);
}

.branch-fee-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.15rem;
}

.branch-fee-display p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.branch-consultancy-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.branch-consultancy-notice {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border-left: 3px solid #D4AF37;
}

.branch-notice-icon {
    color: #D4AF37;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.branch-notice-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.branch-notice-text strong {
    color: #FFFFFF;
}

/* =========================================================
   SECTION-4201-04
   MEMBERSHIP PACKAGES
========================================================= */

.branch-packages {
    padding: 4rem 0;
    background: #FAF8F3;
}

.branch-packages .branch-section-header h2 {
    color: #1E1E1E;
}

.branch-packages .branch-section-header p {
    color: #6B6B6B;
}

.branch-packages .branch-section-badge {
    border-color: rgba(212, 175, 55, 0.1);
}

.branch-packages-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.branch-package-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.branch-package-row:last-child {
    margin-bottom: 0;
}

.branch-package-card {
    background: linear-gradient(145deg, #084B48, #063F3C);
    border-radius: 20px;
    padding: 2.75rem 1.75rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(10, 46, 42, 0.06);
    min-height: 420px;
}

.branch-package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.12);
    box-shadow: 0 20px 50px rgba(10, 46, 42, 0.12);
}

.branch-package-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.branch-package-card:hover .branch-package-glow {
    opacity: 1;
}

.branch-package-featured {
    border-color: #D4AF37;
    background: linear-gradient(145deg, #0F635C, #0A5550);
    box-shadow: 0 8px 40px rgba(10, 46, 42, 0.1);
}

.branch-package-featured .branch-package-glow {
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, #D4AF37, transparent);
    opacity: 1;
}

.branch-package-featured:hover {
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(10, 46, 42, 0.15);
}

.branch-package-featured-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #D4AF37;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.branch-package-category {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
}

.branch-package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.branch-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    text-align: left;
    flex: 1;
}

.branch-package-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.45rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.branch-package-features li i {
    color: #D4AF37;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.branch-package-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: auto;
    flex-wrap: wrap;
}

.branch-package-actions .branch-btn-small {
    min-width: 130px;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.branch-package-actions .branch-btn-outline {
    background: #000000;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.branch-package-actions .branch-btn-outline:hover {
    background: #1a1a1a;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.branch-package-actions .branch-btn-filled {
    background: linear-gradient(135deg, #D4AF37, #C49A2A);
    color: #0A2E2A;
    border: 1.5px solid #D4AF37;
}

.branch-package-actions .branch-btn-filled:hover {
    background: linear-gradient(135deg, #E0C04A, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    color: #0A2E2A;
}

/* =========================================================
   SECTION-4201-05
   WHY CHOOSE US
========================================================= */

.branch-features {
    padding: 4rem 0;
    background: #F7F2E8;
}

.branch-features .branch-section-header h2 {
    color: #1E1E1E;
}

.branch-features .branch-section-header p {
    color: #6B6B6B;
}

.branch-features .branch-section-badge {
    border-color: rgba(212, 175, 55, 0.1);
}

.branch-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.branch-feature-card {
    background: linear-gradient(145deg, #0A5550, #084845);
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(10, 46, 42, 0.06);
}

.branch-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.12);
    box-shadow: 0 20px 50px rgba(10, 46, 42, 0.12);
}

.branch-feature-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    font-size: 2.4rem;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.06);
    transition: all 0.3s ease;
}

.branch-feature-card:hover .branch-feature-icon {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.08);
}

.branch-feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.6rem;
}

.branch-feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* =========================================================
   SECTION-4201-06
   CTA SECTION
========================================================= */

.branch-cta {
    padding: 4rem 0;
    background: #FAF8F3;
}

.branch-cta-card {
    background: linear-gradient(145deg, #14736A, #0F635C);
    border-radius: 28px;
    padding: 5rem 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(10, 46, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.branch-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.branch-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.branch-cta-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.branch-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* =========================================================
   SECTION-4201-07
   LOCATION SECTION
========================================================= */

.branch-location {
    padding: 4rem 0;
    background: #F7F2E8;
}

.branch-location-card {
    background: linear-gradient(145deg, #0C5A54, #084C47);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(10, 46, 42, 0.06);
    transition: all 0.4s ease;
}

.branch-location-card:hover {
    border-color: rgba(212, 175, 55, 0.08);
    box-shadow: 0 30px 70px rgba(10, 46, 42, 0.1);
}

.branch-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.branch-location-map {
    min-height: 420px;
    background: #0A4A48;
    overflow: hidden;
}

.branch-map-container {
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
}

.branch-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}

.branch-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: #0A4A48;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.branch-map-placeholder i {
    font-size: 3rem;
    color: #D4AF37;
    opacity: 0.15;
}

.branch-location-info {
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branch-location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.branch-location-info h3 i {
    color: #D4AF37;
    margin-right: 0.6rem;
}

.branch-location-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.branch-location-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.06);
    padding: 0.6rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.06);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-rating-stars {
    color: #fbbc04;
    font-size: 0.85rem;
}

.branch-rating-stars i {
    margin-right: 0.05rem;
}

.branch-rating-score {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #D4AF37;
}

.branch-rating-reviews {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.branch-google-icon {
    color: #4285f4;
    font-size: 1.1rem;
    margin-left: auto;
}

.branch-location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-btn-center {
    margin: 0 auto;
}

/* =========================================================
   SECTION-4201-08
   BUTTONS - BRANCH SPECIFIC
========================================================= */

.branch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.branch-btn i {
    font-size: 1rem;
}

.branch-btn-gold {
    background: linear-gradient(135deg, #D4AF37, #C49A2A);
    color: #0A2E2A;
}

.branch-btn-gold:hover {
    background: linear-gradient(135deg, #E0C04A, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    color: #0A2E2A;
}

.branch-btn-green {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
}

.branch-btn-green:hover {
    background: linear-gradient(135deg, #30e374, #159c8a);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    color: #FFFFFF;
}

.branch-btn-outline-gold {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.branch-btn-outline-gold:hover {
    background: #D4AF37;
    color: #0A2E2A;
    transform: translateY(-3px);
}

.branch-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 130px;
}

.branch-btn-outline {
    background: #000000;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.branch-btn-outline:hover {
    background: #1a1a1a;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.branch-btn-filled {
    background: linear-gradient(135deg, #D4AF37, #C49A2A);
    color: #0A2E2A;
    border: 1.5px solid #D4AF37;
}

.branch-btn-filled:hover {
    background: linear-gradient(135deg, #E0C04A, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    color: #0A2E2A;
}

/* =========================================================
   SECTION-4201-09
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .branch-package-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branch-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branch-location-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-location-map {
        min-height: 350px;
    }
    
    .branch-map-container {
        min-height: 350px;
    }
    
    .branch-map {
        min-height: 350px;
    }
    
    .branch-map-placeholder {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .branch-hero {
        min-height: 45vh;
        padding: 3.5rem 0 2.5rem 0;
    }
    
    .branch-hero-content {
        transform: translateY(0);
    }
    
    .branch-hero-title {
        font-size: 2.5rem;
    }
    
    .branch-hero-tagline {
        font-size: 1rem;
    }
    
    .branch-hero-description {
        font-size: 0.85rem;
    }
    
    .branch-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .branch-stats {
        padding: 3.5rem 0;
    }
    
    .branch-stat-card {
        padding: 2rem 1rem;
    }
    
    .branch-stat-number {
        font-size: 2.25rem;
    }
    
    .branch-info {
        padding: 3.5rem 0;
    }
    
    .branch-info-card {
        padding: 2rem 1.5rem;
    }
    
    .branch-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .branch-consultancy {
        padding: 3.5rem 0;
    }
    
    .branch-consultancy-card {
        padding: 2rem 1.5rem;
    }
    
    .branch-packages {
        padding: 3.5rem 0;
    }
    
    .branch-package-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .branch-package-card {
        min-height: 360px;
    }
    
    .branch-features {
        padding: 3.5rem 0;
    }
    
    .branch-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .branch-cta {
        padding: 3.5rem 0;
    }
    
    .branch-cta-card {
        padding: 2.5rem 1.75rem;
    }
    
    .branch-cta-card h2 {
        font-size: 1.75rem;
    }
    
    .branch-location {
        padding: 3.5rem 0;
    }
    
    .branch-location-info {
        padding: 2rem 1.5rem;
    }
    
    .branch-location-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-location-actions .branch-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .branch-consultancy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-consultancy-actions .branch-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .branch-section-header {
        margin-bottom: 2rem;
    }
    
    .branch-section-header h2 {
        font-size: 2rem;
    }
    
    .branch-feature-card {
        padding: 2rem 1.25rem;
    }
    
    .branch-hero-divider span {
        width: 30px;
    }
    
    .branch-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-cta-actions .branch-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .branch-location-info h3 {
        font-size: 1.3rem;
    }
    
    .branch-fee-display {
        padding: 1.5rem;
    }
    
    .branch-fee-amount {
        font-size: 2.25rem;
    }
    
    .branch-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .branch-package-actions .branch-btn-small {
        min-width: 110px;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .branch-location-map {
        min-height: 280px;
    }
    
    .branch-map-container {
        min-height: 280px;
    }
    
    .branch-map {
        min-height: 280px;
    }
    
    .branch-map-placeholder {
        min-height: 280px;
    }
    
    .branch-location-rating {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .branch-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .branch-stat-card {
        padding: 1.5rem 0.75rem;
    }
    
    .branch-stat-number {
        font-size: 1.75rem;
    }
    
    .branch-stat-number span {
        font-size: 1.25rem;
    }
    
    .branch-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .branch-stat-label {
        font-size: 0.7rem;
    }
    
    .branch-location-rating {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .branch-google-icon {
        margin-left: 0;
    }
    
    .branch-info-header h2 {
        font-size: 1.6rem;
    }
    
    .branch-hero-title {
        font-size: 2rem;
    }
    
    .branch-consultancy-card {
        padding: 1.25rem;
    }
    
    .branch-info-card {
        padding: 1.25rem;
    }
    
    .branch-location-info {
        padding: 1.25rem;
    }
    
    .branch-cta-card {
        padding: 1.75rem 1.25rem;
    }
    
    .branch-cta-card h2 {
        font-size: 1.4rem;
    }
    
    .branch-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .branch-package-features li {
        font-size: 0.8rem;
    }
    
    .branch-section-header h2 {
        font-size: 1.6rem;
    }
    
    .branch-package-card {
        min-height: 320px;
        padding: 1.75rem 1.25rem;
    }
    
    .branch-package-actions .branch-btn-small {
        min-width: 100px;
        font-size: 0.65rem;
        padding: 0.45rem 0.8rem;
    }
    
    .branch-location-map {
        min-height: 220px;
    }
    
    .branch-map-container {
        min-height: 220px;
    }
    
    .branch-map {
        min-height: 220px;
    }
    
    .branch-map-placeholder {
        min-height: 220px;
    }
}

/* =========================================================
   SECTION-4900
   END OF BRANCH CSS
========================================================= */