/* =========================
   BRAND VARIABLES
========================= */
:root {
    --brand-dark: #1A2F40;
    --brand-accent: #FDD404;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-soft: #f7f9fc;
}

/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 600;
    color: var(--brand-dark);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-accent);
    transition: width .25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--brand-accent);
    color: var(--brand-dark);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 800;
}

/* =========================
   HERO
========================= */
.hero-about {
    background: linear-gradient(135deg, var(--brand-dark), #243f56);
    color: #fff;
    padding: 110px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.hero-eyebrow {
    color: var(--brand-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: .8rem;
}

.hero-about h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-about h1 span {
    color: var(--brand-accent);
}

.hero-subtitle {
    max-width: 520px;
    margin: 24px 0 36px;
    opacity: .95;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

/* =========================
   SECTIONS & CARDS
========================= */
section {
    padding: 95px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    color: var(--text-muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 38px;
    border-radius: 18px;
    border-top: 4px solid var(--brand-accent);
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
}

.card-image {
    margin-top: auto;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   TEAM
========================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
}

.team-card h4 {
    margin-top: 16px;
    font-weight: 800;
}

/* =========================
   CTA
========================= */
.cta {
    background: var(--brand-dark);
    color: #fff;
    text-align: center;
}

.btn-light {
    background: var(--brand-accent);
    color: var(--brand-dark);
    padding: 15px 34px;
    border-radius: 14px;
    font-weight: 900;
}

/* =========================
   ANIMATIONS
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0f2231;
    color: #e5e7eb;
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 5px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.site-footer h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #FDD404;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact a {
    color: #cbd5e1;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 16px;
    }
}

/* Smaller About Hero */
.hero-about-light {
    background: linear-gradient(135deg, var(--brand-dark), #2a4258);
    color: #fff;
    padding: 60px 0; /* smaller than homepage hero */
}

.hero-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 480px;
    margin-top: 20px;
    opacity: .9;
}

/* About Images Grid */
.about-images {
    padding: 70px 0;
}

.about-images .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.about-images .card-image img {
    border-radius: 14px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-images .card-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--brand-dark);
}

.why-us-text .check-list {
    list-style: none;
    padding: 0;
}

.why-us-text .check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.why-us-text .check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--brand-accent);
}

.why-us-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-image {
        margin-top: 30px;
    }
}
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 6px; /* space between icon and text */
    word-break: break-all; /* ensure long emails wrap but stay on same line with icon */
    margin-bottom: 10px;
}

/* =========================
   MOBILE RESPONSIVE STYLES
========================= */
@media (max-width: 900px) {
    /* -------- HEADER -------- */
    .header-inner {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
        margin-bottom: 8px;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        text-align: center;
    }

    .header-cta {
        margin-top: 12px;
        width: 90%;
        text-align: center;
        padding: 10px 0;
    }

    /* -------- HERO -------- */
    .hero-grid,
    .hero-grid-small {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-about h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 16px 0;
        font-size: 1rem;
    }

    .hero-img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* -------- SECTIONS & CARDS -------- */
    section {
        padding: 50px 20px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 24px;
    }

    .card-image {
        height: 160px;
    }

    .card-image img {
        object-fit: cover;
    }

    /* -------- TEAM -------- */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .team-card img {
        width: 140px;
        height: 140px;
    }

    /* -------- WHY-US -------- */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .why-us-image {
        margin-top: 30px;
    }

    /* -------- FOOTER -------- */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 16px;
        height: 40px;
    }

    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-contact a {
        word-break: break-word;
    }

    /* Reduce footer text size */
    .footer-brand p,
    .footer-links a,
    .footer-contact a,
    .footer-bottom {
        font-size: 0.85rem;
    }

    /* CTA buttons */
    .btn-light,
    .header-cta {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Extra small screens (phones) */
@media (max-width: 500px) {
    .hero-about h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .card-image {
        height: 140px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
    }

    .footer-contact .contact-item {
        gap: 4px;
    }

    section {
        padding: 40px 15px;
    }
}


.services-hero {
    background: #1A2F40;
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
}

.services-intro {
    padding: 2rem 1rem;
    text-align: center;
}

.service-block {
    padding: 4rem 1rem;
}

.light-bg {
    background: #f7f9fc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.checklist {
    margin-top: 2rem;
}

.checklist summary {
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
}

/* =========================
   FOOTER SOCIALS
========================= */
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .25s ease;
}

.footer-socials a:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
}


/* =========================
   SOCIAL LINKS (HERO)
========================= */
.hero-socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.hero-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all .25s ease;
}

.hero-socials a:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

/* =========================
   FOOTER SOCIALS
========================= */
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .25s ease;
}

.footer-socials a:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

.hero-socials i {
    font-size: 1.25rem;
}