/* === style.css - MASTER STYLESHEET for Statice Health === */
/* This file contains all global styles for all pages */

/* --------------------------------------------
   1. RESET & GLOBAL BASE
-------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fbfbfd;
    color: #1a2a3a;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* accent color utilities */
.accent-text {
    color: #99dcd6;
}

.accent-border {
    border-color: #0c3a51;
}

.accent-bg-light {
    background-color: #f9ecf3;
}

/* primary button style */
.btn-accent {
    background: #123f5d;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-accent:hover {
    background: #99dcd6;
    box-shadow: 0 8px 16px -8px rgba(50, 231, 255, 0.4);
    transform: translateY(-2px);
}

/* --------------------------------------------
   2. NAVIGATION (unified for all pages)
-------------------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    color: #003153;
    z-index: 110;
}

.logo img {
    width: 70px;
    display: block;
}

.logo span {
    color: #99dcd6;
    font-weight: 400;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 1rem;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #99dcd6;
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: #99dcd6;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a.active {
    color: #99dcd6;
}

.desktop-nav a.active::after {
    width: 100%;
}

.desktop-join {
    border: 1.5px solid #99dcd6;
    background: transparent;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #99dcd6;
    cursor: pointer;
    transition: all 0.2s;
}

.desktop-join:hover {
    background: #99dcd6;
    color: white;
    transform: scale(1.05);
}

/* === HAMBURGER - Clean, transforms to X === */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
    padding: 0;
    position: relative;
    outline: none;
}

/* Three lines - default state */
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #003153;
    border-radius: 2px;
    position: absolute;
    left: 8px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 12px;
}

.hamburger span:nth-child(2) {
    top: 19px;
}

.hamburger span:nth-child(3) {
    top: 26px;
}

/* X shape - active state */
.hamburger.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
    background: #99dcd6;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
    background: #99dcd6;
}

/* Ensure hamburger is visible on mobile */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .desktop-nav {
        display: none;
    }
}

/* === MOBILE MENU - Clean, no icons === */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a2a3a;
    transition: all 0.2s ease;
    padding: 14px 20px;
    border-radius: 12px;
    position: relative;
    display: block;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #99dcd6;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
}

.mobile-menu a:hover {
    background: #f9f0f5;
    color: #99dcd6;
    padding-left: 28px;
}

.mobile-menu a:hover::before {
    transform: translateX(0);
}

.mobile-menu a.active {
    background: #f9f0f5;
    color: #99dcd6;
    font-weight: 600;
    padding-left: 28px;
}

.mobile-menu a.active::before {
    transform: translateX(0);
}

.mobile-join {
    margin-top: 24px;
    background: #0c3a51;
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.mobile-join:hover {
    background: #99dcd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -8px rgba(178, 32, 118, 0.4);
}

/* === OVERLAY === */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .desktop-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 85%;
        padding: 80px 24px 32px;
    }

    .mobile-menu a {
        font-size: 1.2rem;
        padding: 12px 16px;
    }

    .mobile-join {
        padding: 14px;
        font-size: 1rem;
    }
}

/* --------------------------------------------
   3. ANIMATIONS (fade-up)
-------------------------------------------- */
.fade-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.appeared {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------
   4. HOMEPAGE STYLES
-------------------------------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 60px 32px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 400px;
}

.hero-left h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #003153;
    margin: 20px 0 24px;
}

.hero-left .accent-highlight {
    color: #b22076;
}

.hero-right {
    flex: 1 1 360px;
    background: #f8fafc;
    border-radius: 48px;
    padding: 36px 28px;
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eaeef2;
    transition: transform 0.3s;
}

.hero-right:hover {
    transform: translateY(-5px);
}

.spotlight-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f5f7fa;
    border-radius: 60px;
    padding: 56px;
    margin: 40px 0;
    align-items: center;
}

.spotlight-left h2 {
    font-size: 2.5rem;
    color: #003153;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.spotlight-left .stat-badge {
    background: white;
    padding: 8px 20px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    color: #b22076;
    border: 1px solid #ffe2f0;
}

