/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@400;600;700&family=Barlow:wght@400;600;700;800&family=Barlow+Condensed:wght@400;600;700&display=swap');


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #001f4d;
    --surface: rgba(0, 31, 77, 0.92);
    --text: #ffffff;
    --muted: #b9c4d8;
    --accent: #51d463;
    --accent-soft: rgba(26, 185, 47, 0.15);
    --accent-gold: #ffd700;
    --accent-blue: #003d9d;
    --green: #1a7a5e;
    --green-dark: #145f49;
    --green-light: #22a07a;
    --dark: #1a1a2e;
    --darker: #12121f;
    --text-muted: #9a9ab0;
    --text-light: #d4d4e8;
    --white: #ffffff;
    --accent-new: #2dc98e;
}

body {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;


    background: linear-gradient(135deg, #001f4d 0%, #003d7a 25%, #001a40 50%, #0a3a6b 75%, #001f4d 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--text);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 185, 47, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hero{
    position: relative;
}

/* Page Load Animations */
@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Click & Hover Animations */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes buttonPress {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Form Input Animations */
@keyframes inputGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(81, 212, 99, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(81, 212, 99, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Utility Classes */
.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-scale {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.5s ease-out forwards;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }
.delay-11 { animation-delay: 1.1s; }
.delay-12 { animation-delay: 1.2s; }
.delay-13 { animation-delay: 1.3s; }
.delay-14 { animation-delay: 1.4s; }
.delay-15 { animation-delay: 1.5s; }

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Generic heading styles for any unspecified sections */
h1 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-weight: 800;

    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-weight: 700;

}

h3 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-weight: 700;

}

/* Base typography for homepage/hero */
.hero-inner,
.hero p,
.hero .hero-badge,
.contact-pathways,
.contact-card,
.footer-main,
.footer-bottom {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}


a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}



header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: #f5f5f5;
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #e0e0e0;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.logo {
    display: block;
    max-height: 70px;
    width: auto;
    background: transparent;
    filter: brightness(1) contrast(1);
}

@media (max-width: 768px) {
    .logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 50px;
    }
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 0.7rem;
    }
}

.brand-tag {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.08em;
    font-weight: 500;
}

@media (max-width: 480px) {
    .brand-tag {
        font-size: 0.6rem;
    }
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.nav-links a.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.nav-cta {
    white-space: nowrap;
    background: var(--accent-gold) !important;
    color: #001f4d !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-cta {
        padding: 0.65rem 1.2rem !important;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 0.6rem 1rem !important;
        font-size: 0.75rem;
    }
}

.nav-cta:hover {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: #333;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #001f4d;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}

/* Button Click & Hover Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-clicked {
    animation: buttonPress 0.6s ease;
}

.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Link Animations */
a {
    transition: all 0.3s ease;
}

a.link-clicked {
    animation: pulse 0.5s ease;
}

/* Form Input Animations */
input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(81, 212, 99, 0.2);
}

input.input-focused, select.input-focused, textarea.input-focused {
    animation: inputGlow 0.8s ease-out;
}

main {
    margin-top: 88px;
}

section {
    padding: 5rem 2rem;
}

/* Layout improvements for homepage hero */
.hero-inner {
    position: relative;
}

.hero-actions {
    margin-top: 0.5rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    border-color: rgba(255, 215, 0, 0.45);
}


@media (max-width: 768px) {
    section {
        padding: 3.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 1rem;
    }
}

.hero {
    min-height: calc(100vh - 88px);
    background: linear-gradient(180deg, rgba(0,31,77,0.92) 0%, rgba(0,40,100,0.88) 50%, rgba(10,50,110,0.94) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
}

.hero-inner {
    max-width: 980px;
    width: 100%;
    text-align: left;
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 1.5rem 1rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    margin-bottom: 1.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #f7f8fb;
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-badge {
        padding: 0.6rem 0.9rem;
        margin-bottom: 1.3rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 0.5rem 0.8rem;
        margin-bottom: 1rem;
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
}

.hero h1 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    max-width: 10ch;
    margin-bottom: 1.3rem;
    letter-spacing: -0.04em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 3rem);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
}

