/* =========================
   STYLE CSS
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:wght@400;500;600&display=swap');

/* GLOBAL FONT (DEFAULT = MARCELLUS) */
body {
    font-family: 'Marcellus', serif;
}

/* NAVBAR FONT */
.nav,
.nav * {
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: url(images/OG.jpg) no-repeat center/cover;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Marcellus', sans-serif;
}


.wrapper {
    min-height: 100vh;
    background: transparent;
    padding-top: 0;
}

body.contact-page {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/contactbg.jpg') 35% center/cover scroll;
    background-size: cover;
    background-position: 35% center;
    background-attachment: scroll;
    color: #ffffff;
}

body.contact-page .wrapper {
    background: transparent;
}

/* =========================
   NAVBAR
   ========================= */

.nav {
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: none;

    transition: all 0.3s ease; /* ✅ smooth animation */
    z-index: 100;
}

/* NAVBAR SCROLL EFFECT */
.nav.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* TEXT COLOR CHANGE WHEN SCROLLED */
.nav.scrolled .nav-menu ul li .link,
.nav.scrolled .nav-logo p,
.nav.scrolled .logo-text,
.nav.scrolled .nav-user i,
.nav.scrolled .nav-socials .social-icon i {
    color: #111827;
}

/* Optional: change underline color */
.nav.scrolled .nav-menu ul li .link::after {
    background-color: #111827;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    height: 45px;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.nav-logo img.logo {
    margin-top: 0;
}

.nav-logo p {
    color: white;
    font-size: 25px;
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
}

.nav-menu ul li {
    list-style: none;
}

.nav-menu ul li .link {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    color: white;
    padding-bottom: 15px;
    margin: 0 25px;
    transition: color 0.3s ease;
}

/* animated underline */
.nav-menu ul li .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu ul li .link:hover {
    color: #f4a261;
    transform: translateY(-2px);
}

.nav-menu ul li .link:hover::after,
.nav-menu ul li .link.active::after {
    width: 100%;
}

.nav-button .btn {
    width: 130px;
    height: 40px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-button .btn:hover {
    color: #f4a261;
    transform: translateY(-2px);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

#RegisterBtn {
    margin-left: 15px;
}

.btn.white-btn {
    background: rgba(255, 255, 255, 0.7);
}

.btn.white-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* =========================
   FORMS
   ========================= */

.nav-menu-btn {
    display: none;
}

.form-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 510px;
    height: 450px;
    overflow: hidden;
    z-index: 2;
}

.login-container,
.register-container {
    position: absolute;
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    transition: 0.5s ease-in-out;
    margin-bottom: 5px;
    text-align: center;
}

.login-container {
    left: 1px;
}

.register-container {
    right: -600px;
}

.top span {
    color: white;
    font-size: small;
    padding: 10px 0;
}

.top span a {
    font-weight: 500;
    color: white;
    margin-left: 5px;
}

header {
    color: white;
    font-size: 30px;
    text-align: center;
    padding: 10px 0 30px;
}

.two-forms {
    display: flex;
    gap: 10px;
    width: 100%;
}

.input-box {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.input-field {
    font-size: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    height: 45px;
    width: 100%;
    padding: 0 15px 0 45px;
    border: none;
    border-radius: 30px;
    outline: none;
    transition: 0.2s ease;
}

.input-field:hover,
.input-field:focus {
    background: rgba(255, 255, 255, 0.25);
}

::-webkit-input-placeholder {
    color: white;
}

.input-box i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: white;
}

.submit {
    font-size: 15px;
    font-weight: 500;
    color: black;
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 300px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.submit:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 1px 5px 7px rgba(0, 0, 0, 0.2);
}

.two-col {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: small;
    margin-bottom: 15px;
}

.two-col .one {
    display: flex;
    gap: 5px;
}

.two label a {
    text-decoration: none;
    color: white;
}

.two label a:hover {
    text-decoration: underline;
}

/* =========================
   HOME SECTION
   ========================= */

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #f4a261;
    padding: 110px 60px 40px;
    background: url(images/OG.jpg) no-repeat center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
    pointer-events: none;
}

.home > * {
    position: relative;
    z-index: 2;
}

.home-content {
    max-width: 900px;
}

