/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL — MATCH CONTACT PAGE */
body {
    font-family: 'Poppins', Arial, sans-serif; /* SAME FONT */
    background-color: #ffffff;               /* SAME BG */
    color: #000000;                          /* PURE BLACK TEXT */

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* KEEP SAME SPACING */
section {
    padding: 100px 20px;
}

/* =========================
   WELCOME SCREEN OVERLAY
   ========================= */

#welcome-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff9db 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    transition: opacity 1s ease, visibility 1s ease;
}

/* MAIN TEXT */
#welcome-screen h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;

    letter-spacing: 1px;
    animation: fadeUp 1.2s ease forwards;
}

/* SUB TEXT */
#welcome-screen p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #444444;

    letter-spacing: 0.4px;
    animation: fadeUp 1.4s ease forwards;
}

/* SOFT UNDERLINE ACCENT */
#welcome-screen::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #FCD200;
    margin-top: 28px;
    border-radius: 99px;
    animation: fadeUp 1.6s ease forwards;
}

/* HIDE STATE */
#welcome-screen.hide {
    opacity: 0;
    visibility: hidden;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
    width: 100%;
    background-color: #ffffff;
    padding: 18px 0;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nav-pill {
    background-color: #FCD200;
    padding: 12px 34px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links li {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.nav-links li:hover {
    background-color: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* =========================
   SECTION HEADINGS
   ========================= */

.section-heading {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.4px;
}

/* =========================
   HERO IMAGE (FIXED CROPPING)
   ========================= */

.image-section {
    height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* FIX: prevents harsh cropping */
    background-color: #ffffff;
    opacity: 0.95;
}

/* =========================
   INTRO
   ========================= */

.intro-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.intro-container p {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
    text-align: justify;
    letter-spacing: 0.2px;
}

.intro-container h2{
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}
/* =========================
   GLOBAL CARD SYSTEM
   ========================= */

.card {
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

/* =========================
   FOCUS / VALUES (IMPROVED)
   ========================= */

.focus-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.focus-card {
    background-color: #f9e26d;
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.focus-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.focus-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* =========================
   TESTIMONIALS (ENHANCED)
   ========================= */

.testimonial-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    padding: 36px 30px;
    min-height: 190px;
    text-align: left;

    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.14);
}

.testimonial-card::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background-color: #FCD200;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.testimonial-card span {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

/* =========================
   CONTACT FOOTER
   ========================= */

.contact-footer {
    background-color: #ffffff;
    padding: 100px 20px 60px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-size: 15px;
    color: #444;
    max-width: 620px;
    margin: 0 auto 60px;
    text-align: justify;
    line-height: 1.7;
    letter-spacing: 0.15px;
}

/* CARDS GRID */
.footer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* CARD */
.footer-card {
    background-color: #f9e26d;
    border: 1px solid #e5e5e5;
    padding: 28px 22px;
    border-radius: 16px;
    text-align: center;

    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

/* HOVER EFFECT (PRO & SUBTLE) */
.footer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
    background-color: #ffffff;
}

/* ACTIVE (CLICK FEEDBACK) */
.footer-card:active {
    transform: translateY(-2px);
}

/* TEXT */
.footer-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.footer-card p,
.footer-card a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
}

/* LINK HOVER */
.footer-card a:hover {
    color: #FCD200;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #000000;
}


/* =========================
   SCROLL ANIMATION
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE POLISH
   ========================= */

@media (max-width: 768px) {
    section {
        padding: 70px 16px;
    }
}

@media (max-width: 900px) {
    .focus-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .focus-container {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}