.hero h1 span {
    color: #dbc64b;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 400;
}

.hero p {
    max-width: 760px;
    margin-bottom: 2.4rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        max-width: none;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

/* Hero highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.highlight {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1rem 1.05rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: all 0.25s ease;
}

.highlight i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(45, 201, 142, 0.15);
    color: #2dc98e;
    font-size: 1.1rem;
}

.highlight-text strong {
    display: block;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.highlight-text span {
    display: block;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin-top: 0.15rem;
}

.highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 201, 142, 0.35);
    background: rgba(255,255,255,0.09);
}

@media (max-width: 768px) {
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
}


@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
}


.stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 1.35rem 1.2rem;
}

.stat strong {
    display: block;
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 0.45rem;
    font-family: 'Sora', 'Montserrat', sans-serif;
    font-weight: 700;
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.section-copy {
    max-width: 820px;
    margin: 2.5rem auto;
    color: var(--muted);
    font-size: 1.3rem;
    line-height: 1.85;
    text-align: center;
    font-family: 'Lora', 'Roboto', serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-copy {
        font-size: 1.1rem;
        margin: 2rem auto;
    }
}

@media (max-width: 480px) {
    .section-copy {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 1.5rem auto;
    }
}

.services h2,
.contact h2 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Sora', 'Raleway', sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .services h2,
    .contact h2 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .services h2,
    .contact h2 {
        font-size: clamp(1.4rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
}

.service-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

.service-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-grid-3 {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    min-height: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .service-item {
        padding: 1.2rem 1rem;
        border-radius: 16px;
    }
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.15);
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffd700;
    line-height: 1.3;
    text-align: center;
    font-family: 'Montserrat', 'Urbanist', sans-serif;
}

@media (max-width: 768px) {
    .service-item h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
}

.service-item p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 400;
}

@media (max-width: 480px) {
    .service-item p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: auto;
    transition: transform 0.3s ease;
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .service-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 120px;
        border-radius: 12px;
    }
}

.service-item:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(255, 215, 0, 0.2);
}

.services h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
    text-align: center;
}

.process h2,
.services h2 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 3.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    font-family: 'Sora', 'Raleway', sans-serif;
    font-weight: 700;
}

.pr
.premium-service {
    background: transparent;
}

.premium-service h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-weight: 700;
}


@media (max-width: 768px) {
    .premium-service h2 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .premium-service h2 {
        font-size: clamp(1.4rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
}

.section-subtitle {
    display: block;
    text-align: center;
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

.premium-content {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 768px) {
    .premium-content {
        margin: 2rem auto;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .premium-content {
        margin: 1.5rem auto;
        gap: 1rem;
    }
}

.premium-content p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: center;
    font-family: 'Roboto', 'Inter', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .premium-content p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .premium-content p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}

.experience {
    background: transparent;
    padding: 5rem 2rem;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.experience-image {
    width: 100%;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.experience-content {
    display: flex;
    flex-direction: column;
}

.experience-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 1rem 0 2rem 0;
    line-height: 1.2;
    color: var(--text);
    font-family: 'Sora', 'Montserrat', sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .experience-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        margin: 0.8rem 0 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .experience-content h2 {
        font-size: clamp(1.3rem, 6vw, 2.2rem);
        margin: 0.5rem 0 1.2rem 0;
    }
}

.experience-content h2 strong {
    color: var(--accent);
    font-weight: 700;
}

.experience-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    font-family: 'Roboto', 'Inter', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .experience-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .experience-container {
        gap: 1.5rem;
    }

    .experience-content h2 {
        font-size: clamp(1.5rem, 5vw, 2.8rem);
    }
}

.contact form {
    display: grid;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .contact form {
        gap: 0.75rem;
    }
}

.contact input,
.contact textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

@media (max-width: 480px) {
    .contact input,
    .contact textarea {
        padding: 0.85rem 0.9rem;
        font-size: 16px;
    }
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.contact textarea {
    min-height: 180px;
    resize: vertical;
}

@media (max-width: 480px) {
    .contact textarea {
        min-height: 140px;
    }
}

footer {
    text-align: center;
    padding: 1.25rem 2rem;
    color: var(--muted);
    font-size: 0.95rem;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 400;
}

.why-philippines {
    background: transparent;
    padding: 5rem 2rem;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.why-content {
    display: flex;
    flex-direction: column;
}

.why-content h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: var(--text);
    text-align: left;
    font-family: 'Playfair Display', 'Sora', serif;
    font-weight: 700;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-point h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', 'Urbanist', sans-serif;
}

.why-point p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    font-family: 'Roboto', 'Inter', sans-serif;
    font-weight: 400;
}

.why-image {
    width: 100%;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

@media (max-width: 768px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-points {
        gap: 1.5rem;
    }

    .why-point h3 {
        font-size: 1rem;
    }

    .why-point p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-container {
        gap: 1.5rem;
    }

    .why-content h2 {
        font-size: clamp(1.5rem, 5vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .why-points {
        gap: 1rem;
    }
}

@media (max-width: 980px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

@media (max-width: 820px) {
    .navbar {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-center {
        display: none;
        position: absolute;
        inset: 72px 0 auto 0;
        flex-direction: column;
        width: 100%;
        background: #f5f5f5;
        padding: 1.5rem 2rem;
        border-bottom: 2px solid #e0e0e0;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        width: 100%;
    }

    .nav-links li {
        margin: 0.75rem 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        border-bottom: none;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 620px) {
    .navbar {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ── CONTACT SECTION ── */
.contact {
    background: linear-gradient(135deg, rgba(0, 31, 77, 0.95) 0%, rgba(0, 40, 100, 0.92) 100%);
}

/* ── APPLICANT FORM ── */
.applicant-form {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.applicant-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.2rem;
}

.applicant-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.applicant-form label {
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.applicant-form input,
.applicant-form select,
.applicant-form textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    width: 100%;
}

.applicant-form input[type="date"],
.applicant-form select {
    min-height: 53px;
}

.applicant-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.75;
}