.spotlight-right {
    background: white;
    border-radius: 48px;
    padding: 36px;
    box-shadow: 0 15px 30px -15px rgba(178, 32, 118, 0.1);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.metric-item:hover .metric-icon {
    transform: scale(1.1);
}

.metric-icon {
    width: 56px;
    height: 56px;
    background: #f9ecf3;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b22076;
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.metric-text h4 {
    font-size: 1.3rem;
    color: #003153;
}

.metric-text p {
    color: #4a5f73;
}

/* PILLARS (think/feel/act) */
.pillars {
    display: flex;
    gap: 30px;

    margin: 70px auto;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    /* Slightly less than container to ensure centering */
    width: 100%;
    padding: 0 20px;
}

/* Override container behavior specifically for pillars */
.container.pillars {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.pillar {

    background: white;
    padding: 40px 28px;
    border-radius: 36px;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

/* For extra large screens, add this media query */
@media (min-width: 1920px) {
    .pillars {
        max-width: 1400px;
        /* Wider on very large screens */
        margin: 70px auto;
        justify-content: center;
    }

    .pillar {
        flex: 0 1 350px;
        /* Slightly larger pillars on big screens */
    }
}


.pillar:hover {
    border-bottom-color: #99dcd6;
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(32, 178, 156, 0.15);
}

.pillar .code {
    color: #99dcd6;
    font-weight: 600;
    margin-bottom: 16px;
}

.pillar h3 {
    font-size: 2rem;
    color: #003153;
}

.quote-block {
    background: #f5f7fa;
    border-radius: 48px;
    padding: 60px 48px;
    margin: 60px 0;
    border-left: 6px solid #99dcd6;
    transition: transform 0.3s;
}

.quote-block:hover {
    transform: translateX(10px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.member {
    background: white;
    border-radius: 28px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px -8px rgba(0, 0, 0, 0.03);
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -12px rgba(178, 32, 118, 0.15);
}

.member .avatar {
    background: #f2e6ed;
    color: #003153;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.member:hover .avatar {
    transform: scale(1.05);
}

.member .avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0 1px;
}

.member.view-more-card {
    background: #f5f0f5;
    border: 2px dashed #b22076;
    cursor: pointer;
}

.view-more-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.view-more-link .avatar {
    background: #b22076;
    color: white;
}

.view-more-link h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003153;
}

.impact-section {
    background: #f6f6f6;
    color: #003153;
    border-radius: 64px;
    padding: 64px 48px;
    margin: 80px 0;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    text-align: center;
}

.impact-number {
    font-size: 4rem;
    font-weight: 700;
    color: #99dcd6;
    transition: transform 0.3s;
}

.impact-item:hover .impact-number {
    transform: scale(1.1);
}

/* --------------------------------------------
   5. ABOUT PAGE STYLES
-------------------------------------------- */
.about-hero {
    padding: 80px 32px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #003153;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-hero h1 span {
    color: #99dcd6;
    display: block;
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-code {
    color: #b22076;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: inline-block;
    border-left: 4px solid #b22076;
    padding-left: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003153;
    margin-bottom: 32px;
}

.mission-block {
    background: #f5f7fa;
    border-radius: 60px;
    padding: 64px;
    margin: 40px 0;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 900px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.goal-card {
    background: white;
    border-radius: 36px;
    padding: 40px 28px;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.goal-card:hover {
    border-bottom-color: #99dcd6;
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(32, 178, 149, 0.15);
}

.goal-card i {
    font-size: 2.5rem;
    color: #296a83;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.goal-card:hover i {
    transform: scale(1.1);
}

.goal-card p {
    font-size: 1.2rem;
    color: #1a2a3a;
}

.student-quote {
    background: white;
    border-radius: 60px;
    padding: 64px;
    margin: 60px 0;
    border-left: 8px solid #99dcd6;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.student-quote:hover {
    transform: translateX(10px);
}

.student-quote h2 {
    font-size: 3rem;
    color: #003153;
    margin-bottom: 24px;
}

.student-quote p {
    font-size: 1.5rem;
    color: #3a4e62;
    font-weight: 300;
}

.stats-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    background: #ffffff;
    border-radius: 80px;
    padding: 64px 48px;
    margin: 60px 0;
    color: #9a1d62;
}

.stat-item {
    text-align: center;
    flex: 1 1 160px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #b22076;
    line-height: 1.2;
    transition: transform 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.world-section {
    background: #f5f7fa;
    border-radius: 60px;
    padding: 64px;
    margin: 60px 0;
}

.world-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.world-content {
    flex: 1 1 300px;
}

.world-content h3 {
    font-size: 2.2rem;
    color: #003153;
    margin-bottom: 24px;
}

.world-content p {
    font-size: 1.2rem;
    color: #3a4e62;
    margin-bottom: 32px;
}

.world-map-icon {
    flex: 1 1 300px;
    background: linear-gradient(135deg, #296a83 0%, #99dcd6 100%);
    border-radius: 48px;
    padding: 48px;
    text-align: center;
    font-size: 8rem;
    color: white;
    box-shadow: 0 20px 30px -12px rgba(32, 163, 178, 0.3);
    transition: transform 0.3s;
}

.world-map-icon:hover {
    transform: scale(1.02);
}

.world-map-icon i {
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.programs-header {
    text-align: center;
    margin: 80px 0 40px;
}

.programs-header .section-code {
    border-left: none;
    padding-left: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.program-card {
    background: white;
    border-radius: 48px;
    padding: 48px 32px;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.program-card:hover {
    background: #fcf0f7;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 35px -15px rgba(178, 32, 118, 0.2);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: #f9ecf3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: #b22076;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.program-card:hover .program-icon {
    background: #b22076;
    color: white;
    transform: rotate(5deg);
}

.program-card h3 {
    font-size: 2rem;
    color: #003153;
    margin-bottom: 16px;
}

.program-card p {
    color: #4a5f73;
    font-size: 1.1rem;
}

.contact-simple {
    background: white;
    border-radius: 48px;
    padding: 56px 48px;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    margin: 60px 0;
    border: 1px solid #f0f0f0;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.2rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: #b22076;
    width: 40px;
    transition: transform 0.3s;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item a {
    color: initial;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #546e7a;
    border-top: 1px solid #eceff1;
}

/* --------------------------------------------
   6. RESPONSIVE DESIGN (all screens)
-------------------------------------------- */
/* Large Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .spotlight-modern {
        padding: 40px;
    }

    .mission-block {
        padding: 48px;
    }
}

/* Medium Tablets */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .spotlight-modern {
        grid-template-columns: 1fr;
    }

    .mission-block {
        padding: 40px;
    }

    .student-quote {
        padding: 48px;
    }

    .student-quote h2 {
        font-size: 2.5rem;
    }

    .student-quote p {
        font-size: 1.3rem;
    }

    .world-section {
        padding: 48px;
    }

    .world-map-icon {
        font-size: 6rem;
    }

    .stats-banner {
        padding: 48px 32px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .pillars {
        gap: 20px;
    }

    .pillar {
        flex: 0 1 100%;
    }

    .pillar h3 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-banner {
        flex-direction: column;
        gap: 30px;
        padding: 48px 32px;
    }

    .stat-item {
        width: 100%;
    }

    .world-flex {
        flex-direction: column;
        text-align: center;
    }

    .world-content {
        text-align: center;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile Phones */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 2px 20px;
    }

    .hero {
        padding: 40px 20px;
        flex-direction: column;
    }

    .logo img {
        width: 60px;
    }

    .metric-item {
        flex-wrap: wrap;
    }

    .container.pillars {
        display: grid;
        grid-template-columns: 100%;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .spotlight-modern {
        padding: 28px;
    }

    .spotlight-left h2 {
        font-size: 1.8rem;
    }

    .pillar h3 {
        font-size: 1.5rem;
    }

    .pillar {
        padding: 30px 20px;
    }

    .quote-block {
        padding: 40px 28px;
    }

    .quote-block span {
        font-size: 1.4rem !important;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .impact-section {
        padding: 48px 24px;
    }

    .impact-number {
        font-size: 3rem;
    }

    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .mission-block {
        padding: 32px;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .goal-card {
        padding: 32px 24px;
    }

    .student-quote {
        padding: 40px 24px;
    }

    .student-quote h2 {
        font-size: 2rem;
    }

    .student-quote p {
        font-size: 1.2rem;
    }

    .stats-banner {
        padding: 40px 24px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        padding: 40px 28px;
    }

    .program-card h3 {
        font-size: 1.8rem;
    }

    .world-section {
        padding: 40px 24px;
    }

    .world-map-icon {
        display: none;
        font-size: 4rem;
        padding: 32px;
    }

    .contact-simple {
        padding: 40px 28px;
    }

    .contact-item {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .mobile-menu {
        width: 90%;
        padding: 80px 20px;
    }

    .mobile-menu a {
        font-size: 1.2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* === BRANCHES PAGE SPECIFIC STYLES === */

/* Hero Section */
.branches-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 32px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.branches-hero-left {
    flex: 1 1 500px;
}

.branches-hero-left .pre-title {
    color: #b22076;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.branches-hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #003153;
    line-height: 1.2;
    margin-bottom: 24px;
}

.branches-hero-left p {
    font-size: 1.1rem;
    color: #3a4e62;
    line-height: 1.7;
    margin-bottom: 32px;
}

.branches-hero-left .btn-primary {
    background: #b22076;
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.branches-hero-left .btn-primary:hover {
    background: #9a1d62;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(178, 32, 118, 0.4);
}

.branches-hero-right {
    flex: 1 1 400px;
}

.branches-hero-right video {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.3);
}

/* Impact Section */
.impact-showcase {
    background: #f5f7fa;
    border-radius: 80px;
    padding: 80px 56px;
    margin: 60px auto;
    max-width: 1280px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.impact-content .section-code {
    color: #b22076;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;

}

.impact-content h2 {
    font-size: 2.8rem;
    color: #003153;
    margin-bottom: 24px;
}

.impact-content p {
    font-size: 1.1rem;
    color: #3a4e62;
    line-height: 1.7;
}

.impact-content p span {
    color: #b22076;
    font-weight: 600;
    margin-right: 8px;
}

.impact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.impact-image {
    border-radius: 30px;
    overflow: hidden;
    height: 280px;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.impact-image:hover img {
    transform: scale(1.05);
}

.impact-image:first-child {
    grid-row: span 2;
    height: 580px;
}

/* Why Start Section */
.why-start {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
    align-items: center;
}

.why-start-content .section-code {
    color: #b22076;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.why-start-content h2 {
    font-size: 2.8rem;
    color: #003153;
    margin-bottom: 24px;
}

.why-start-content p {
    font-size: 1.1rem;
    color: #3a4e62;
    line-height: 1.7;
    margin-bottom: 32px;
}

.quarterly-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 12px 24px;
    border-radius: 60px;
    text-decoration: none;
    color: #b22076;
    font-weight: 600;
    border: 1px solid #ffe2f0;
    transition: all 0.3s;
}

.quarterly-link:hover {
    background: #b22076;
    color: white;
    gap: 20px;
}

.quarterly-link i {
    transition: transform 0.3s;
}

.quarterly-link:hover i {
    transform: translateX(5px);
}

.why-start-image {
    border-radius: 40px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
}

.why-start-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, #0b253a 0%, #1e3a5a 100%);
    border-radius: 80px;
    padding: 80px 56px;
    max-width: 1280px;
    margin: 80px auto;
    color: white;
}

.thank-you-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.thank-you-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.thank-you-header h2 span {
    color: #ffb3d9;
}

.thank-you-header p {
    font-size: 1.2rem;
    color: #d1e0eb;
    line-height: 1.6;
}

.branch-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-image {
    border-radius: 30px;
    overflow: hidden;
    height: 200px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

/* Branch Quote Section Styles */
.branch-quote-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 60px;
    padding: 60px;
    margin: 60px auto;
    max-width: 1280px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeef2;
}

.quote-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.quote-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #b22076 0%, #d47aa0 100%);
    border-radius: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    box-shadow: 0 20px 30px -10px rgba(178, 32, 118, 0.3);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.quote-content {
    flex: 2 1 500px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #b2207620;
    margin-bottom: 20px;
}

.quote-content blockquote {
    font-size: 1.6rem;
    font-weight: 400;
    color: #003153;
    line-height: 1.5;
    margin-bottom: 30px;
    quotes: none;
}

.quote-author {
    padding-left: 24px;
}

.quote-author strong {
    display: block;
    font-size: 1.4rem;
    color: #b22076;
    margin-bottom: 6px;
}

.quote-author span {
    color: #4a5f73;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .branch-quote-section {
        padding: 40px;
    }

    .quote-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

    .quote-content blockquote {
        font-size: 1.3rem;
    }

    .quote-author {
        border-left: none;
        border-top: 4px solid #b22076;
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .branch-quote-section {
        padding: 30px 20px;
    }

    .image-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .quote-content blockquote {
        font-size: 1.1rem;
    }

    .quote-author strong {
        font-size: 1.2rem;
    }
}


/* Responsive */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-images {
        order: -1;
    }

    .why-start {
        grid-template-columns: 1fr;
    }

    .why-start-image {
        order: -1;
    }

    .branch-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 768px) {

    .branches-hero {
        flex-direction: column;
    }

    .impact-showcase {
        padding: 48px 32px;
    }

    .impact-images {
        grid-template-columns: 1fr;
    }

    .impact-image:first-child {
        height: 280px;
    }

    .branch-list {
        padding: 32px 24px;
    }

    .country-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .branch-gallery {
        grid-template-columns: 1fr;
    }

    .thank-you-section {
        padding: 48px 24px;
    }

    .thank-you-header h2 {
        font-size: 2.2rem;
    }
}


/* === VOLUNTEER PAGE SPECIFIC STYLES === */

/* Hero Section */
.volunteer-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 32px 60px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.volunteer-hero-left {
    flex: 1 1 500px;
}

.volunteer-hero-left .pre-title {
    color: #b22076;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
    border-left: 4px solid #b22076;
    padding-left: 16px;
}

.volunteer-hero-left h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #003153;
    line-height: 1.2;
    margin-bottom: 24px;
}

.volunteer-hero-left p {
    font-size: 1.2rem;
    color: #3a4e62;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 550px;
}

.btn-start-branch {
    background: #b22076;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 16px -8px rgba(178, 32, 118, 0.4);
}

.btn-start-branch:hover {
    background: #9a1d62;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(178, 32, 118, 0.5);
}

.volunteer-hero-right {
    flex: 1 1 400px;
    background: #f5f7fa;
    border-radius: 60px;
    padding: 48px;
    text-align: center;
    border: 1px solid #eaeef2;
}

.hero-stat {
    margin: 30px 0;
}

.hero-stat .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #b22076;
    line-height: 1;
}

.hero-stat .stat-label {
    color: #003153;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Grid */
.benefits-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header .section-code {
    border-left: none;
    padding-left: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #b22076;
    box-shadow: 0 25px 40px -20px rgba(178, 32, 118, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #f9ecf3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #b22076;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: #b22076;
    color: white;
    transform: rotate(5deg);
}

.benefit-card h3 {
    font-size: 2rem;
    color: #003153;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #4a5f73;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Quote & Stats Section */
.quote-stats-section {
    background: #f5f7fa;
    border-radius: 80px;
    padding: 80px 56px;
    max-width: 1280px;
    margin: 80px auto;
}

.quote-stats-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.quote-left {
    flex: 2 1 400px;
}

.quote-left i {
    font-size: 3rem;
    color: #b2207620;
    margin-bottom: 20px;
}

.quote-left blockquote {
    font-size: 1.8rem;
    font-weight: 400;
    color: #003153;
    line-height: 1.4;
    margin-bottom: 24px;
}

.quote-author {
    color: #b22076;
    font-weight: 600;
    font-size: 1.1rem;
}

.stats-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-block {
    text-align: center;
}

.stat-block .stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: #b22076;
    line-height: 1;
}

.stat-block .stat-label {
    color: #003153;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Impact Story */
.impact-story {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-content h2 {
    font-size: 2.8rem;
    color: #003153;
    margin-bottom: 24px;
}

.impact-content p {
    font-size: 1.2rem;
    color: #3a4e62;
    line-height: 1.6;
    margin-bottom: 24px;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-list li i {
    color: #b22076;
    font-size: 1.3rem;
}

.impact-image {
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0b253a 0%, #1e3a5a 100%);
    border-radius: 80px;
    padding: 64px;
    max-width: 1280px;
    margin: 80px auto;
    color: white;
    text-align: center;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    color: #d1e0eb;
    max-width: 700px;
    margin: 0 auto 32px;
}

.btn-explore {
    background: white;
    color: #b22076;
    border: none;
    padding: 16px 48px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-explore:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .impact-story {
        grid-template-columns: 1fr;
    }

    .impact-image {
        order: -1;
    }

    .quote-stats-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner {
        padding: 48px 32px;
    }

    .cta-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .volunteer-hero {
        padding: 60px 20px;
    }

    .volunteer-hero-right {
        padding: 32px;
    }

    .benefit-card {
        padding: 40px 24px;
    }

    .benefit-card h3 {
        font-size: 1.8rem;
    }

    .quote-stats-section {
        padding: 48px 24px;
    }

    .quote-left blockquote {
        font-size: 1.4rem;
    }

    .stat-block .stat-number {
        font-size: 3.5rem;
    }
}


/* === OUR TEAM PAGE SPECIFIC STYLES === */

/* Hero Section */
.team-hero {
    padding: 100px 32px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.team-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #003153;
    line-height: 1.1;
    margin-bottom: 24px;
}

.team-hero h1 span {
    color: #b22076;
    display: block;
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.team-hero .quote {
    font-size: 1.5rem;
    color: #3a4e62;
    font-style: italic;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 24px;
    background: #f5f7fa;
    border-radius: 60px;
    border-left: 6px solid #b22076;
}

.team-hero .quote-author {
    color: #b22076;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
}

/* Section Headers */
.section-header-centered {
    text-align: center;
    margin: 80px 0 40px;
}

.section-header-centered .pre-title {
    color: #b22076;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.section-header-centered h2 {
    font-size: 3rem;
    color: #003153;
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #4a5f73;
    max-width: 700px;
    margin: 0 auto;
}

/* Cofounders Grid */
.cofounders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 40px auto 60px;
    padding: 0 32px;
}

.cofounder-card {
    background: white;
    border-radius: 48px;
    padding: 48px 32px;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.cofounder-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #b22076;
    box-shadow: 0 25px 40px -20px rgba(178, 32, 118, 0.2);
}

.cofounder-avatar {
    width: 140px;
    height: 140px;
    background: #f9ecf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #b22076;
    font-size: 3rem;
    transition: all 0.3s;
}

.cofounder-card:hover .cofounder-avatar {
    background: #b22076;
    color: white;
    transform: scale(1.05);
}

.cofounder-avatar img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: 0 1px;
    border-radius: 50%;
}

.cofounder-card h3 {
    font-size: 2rem;
    color: #003153;
    margin-bottom: 8px;
}

.cofounder-title {
    color: #b22076;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cofounder-card p {
    color: #4a5f73;
    font-size: 1rem;
    line-height: 1.6;
}

/* THR33 Section */
.thr33-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 80px;
    padding: 64px;
    max-width: 1280px;
    margin: 60px auto;
    text-align: center;
    border: 1px solid #eaeef2;
}

.thr33-section h2 {
    font-size: 4rem;
    color: #b22076;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.thr33-section p {
    font-size: 1.5rem;
    color: #003153;
    max-width: 700px;
    margin: 0 auto;
}

/* Executive Officers Grid */
.officers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 40px auto 60px;
    padding: 0 32px;
}

.officer-card {
    background: white;
    border-radius: 48px;
    padding: 48px 40px;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border-left: 4px solid #b22076;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.officer-card:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 40px -20px rgba(178, 32, 118, 0.2);
}

.officer-avatar {
    width: 120px;
    height: 120px;
    background: #f9ecf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b22076;
    flex-shrink: 0;
}

.officer-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0 1px;
}

.officer-info h3 {
    font-size: 2rem;
    color: #003153;
    margin-bottom: 8px;
}

.officer-title {
    color: #b22076;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.officer-info p {
    color: #4a5f73;
    font-size: 1rem;
    line-height: 1.6;
}

/* Global Stats Banner */
.global-stats-banner {
    background: #0b253a;
    border-radius: 80px;
    padding: 64px 48px;
    max-width: 1280px;
    margin: 60px auto;
    color: white;
}

.global-stats-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.global-stat-item {
    text-align: center;
}

.global-stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #ffb3d9;
    line-height: 1;
}

.global-stat-label {
    font-size: 1.5rem;
    color: #d1e0eb;
    margin-top: 8px;
}

/* Sun Never Sets Section */
.sun-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
    flex-wrap: wrap;
}

.sun-content {
    flex: 1 1 500px;
}

.sun-content h2 {
    font-size: 3rem;
    color: #003153;
    margin-bottom: 24px;
}

.sun-content h2 span {
    color: #b22076;
}

.sun-content p {
    font-size: 1.2rem;
    color: #4a5f73;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sun-image {
    flex: 1 1 400px;
    background: #f5f7fa;
    border-radius: 60px;
    padding: 48px;
    text-align: center;
}

.sun-image i {
    font-size: 10rem;
    color: #b22076;
    opacity: 0.7;
}

/* Join CTA */
.join-cta {
    background: linear-gradient(135deg, #b22076 0%, #d47aa0 100%);
    border-radius: 80px;
    padding: 64px;
    max-width: 1280px;
    margin: 60px auto;
    color: white;
    text-align: center;
}

.join-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.join-cta p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-join {
    background: white;
    color: #b22076;
    border: none;
    padding: 16px 48px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .cofounders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .officers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cofounders-grid {
        grid-template-columns: 1fr;
    }

    .officer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 28px;
    }

    .global-stat-number {
        font-size: 4rem;
    }

    .global-stat-label {
        font-size: 1.2rem;
    }

    .sun-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .team-hero {
        padding: 60px 20px;
    }

    .team-hero .quote {
        font-size: 1.2rem;
        padding: 20px;
    }

    .section-header-centered h2 {
        font-size: 2.5rem;
    }

    .thr33-section {
        padding: 48px 24px;
    }

    .thr33-section h2 {
        font-size: 3rem;
    }

    .thr33-section p {
        font-size: 1.2rem;
    }

    .global-stats-banner {
        padding: 48px 24px;
    }

    .global-stat-number {
        font-size: 3rem;
    }

    .sun-image i {
        font-size: 7rem;
    }
}


/* === CONTACT PAGE SPECIFIC STYLES === */

/* Hero Section */
.contact-hero {
    padding: 100px 32px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #003153;
    line-height: 1.1;
    margin-bottom: 24px;
}

.contact-hero h1 span {
    color: #b22076;
    display: block;
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 40px auto 60px;
    padding: 0 32px;
}

.contact-method-card {
    background: white;
    border-radius: 48px;
    padding: 56px 40px;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #b22076;
    box-shadow: 0 25px 40px -20px rgba(178, 32, 118, 0.2);
}

.method-icon {
    width: 100px;
    height: 100px;
    background: #f9ecf3;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: #b22076;
    font-size: 3rem;
    transition: all 0.3s;
}

.contact-method-card:hover .method-icon {
    background: #b22076;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact-method-card h2 {
    font-size: 2.2rem;
    color: #003153;
    margin-bottom: 16px;
}

.contact-method-card p {
    color: #4a5f73;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.method-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #b22076;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #9a1d62;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(178, 32, 118, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #b22076;
    border: 1.5px solid #b22076;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #b22076;
    color: white;
    transform: translateY(-3px);
}

/* Preferred Contact Section */
.preferred-section {
    background: #f5f7fa;
    border-radius: 80px;
    padding: 64px;
    max-width: 1280px;
    margin: 60px auto;
}

.preferred-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.preferred-content {
    flex: 1 1 400px;
}

.preferred-content h2 {
    font-size: 2.5rem;
    color: #003153;
    margin-bottom: 24px;
}

.preferred-content p {
    font-size: 1.2rem;
    color: #4a5f73;
    line-height: 1.6;
    margin-bottom: 32px;
}

.preferred-email {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 24px;
    border-radius: 60px;
    font-size: 1.2rem;
    color: #003153;
    border: 1px solid #eaeef2;
    margin-top: 24px;
}

.preferred-email i {
    color: #b22076;
    font-size: 1.5rem;
}

.preferred-image {
    flex: 1 1 300px;
    background: white;
    border-radius: 48px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.preferred-image i {
    font-size: 8rem;
    color: #b22076;
    opacity: 0.7;
}

/* Executive Contact Section */
.executive-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
}

.executive-header {
    text-align: center;
    margin-bottom: 48px;
}

.executive-header h2 {
    font-size: 2.8rem;
    color: #003153;
    margin-bottom: 16px;
}

.executive-header p {
    font-size: 1.2rem;
    color: #4a5f73;
}

.executive-card {
    background: white;
    border-radius: 60px;
    padding: 56px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.executive-avatar {
    width: 150px;
    height: 150px;
    background: #f9ecf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b22076;
    font-size: 4rem;
}

.executive-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0 1px;
}

.executive-info {
    flex: 1;
}

.executive-info h3 {
    font-size: 2.5rem;
    color: #003153;
    margin-bottom: 8px;
}

.executive-title {
    color: #b22076;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.executive-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f5f7fa;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    color: #003153;
    font-weight: 500;
    transition: all 0.3s;
}

.executive-email:hover {
    background: #b22076;
    color: white;
    transform: translateX(5px);
}

.executive-email i {
    color: #b22076;
    transition: color 0.3s;
}

.executive-email:hover i {
    color: white;
}

/* Additional Contact Options */
.additional-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 32px;
}

.contact-chip {
    background: white;
    border-radius: 60px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border: 1px solid #eaeef2;
    transition: all 0.3s;
    text-decoration: none;
    color: #003153;
}

.contact-chip:hover {
    border-color: #b22076;
    background: #f9ecf3;
    transform: translateY(-3px);
}

.contact-chip i {
    color: #b22076;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .executive-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .executive-info {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 60px 20px;
    }

    .contact-method-card {
        padding: 40px 24px;
    }

    .method-buttons {
        flex-direction: column;
    }

    .preferred-section {
        padding: 48px 24px;
    }

    .preferred-email {
        flex-direction: column;
        text-align: center;
    }

    .executive-card {
        padding: 32px 24px;
    }

    .executive-avatar {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .executive-info h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .branches-hero-right {
        flex: 1 1 0;
    }

    .impact-content h2,
    .why-start-content h2,
    .contact-simple h2,
    .sun-section h2,
    .executive-header h2 {
        font-size: 2.3rem !important;
    }

    footer {
        padding: 40px 20px;
    }

    .executive-card {
        min-width: 100%;
        padding: 20px 5px;
    }

}

.leader-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%; /* Makes it circular */
}