.home-content h1 {
    font-family: 'Marcellus', serif;
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 500;
}

.home-content h1:first-child {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 0;
}

.home-content h1:nth-child(2) {
    color: #ffffff;
    font-size: 56px;
    font-weight: 400;
    margin-top: 0;
    padding-top: 0;
    max-width: 760px;
}

.home-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 0 30px;
}

.home-tagline {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
}

.home-btn {
    padding: 12px 30px;
    background: #f4a261;
    color: #111827;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #f4a261;
}

.home-btn:hover {
    background: transparent;
    color: #f4a261;
    transform: translateY(-2px);
}


/* =========================
   CONTACT SECTION
   ========================= */

.contact-section {
    padding: 120px 10%;
    background: transparent;
    position: relative;
    overflow: hidden;
    color: #111827;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-left,
.contact-right {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.contact-right {
    animation-delay: 0.2s;
}

.contact-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f4a261;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 20px;
    font-family: 'Marcellus', serif;
    color: #ffffff;
}

.highlight {
    color: #ffffff;
}

.contact-desc {
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-cards {
    display: grid;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(244, 162, 97, 0.55);
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    border-color: rgba(244, 162, 97, 0.85);
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(244, 162, 97, 0.15);
    display: grid;
    place-items: center;
    color: #f4a261;
    font-size: 20px;
}

.info-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.info-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

/* Form card */

.contact-card {
    background: rgba(18, 19, 22, 0.95);
    border: 1px solid rgba(236, 127, 37, 0.18);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(16px);
}

.contact-card-header h3 {
    margin: 0 0 20px;
    font-size: 22px;
    letter-spacing: 1px;
    color: #ffffff;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(244, 162, 97, 0.4);
    background: rgba(255,255,255,0.95);
    color: #111827;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(17, 24, 39, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(244, 162, 97, 0.85);
    background: rgba(255,255,255,1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(244, 162, 97, 0.75);
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: rgba(244, 162, 97, 1);
    color: #0b0932;
    transform: translateY(-2px);
}

.submit-btn:hover i {
    transform: translateX(3px);
}

.contact-map {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(244, 162, 97, 0.18);
    background: rgba(255,255,255,0.05);
    min-height: 640px;
}

.contact-map.active {
    display: flex;
}

.contact-map.active + .contact-card {
    display: none;
}

.contact-map-header {
    padding: 16px 20px;
    background: rgba(18, 19, 22, 0.85);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.contact-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

.social-action {
    margin-top: 18px;
}

.social-trigger {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(244, 162, 97, 0.55);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-trigger:hover {
    background: rgba(244, 162, 97, 0.15);
}

.social-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.social-modal.active {
    display: flex;
}

.social-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.social-modal-card {
    position: relative;
    width: min(420px, 100%);
    background: rgba(18, 19, 22, 0.96);
    border: 1px solid rgba(244, 162, 97, 0.25);
    border-radius: 18px;
    padding: 24px;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.social-modal-card h3 {
    margin: 0;
    color: #f59e0b;
}

.social-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.social-options {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.social-option {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(244, 162, 97, 0.65);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.social-option:hover {
    background: rgba(244, 162, 97, 0.16);
}

.info-card-email,
.info-card-location {
    cursor: pointer;
}

.info-card-email {
    text-decoration: none;
}

.info-card-email:hover,
.info-card-location:hover {
    border-color: rgba(244, 162, 97, 0.85);
}

.contact-card.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-status {
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .contact-left, .contact-right {
        animation: fadeInUp 0.7s ease forwards;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 80px 6%;
    }
    .contact-title {
        font-size: 32px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   RESPONSIVE
   ========================= */

@media only screen and (max-width: 786px) {

    .nav-button {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: -800px;
        display: flex;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        width: 100%;
        height: 90vh;
        backdrop-filter: blur(20px);
        transition: 0.3s;
    }

    /* ✅ PUT IT HERE */
    .nav-menu.responsive {
        top: 100px;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu-btn {
        display: block;
    }

    .nav-menu-btn i {
        color: white;
        font-size: 25px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }
}
    .nav-menu-btn i:hover {
        background: rgba(255, 255, 255, 0.15);
    }

@media only screen and (max-width: 540px) {

    .form-box {
        width: 100%;
        height: 500px;
    }

    .register.container,
    .login-container {
        width: 100%;
        padding: 0 20px;
    }

    .register-container .two-forms {
        flex-direction: column;
        gap: 0;    
    }
}

/* =========================
   FOOTER
   ========================= */

.footer {
    background: linear-gradient(
        135deg,
        #020617,
        #0f172a,
        #111827
    );
    color: #e5e7eb;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 60px;
}

/* Logo */
.footer-logo {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: #f4a261;
    margin-bottom: 15px;
}

/* Column */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f4a261;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

/* Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #9ca3af;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f4a261;
    transform: translateX(3px);
}

/* Social Icons */
.footer-socials {
    margin-top: 15px;
}

.footer-socials i {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
    color: #9ca3af;
    transition: 0.3s ease;
}

.footer-socials a {
    text-decoration: none;
}


.footer-socials i:hover {
    color: #f4a261;
    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #6b7280;
}
/* USER ICON */
.nav-user {
    position: relative;
}

.nav-user i {
    font-size: 26px;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.nav-user i:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* SOCIAL MEDIA ICONS */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    transition: 0.3s ease;
}

.nav-socials .social-icon i {
    font-size: 22px;
    color: white;
    transition: 0.3s ease;
}

.nav-socials .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-socials .social-icon:hover i {
    color: #1877F2;  /* Facebook blue */
}

.nav-socials .social-icon[href*="facebook"]:hover i {
    color: #1877F2;
}

.nav-socials .social-icon[href*="linkedin"]:hover i {
    color: #0A66C2;
}

.nav-socials .social-icon[href*="tiktok"]:hover i {
    color: #fe2c55;
}

/* Social icons inside nav menu */
.nav-menu ul li .nav-socials {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 10px;
}

.nav-menu ul li .nav-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    transition: 0.3s ease;
    text-decoration: none;
}

.nav-menu ul li .nav-socials .social-icon i {
    font-size: 18px;
    color: white;
    transition: 0.3s ease;
}

.nav-menu ul li .nav-socials .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-menu ul li .nav-socials .social-icon[href*="facebook"]:hover i {
    color: #1877F2;
}

.nav-menu ul li .nav-socials .social-icon[href*="linkedin"]:hover i {
    color: #0A66C2;
}

.nav-menu ul li .nav-socials .social-icon[href*="tiktok"]:hover i {
    color: #fe2c55;
}

/* DROPDOWN */
.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 150px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.user-dropdown a {
    padding: 12px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f4a261;
}

/* SHOW */
.user-dropdown.show {
    display: flex;
}

/* WHO WE ARE (HOME VERSION ONLY) */
.home-about,
.about-company {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 80px;

    width: 100%;
    min-height: 100vh;
    padding: 80px 8%;

    background-image: url('images/homeabout.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
    color: white;

    overflow: hidden;
}

@media (max-width: 992px) {

    .home-about,
    .about-company {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 80px 5%;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

}

/* overlay */
.home-about::before,
.about-company::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.68);
    z-index: 1;
}

/* keep content above overlay */
.home-about > *,
.about-company > * {
    position: relative;
    z-index: 2;
}

/* reuse inner styles safely */
.home-about .about-card,
.about-company .about-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.home-about .about-label,
.about-company .about-label {
    color: #f4a261;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(244, 162, 97, 0.15);
    border-radius: 30px;
}

.home-about .about-stats,
.about-company .about-stats {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}
.home-about {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.home-about.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOME IMPACT VIDEO SECTION */
.home-impact {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8%;
    overflow: hidden;
    color: #ffffff;
    isolation: isolate;
}

.home-impact-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-impact-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.74)),
        rgba(0, 0, 0, 0.54);
    z-index: 1;
}

.home-impact::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.22;
    z-index: 2;
    pointer-events: none;
}

.home-impact-content {
    position: relative;
    z-index: 3;
    width: min(1100px, 100%);
    text-align: center;
}

.impact-label {
    margin-bottom: 18px;
    color: #f4a261;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.impact-title {
    margin: 0;
    font-family: 'Marcellus', serif;
    font-size: clamp(2.8rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
    font-variant-numeric: tabular-nums;
}

.impact-title.resolved {
    animation: impactResolve 900ms ease both;
}

.impact-line {
    width: min(420px, 70%);
    height: 2px;
    margin: 32px auto 0;
    background: linear-gradient(90deg, transparent, #f4a261, transparent);
    transform-origin: center;
    animation: impactLine 1.4s ease both;
}

@keyframes impactResolve {
    0% {
        filter: blur(4px);
        transform: translateY(8px);
        opacity: 0.7;
    }

    100% {
        filter: blur(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes impactLine {
    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .impact-title.resolved,
    .impact-line {
        animation: none;
    }
}

.about-hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.about-hero-gold {
  display: inline;
  color: #f4a261;
}

.about-lead {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 24px;
}

.about-card h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-card p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.stat {
  background: rgba(255,255,255,0.08);
  padding: 28px 36px;
  border-radius: 16px;
  text-align: center;
  min-width: 150px;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #ffffff;
}

.stat:hover h3 {
  color: #f4a261;
  font-weight: 800;
}

.stat:hover p {
  color: #111827;
  opacity: 1;
  font-weight: 600;
}

.stat h3 {
  font-size: 36px;
  color: #f4a261;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat p {
  font-size: 13px;
  opacity: .85;
  letter-spacing: 0.5px;
}

.nav-socials {
    text-decoration: none;
}

/* ===== ADD THIS (DO NOT REPLACE EXISTING HOME CSS) ===== */

.home-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 60px;
    width: 100%;
    align-items: center;
}

/* make sure home allows width */
.home {
    width: 100%;
}

/* RIGHT SIDE FORM */
.home-contact {
    background: rgba(0,0,0,0.65);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 520px;
    justify-self: end; /* push to right */
}

.home-contact h2 {
    margin-bottom: 15px;
    color: #f4a261;
    font-size: 20px;
    text-align: center;
}

/* INPUT (scoped only to home form to avoid conflict) */
.home-contact .input-group {
    position: relative;
    margin-bottom: 15px;
    height: 40px;
}

.home-contact input,
.home-contact textarea {
    width: 100%;
    padding: 8px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 13px;
}

.home-contact textarea {
    min-height: 60px;
    resize: vertical;
    font-family: inherit;
}

.home-contact label {
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 14px;
    color: White;
    transition: 0.3s;
}

.home-contact input:focus + label,
.home-contact input:valid + label,
.home-contact textarea:focus + label,
.home-contact textarea:valid + label {
    top: -10px;
    font-size: 12px;
    color: #f4a261;
}

/* BUTTON */
.home-contact button {
    width: 100%;
    padding: 12px 24px;
    border: none;
    background: #f4a261;
    color: #0b0932;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.home-contact button:hover {
    background: #e8923d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .home-container {
        grid-template-columns: 1fr;
    }

    .home-contact {
        justify-self: center;
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================
   MODERN CONTACT FORM
========================================= */

.modern-contact-form {
  width: 100%;
}

/* FORM CARD */
.contact-card-modern {
  background: rgba(6, 20, 62, 0.95);
  border: 1px solid rgba(244, 162, 97, 0.18);
  border-radius: 20px;
  padding: 30px;
  margin-top: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

/* HEADER */
.form-header {
  margin-bottom: 24px;
}

.form-header h2 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 8px;
  font-family: 'Marcellus', serif;
}

.form-header p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 14px;
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 16px;
}

/* 2 COLUMN LAYOUT */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row .input-group {
  flex: 1;
  margin-bottom: 0;
}

/* INPUTS */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(244, 162, 97, 0.45);
  background: rgba(255,255,255,0.92);
  color: #111827;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

/* TEXTAREA */
.textarea-input {
  min-height: 120px;
  resize: vertical;
}

/* FOCUS EFFECT */
.form-input:focus {
  border-color: #f4a261;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.15);
}

/* PLACEHOLDER */
.form-input::placeholder {
  color: rgba(17,24,39,0.5);
}

/* REQUIRED */
.required-text {
  color: #fca5a5;
  font-size: 14px;
  margin-bottom: 18px;
}

/* BUTTON */
.submit-btn-modern {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #f4a261;
  color: #111827;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.submit-btn-modern:hover {
  background: #ffb978;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244,162,97,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contact-card-modern {
    padding: 22px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .form-header h2 {
    font-size: 24px;
  }

}

/* =========================
   HOME FORM CLEAN STYLES
   ========================= */

.home-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #f4a261;
    background: rgba(255,255,255,0.85);
    color: #222;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    cursor: pointer;
}

.home-select:focus {
    border-color: #e76f51;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.home-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1.5px solid #f4a261;
    background: rgba(255,255,255,0.85);
    color: #222;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.home-input:focus {
    border-color: #e76f51;
}

.home-input-full {
    width: 100%;
    margin-bottom: 6px;
}

.home-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1.5px solid #f4a261;
    background: rgba(255,255,255,0.85);
    color: #222;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    min-height: 50px;
    margin-bottom: 6px;
    resize: vertical;
}

.home-textarea:focus {
    border-color: #e76f51;
}

.required-note {
    color: #e63946;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.home-submit-btn {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: #f4a261;
    color: #111827;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-submit-btn:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

.career-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.career-desc {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.career-link {
    color: #f4a261;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.career-link:hover {
    color: #e76f51;
}

.home-career-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background: #f4a261;
    color: #111827;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-career-btn:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

.home-send-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    border: none;
    background: #f4a261;
    color: #111827;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-send-btn:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE FIXES
   ADD THIS AT THE VERY BOTTOM OF YOUR style.css
   DO NOT REMOVE YOUR OTHER CODES
========================================================= */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Better spacing */
section {
    width: 100%;
}

/* =========================
   NAVBAR RESPONSIVE
========================= */

@media screen and (max-width: 992px) {

    .nav {
        justify-content: space-between;
        padding: 0 20px;
    }

    .nav-menu-btn {
        display: block;
        z-index: 9999;
    }

    .nav-menu-btn i {
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    .nav.scrolled .nav-menu-btn i {
        color: #111827;
    }

    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 6, 23, 0.97);
        backdrop-filter: blur(15px);
        transition: 0.4s ease;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.responsive {
        top: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-menu ul li .link {
        font-size: 20px;
        margin: 0;
    }

    .nav-socials {
        margin-top: 15px;
    }
}

/* =========================
   HOME SECTION RESPONSIVE
========================= */

@media screen and (max-width: 1200px) {

    .home {
        padding: 120px 30px 60px;
    }

    .home-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-content {
        max-width: 100%;
        text-align: center;
    }

    .home-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-contact {
        width: 100%;
        max-width: 100%;
        justify-self: center;
    }

    .home-content h1:first-child {
        font-size: 60px;
    }

    .home-content h1:nth-child(2) {
        font-size: 50px;
        max-width: 100%;
    }
}

/* TABLET */
@media screen and (max-width: 768px) {

    body {
        background-position: center;
        background-size: cover;
    }

    .wrapper {
        padding-top: 0;
    }

    .home {
        padding: 110px 20px 50px;
        min-height: auto;
        background-attachment: scroll;
    }

    .home-content h1:first-child {
        font-size: 48px;
    }

    .home-content h1:nth-child(2) {
        font-size: 38px;
        line-height: 1.2;
    }

    .home-content p {
        font-size: 15px;
    }

    .home-impact {
        min-height: 58vh;
        padding: 90px 20px;
    }

    .home-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .home-contact {
        padding: 22px;
        border-radius: 14px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .home-about,
    .about-company {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        text-align: center;
        gap: 40px;
        min-height: auto;
    }

    .about-hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .about-stats {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* MOBILE */
@media screen and (max-width: 480px) {

    .logo {
        height: 38px;
    }

    .logo-text {
        font-size: 18px;
    }

    .home {
        padding: 100px 15px 40px;
    }

    .home-content h1:first-child {
        font-size: 38px;
    }

    .home-content h1:nth-child(2) {
        font-size: 28px;
    }

    .home-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .home-impact {
        min-height: 52vh;
        padding: 80px 15px;
    }

    .impact-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .home-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .home-contact {
        padding: 18px;
    }

    .home-contact h2 {
        font-size: 18px;
    }

    .home-select,
    .home-input,
    .home-textarea {
        font-size: 14px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-card h1 {
        font-size: 30px;
    }

    .about-card p,
    .about-lead {
        font-size: 14px;
    }

    .stat {
        padding: 22px 20px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-col h3 {
        font-size: 17px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 14px;
    }
}