/* Make dropdown option text readable */
.applicant-form select option {
    background: #0a3a6b;
    color: #ffffff;
}

.applicant-form input::placeholder,
.applicant-form textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.applicant-form textarea {
    min-height: 160px;
    resize: vertical;
}

.applicant-form .help {
    margin-top: 0.25rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.applicant-form .form-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .applicant-form {
        padding: 1rem;
    }

    .applicant-form .form-grid {
        grid-template-columns: 1fr;
    }
}



.contact .section-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.contact-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-pathways {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(45, 201, 142, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 201, 142, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-new);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 201, 142, 0.15);
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.01em;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-benefits {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-benefits li i {
    color: var(--accent-new);
    font-weight: 700;
}

.contact-card .btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact-card .btn-primary {
    background: var(--accent-new);
    color: var(--white);
    border: none;
}

.contact-card .btn-primary:hover {
    background: #25b878;
    box-shadow: 0 8px 20px rgba(45, 201, 142, 0.3);
    transform: scale(1.02);
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-pathways {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .card-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .card-benefits li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-intro {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .card-icon {
        font-size: 2rem;
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .card-benefits li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .contact-card .btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ── SOCIAL BAR ── */
.social-bar {
    background: var(--green);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Extend “fade” accents into the bottom area */
.social-bar::after {
    content: '';
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 180%;
    background: radial-gradient(circle at 50% 30%, rgba(255,215,0,0.18) 0%, rgba(255,215,0,0.08) 35%, rgba(26,185,47,0.10) 65%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}


.social-bar span {
    color: var(--white);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-family: 'Barlow', sans-serif;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ── MAIN FOOTER ── */
.footer-main {
    background: var(--dark);
    padding: 48px 40px 35px;
    font-family: 'Barlow', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure footer columns align left for multi-line contact content */
.footer-col {
    text-align: left;
}

.footer-col .company-desc,
.footer-col .contact-text {
    text-align: left;
}


/* Column headings */
.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

/* Company col */
.footer-col .company-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col .company-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 100%;
}

/* Links col */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-new);
    padding-left: 4px;
}

/* ── CONTACT COL ── */
.contact-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 16px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--white);
}

.contact-icon i {
    font-size: 14px;
}

.contact-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    word-break: break-word;
}

.contact-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--accent-new);
}

.contact-text br {
    content: "";
}

@media (max-width: 768px) {
    .contact-item {
        grid-template-columns: 32px 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-text {
        font-size: 12.5px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .contact-item {
        grid-template-columns: 28px 1fr;
        gap: 8px;
        margin-bottom: 10px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-text {
        font-size: 11.5px;
        line-height: 1.4;
    }
}


/* ── BOTTOM BAR ── */
.footer-bottom {
    background: var(--darker);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    font-family: 'Barlow', sans-serif;
}


.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.footer-bottom p span {
    color: var(--accent-new);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--accent-new);
}

/* Diagonal accent element */
.footer-col.brand-col {
    position: relative;
}

.green-accent-bar {
    width: 4px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent-new), var(--green-dark));
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 14px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .social-bar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        text-align: center;
    }

    .social-bar span {
        font-size: 11px;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        font-size: 13px;
    }

    .footer-main {
        padding: 35px 20px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-col .company-desc {
        max-width: none;
    }

    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .footer-col .company-name {
        font-size: 16px;
    }

    .footer-col ul li a {
        font-size: 12px;
    }

    .contact-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .contact-text {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 10px 20px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .social-bar {
        padding: 12px 16px;
    }

    .social-bar span {
        font-size: 10px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        font-size: 12px;
    }

    .footer-main {
        padding: 25px 16px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col h4 {
        font-size: 10px;
    }

    .footer-col .company-name {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-col .company-desc {
        font-size: 11px;
    }

    .footer-col ul li a {
        font-size: 11px;
    }

    .contact-item {
        gap: 8px;
        margin-bottom: 10px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .contact-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .footer-bottom {
        padding: 8px 16px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-bottom-links a {
        font-size: 9px;
    }
}

/* ── HOMEPAGE REDESIGN ── */

.home-page .home-hero {
    min-height: calc(100vh - 88px);
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(47, 186, 114, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(36, 116, 166, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #eef7fb 0%, #f0faf8 40%, #e9f8ef 100%);
    display: block;
    padding: 0;
}

.home-page .home-hero .hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    min-height: calc(100vh - 88px);
}

.home-page .hero-content {
    text-align: left;
}

.home-page .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.home-page .hero-badge--muted {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.home-page .hero-headline {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    max-width: 14ch;
}

.home-page .text-accent {
    color: var(--accent-new);
    display: block;
}

.home-page .hero-lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2rem;
}

.home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.home-page .hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-page .hero-stat strong {
    display: block;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.home-page .hero-stat span {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-page .hero-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.home-page .hero-visual-globe {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-new) 0%, #1a9e6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(45, 201, 142, 0.35);
}

.home-page .hero-visual-label {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.home-page .hero-regions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.home-page .hero-regions span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.2s, background 0.2s;
}

.home-page .hero-regions span i {
    color: var(--accent-new);
    font-size: 0.75rem;
}

.home-page .hero-regions span:hover {
    border-color: rgba(45, 201, 142, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

/* Trust strip */
.home-page .trust-strip {
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.home-page .trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .trust-item:last-child {
    border-right: none;
}

.home-page .trust-item i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(45, 201, 142, 0.12);
    color: var(--accent-new);
    font-size: 1.1rem;
}

.home-page .trust-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.home-page .trust-item span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Shared section header */
.home-page .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.home-page .section-eyebrow {
    display: inline-block;
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-new);
    margin-bottom: 0.75rem;
}

.home-page .section-header h2 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-page .section-header p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.home-page .section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Services preview */
.home-page .home-services {
    background: linear-gradient(135deg, rgba(47, 186, 114, 0.06) 0%, rgba(36, 116, 166, 0.04) 100%);
}

.home-page .home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-page .home-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.home-page .home-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 201, 142, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.home-page .home-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(45, 201, 142, 0.2) 0%, rgba(45, 201, 142, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-new);
    margin-bottom: 1.25rem;
}

.home-page .home-service-card h3 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.home-page .home-service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.home-page .home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-new);
    text-decoration: none;
    transition: gap 0.2s;
}

.home-page .home-link:hover {
    gap: 0.65rem;
    color: #3ee0a0;
}

/* Process preview */
.home-page .home-process {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 50, 0.5) 100%);
}

.home-page .home-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.home-page .home-step {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.25s;
}

.home-page .home-step:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.home-page .home-step-num {
    display: block;
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.35);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.home-page .home-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.home-page .home-step p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Why Philippines */
.home-page .home-why {
    background: rgba(0, 0, 0, 0.12);
}

.home-page .home-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-page .home-why-content .section-eyebrow,
.home-page .home-why-content h2 {
    text-align: left;
}

.home-page .home-why-content h2 {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 1.5rem;
}

.home-page .home-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.home-page .home-why-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.home-page .home-why-list li i {
    color: var(--accent-new);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.home-page .home-why-list strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.home-page .home-why-list span {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
}

.home-page .home-why-visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.home-page .home-why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

/* Pathways section tweaks */
.home-page .home-pathways .section-header .contact-intro {
    margin-bottom: 0;
}

/* Homepage responsive */
@media (max-width: 1024px) {
    .home-page .home-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding: 3rem 2rem;
    }

    .home-page .hero-headline {
        max-width: none;
    }

    .home-page .hero-visual {
        max-width: 480px;
    }

    .home-page .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page .trust-item:nth-child(2) {
        border-right: none;
    }

    .home-page .trust-item:nth-child(1),
    .home-page .trust-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .home-page .home-services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .home-page .home-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page .home-why-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-why-visual {
        order: -1;
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .home-page .hero-stats {
        gap: 1.5rem;
    }

    .home-page .hero-actions .btn {
        flex: 1;
        min-width: 140px;
    }

    .home-page .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .home-page .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .home-page .trust-item:last-child {
        border-bottom: none;
    }

    .home-page .home-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .home-page .home-hero .hero-grid {
        padding: 2rem 1rem;
    }

    .home-page .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .home-page .hero-stat {
        flex: 1;
        min-width: 80px;
    }

    .home-page .hero-actions {
        flex-direction: column;
    }

    .home-page .hero-actions .btn {
        width: 100%;
    }
}

/* ── FRIENDLY SITE PALETTE REFRESH ── */
:root {
    --bg: #eef7fb;
    --surface: rgba(255, 255, 255, 0.88);
    --text: #17324d;
    --muted: #5b7088;
    --accent: #2fba72;
    --accent-soft: rgba(47, 186, 114, 0.12);
    --accent-gold: #f5c542;
    --accent-blue: #2474a6;
    --green: #1f8f65;
    --green-dark: #17674a;
    --green-light: #35c98a;
    --dark: #17324d;
    --darker: #10243a;
    --text-muted: #b8c6d4;
    --text-light: #4b6078;
    --white: #ffffff;
    --accent-new: #2fba72;
}

body {
    background: linear-gradient(135deg, #eef7fb 0%, #fbfdff 44%, #e9f8ef 100%);
    background-attachment: fixed;
    background-size: cover;
    animation: none;
    color: var(--text);
}

body::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(47, 186, 114, 0.12) 0%, transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(36, 116, 166, 0.10) 0%, transparent 32%),
        radial-gradient(circle at 74% 84%, rgba(245, 197, 66, 0.12) 0%, transparent 36%);
}

header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 250, 246, 0.94) 100%);
    border-bottom: 1px solid rgba(47, 186, 114, 0.16);
    box-shadow: 0 12px 32px rgba(23, 50, 77, 0.08);
}

.brand-name {
    color: #17324d;
}

.brand-tag {
    color: #64778c;
}

.nav-links a {
    color: #40536a;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-dark);
    border-bottom-color: var(--green);
}

.btn-primary {
    background: linear-gradient(135deg, #f5c542 0%, #ffe07a 100%) !important;
    color: #17324d !important;
}

.nav-cta {
    background: linear-gradient(135deg, #2fba72 0%, #35c98a 100%) !important;
    color: #ffffff !important;
}

.nav-cta:hover {
    box-shadow: 0 8px 22px rgba(47, 186, 114, 0.28) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    border: 1px solid rgba(23, 50, 77, 0.14);
}

.contact,
.services,
.process,
.premium-service,
.about,
.experience,
.why-philippines,
.home-page .home-process,
.home-page .home-why {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(238, 247, 251, 0.88) 52%, rgba(233, 248, 239, 0.82) 100%);
}

.hero,
.home-page .home-hero {
    color: var(--text);
}

.home-page .home-hero .hero-grid {
    min-height: calc(100vh - 88px);
}

.hero-badge {
    background: rgba(47, 186, 114, 0.12);
    color: var(--green-dark);
    border: 1px solid rgba(47, 186, 114, 0.18);
}

.hero h1,
.home-page .hero-headline,
.services h2,
.contact h2,
.premium-service h2,
.about h2,
.experience-content h2,
.why-content h2,
.home-page .section-header h2 {
    color: var(--text);
}

.hero p,
.home-page .hero-lead,
.section-copy,
.experience-content p,
.premium-content p,
.why-point p,
.home-page .section-header p,
.home-page .home-service-card p,
.home-page .home-step p,
.home-page .home-why-list span {
    color: var(--muted);
}

.home-page .hero-stats {
    border-top-color: rgba(23, 50, 77, 0.12);
}

.home-page .hero-stat strong,
.stat strong {
    color: var(--green);
}

.home-page .hero-stat span,
.stat span {
    color: var(--muted);
}

.hero-highlights .highlight,
.stat,
.service-item,
.home-page .hero-visual-card,
.home-page .home-service-card,
.home-page .home-step,
.contact-card,
.applicant-form {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(23, 50, 77, 0.10);
    box-shadow: 0 18px 45px rgba(23, 50, 77, 0.08);
    backdrop-filter: blur(12px);
}

.service-item:hover,
.home-page .home-service-card:hover,
.contact-card:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(47, 186, 114, 0.28);
    box-shadow: 0 22px 50px rgba(47, 186, 114, 0.16);
}

.service-item h3,
.home-page .home-service-card h3,
.home-page .home-step h3,
.contact-card h3,
.why-point h3,
.home-page .hero-visual-label,
.home-page .hero-regions span,
.highlight-text strong {
    color: var(--text);
}

.service-item p,
.contact-card p,
.card-benefits li,
.highlight-text span {
    color: var(--muted);
}

.home-page .trust-strip {
    background: rgba(255, 255, 255, 0.70);
    border-top: 1px solid rgba(23, 50, 77, 0.08);
    border-bottom: 1px solid rgba(23, 50, 77, 0.08);
}

.home-page .trust-item {
    border-right-color: rgba(23, 50, 77, 0.08);
}

.home-page .trust-item strong {
    color: var(--text);
}

.home-page .trust-item span {
    color: var(--muted);
}

.home-page .hero-regions span {
    background: rgba(47, 186, 114, 0.08);
    border-color: rgba(47, 186, 114, 0.16);
}

.contact input,
.contact textarea,
.applicant-form input,
.applicant-form select,
.applicant-form textarea {
    background: #ffffff;
    border: 1px solid rgba(23, 50, 77, 0.16);
    color: var(--text);
}

.contact input::placeholder,
.contact textarea::placeholder,
.applicant-form input::placeholder,
.applicant-form textarea::placeholder {
    color: rgba(75, 96, 120, 0.72);
}

.applicant-form label,
.contact-intro {
    color: var(--text-light);
}

.applicant-form .form-note {
    color: var(--muted) !important;
}

.applicant-form select option {
    background: #ffffff;
    color: var(--text);
}

.applicant-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.7;
}

.card-icon,
.highlight i,
.home-page .home-service-icon,
.home-page .trust-item i {
    background: rgba(47, 186, 114, 0.12);
    color: var(--green);
}

.social-bar {
    background: linear-gradient(135deg, #2474a6 0%, #2fba72 100%);
}

.footer-main {
    background: #17324d;
}

.footer-bottom {
    background: #10243a;
}
