/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

body.dark-mode {
    background-color: #000;
}

section {
    scroll-margin-top: 120px;
}

/* ============================= */
/* THEME TOGGLE BUTTON (ONLY) */
/* ============================= */

.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #111;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover feedback */
.theme-toggle:hover {
    transform: scale(1.1);
}

/* Dark mode icon color */
body.dark-mode .theme-toggle {
    color: #FFD369;
}

/* Icon smooth swap */
.theme-toggle i {
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Optional micro animation */
body.dark-mode .theme-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .theme-toggle {
        margin-right: 8px;
    }
}

/* ===== NAVBAR CONTAINER ===== */
.navbar-container {
    width: 100%;
    position:fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(6px);
}

/* ===== NAVBAR ===== */
.navbar {
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.logo img.company-logo {
    height: 100px;
    width: 200px;
    border-radius: 10px;
    margin-left: 100px;
}

/* Default: Light mode */
.logo-dark {
    display: none;
}

/* ===== NAV LINKS ===== */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
    margin-right: 100px;
    margin-top: 10px;
}

.nav-links li a {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 550;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover underline effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: linear-gradient(90deg, #F5A623, #FFD369, #D4AF37);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #FFD369;
    background-color: #0B0B0B;
    padding: 10px;
    border-radius: 10px;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER (MOBILE) ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.hamburger span {
    width: 36px;
    height: 3px;
    background: #0a0a0a;
    border-radius: 3px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* ===== PERFECT HAMBURGER → CROSS ===== */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.70px, 5.70px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.70px, -5.70px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .logo img.company-logo {
        height: 80px;
        width: 160px;
        margin-left: 40px;
    }

    .nav-links {
        gap: 30px;
        margin-right: 40px;
    }

    .nav-links li a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
        order: 3;
        margin-right: 10px;
    }

    .navbar {
        display: flex;
        align-items: center;
    }

    /* LOGO stays left */
    .logo {
        order: 1;
    }

    /* THEME TOGGLE */
    .theme-toggle {
        order: 2;
        margin-left: auto;   /* pushes toggle to right */
        margin-right: 12px;
    }

    /* Hide nav links initially */
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        margin: 0;
        display: none;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    /* When menu is open */
    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 18px;
        padding: 10px 20px;
    }

    .logo img.company-logo {
        height: 70px;
        width: 140px;
        margin-left: 20px;
    }
}

@media (max-width: 480px) {

    .logo img.company-logo {
        height: 60px;
        width: 120px;
        margin-left: 15px;
    }

    .nav-links {
        gap: 20px;
        padding: 25px 0;
    }

    .nav-links li a {
        font-size: 16px;
    }

    .hamburger span {
        width: 22px;
    }
}

/* ============================= */
/* NAVBAR – DARK MODE OVERRIDES */
/* ============================= */

body.dark-mode .navbar-container {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 211, 105, 0.25);
    backdrop-filter: blur(8px);
}

/* Nav links */
body.dark-mode .nav-links li a {
    color: #eaeaea;
}

/* Hover effect */
body.dark-mode .nav-links li a:hover {
    color: #FFD369;
    background-color: #2c2b2b;
}

/* Underline gradient stays premium */
body.dark-mode .nav-links li a::after {
    background: linear-gradient(90deg, #FFD369, #F5A623, #D4AF37);
}

/* Hamburger lines */
body.dark-mode .hamburger span {
    background: #FFD369;
}

/* Dark mode switch */
body.dark-mode .logo-light {
    display: none;
}

body.dark-mode .logo-dark {
    display: inline-block;
}

/* Mobile dropdown menu */
@media (max-width: 768px) {
    body.dark-mode .nav-links {
        background: #0f0f0f;
        box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    }
}

/* ---------------------------- Hero Section ------------------------------------ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    margin-top: 100px; /* navbar offset */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0B0B0B;
    overflow: hidden;
}

/* ===== Background Image ===== */
.hero-section-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    filter: brightness(0.90);
}

/* ===== Content Overlay ===== */
.hero-title-container {
    position: absolute;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    color: #ffffff;
}

/* ===== Hero Title ===== */
.hero-title {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;

    /* intentional visual positioning */
    margin-left: 100px;
    transform: translateY(-180px);
}

.hero-subtitle {
    font-size: 25px;
    font-weight: 400;
    color: #fdfbfb;
    transform: translateY(-180px);
    margin-left: 130px;
}

.hero-desc-container {
    position: absolute;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    /* text-align: center;  */
    color: #ffffff;
    margin-top: 50px;
} 

/* ===== DESCRIPTION ===== */
.hero-desc1 {
    font-size: 24px;
    margin-top: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    background-color:  rgba(250, 234, 152, 0.65);  /* transparent */
    color: #0a0a0a;
    width: 700px;
    text-align: center;
    padding: 10px;
    border-radius: 30px 5px 30px 5px;
    backdrop-filter: blur(0px); /* premium touch */
    letter-spacing: 0.44px;
}

.hero-desc2 {
    font-size: 24px;
    margin-top: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    background-color:  rgba(250, 234, 152, 0.65);  /* transparent */
    color: #0a0a0a;
    width: 580px;
    text-align: center;
    padding: 10px;
    border-radius: 30px 5px 30px 5px;
    backdrop-filter: blur(0px); /* premium touch */
    letter-spacing: 0.44px;
}

/* ===== CTA BUTTON ===== */
.cta-hero {
    background: linear-gradient(90deg, #F5A623, #FFD369, #D4AF37);
    /* border: 2px solid #0B0B0B; */
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    margin-top: 30px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-hero a {
    text-decoration: none;
    color: #0B0B0B;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 211, 105, 0.35);
}

@media (max-width: 1024px) {

    .hero-title {
        font-size: 44px;
        margin-top: -160px;
        margin-left: 60px;
    }

    .hero-subtitle {
        font-size: 22px;
        margin-left: 60px;
    }

    .hero-desc1,
    .hero-desc2 {
        font-size: 22px;
        width: 90%;
    }

    .hero-desc-container {
        margin-top: 40px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .hero-section {
        min-height: 85vh;
        margin-top: 0px;
        width: 100%;
    }

    .hero-img {
        width: 100%;
        height: 100vh;
        filter: brightness(0.90);
        object-fit: cover;
    }

    .hero-title-container,
    .hero-desc-container {
        text-align: center;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 36px;
        margin: 0;
        margin-top: 80px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin: 10px 0 20px;
    }

    .hero-desc1 {
        font-size: 20px;
        width: 100%;
        /* margin: 12px auto; */
        margin-top: 80px;
    }

    .hero-desc2 {
        font-size: 20px;
        width: 100%;
    }

    .cta-hero {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {

    .hero-section {
        min-height: 80vh;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-desc1,
    .hero-desc2 {
        font-size: 16px;
        padding: 10px;
        border-radius: 20px;
    }

    .cta-hero {
        padding: 12px 22px;
    }

    .cta-hero a {
        font-size: 14px;
    }
}

/* =============================================================== */

/* ===== ABOUT US SECTION ===== */
.aboutus-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto 0 150px;
    background-color: #f6f3ee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== LEFT CONTENT ===== */
.left-aboutus-section {
    width: 45%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutus-title {
    font-size: 40px;
    font-weight: 600;
    color: #0a0a0a;
    gap: 20px; /* controls spacing cleanly */
}

.aboutus-desc-title {
    color: black;
    font-size: 24px;
}

.aboutus-desc {
    margin: 20px 0 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.5px;
    color: #555555;
}

/* ===== POINTERS ===== */
.aboutus-pointers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding: 30px 10px 10px;
    background-color: #FFD369;
    border-radius: 10px;
    text-align: left;
}

.about-pointer {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0a0a0a;
}

/* ===== RIGHT IMAGE ===== */
.right-aboutus-section {
    width: 55%;
    position: relative;
}

.aboutus-img-section {
    width: 100%;
    height: 100%;
}

.about-img {
    width: 660px;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 0 10px 10px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .aboutus-section {
        margin: 80px auto 0;
        max-width: 95%;
    }

    .left-aboutus-section {
        padding: 0 40px;
    }

    .aboutus-title {
        font-size: 34px;
    }

    .aboutus-desc-title {
        color: black;
        font-size: 20px;
    }

    .aboutus-desc {
        font-size: 17px;
    }

    .about-img {
        width: 100%;
        height: 520px;
    }
}

@media (max-width: 768px) {
    .aboutus-section {
        flex-direction: column;
        margin: 60px 16px 0;
    }

    .left-aboutus-section,
    .right-aboutus-section {
        width: 100%;
    }

    .left-aboutus-section {
        padding: 40px 24px;
        text-align: center;
    }

    .aboutus-desc-title {
        color: black;
        font-size: 20px;
    }

    .aboutus-pointers {
        text-align: left;
        padding: 20px;
    }

    .about-img {
        width: 100%;
        height: 420px;
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 480px) {
    .aboutus-section {
        margin-top: 40px;
        border-radius: 8px;
    }

    .aboutus-title {
        font-size: 28px;
    }

    .aboutus-desc-title {
        color: black;
        font-size: 18px;
    }

    .aboutus-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-pointer {
        font-size: 16px;
        padding-left: 18px;
    }

    .about-img {
        height: 300px;
    }
}

/* ============================= */
/* ABOUT US – DARK MODE */
/* ============================= */

body.dark-mode .aboutus-section {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Title */
body.dark-mode .aboutus-title {
    color: #f5f5f5;
}

/* Description */
body.dark-mode .aboutus-desc {
    color: #eae8e8;
}

body.dark-mode .aboutus-desc-title {
    color: #FFD369;
}

/* Highlight pointers box */
body.dark-mode .aboutus-pointers {
    background: linear-gradient(135deg, #FFD369, #F5A623);
}

/* Pointer text */
body.dark-mode .about-pointer {
    color: #0a0a0a; /* stays dark for contrast on gold */
}

/* ====================== Product Section ======================== */

/* ===== PRODUCT SECTION ===== */
.product-section {
    max-width: 1200px;
    margin: 100px auto 0 150px;
    background-color: #f6f3ee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-section-title {
    font-size: 40px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 50px;
    margin-top: 30px;
    margin-left: 80px;
}

/* ===== GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0px 60px 60px 60px;
}

/* ===== CARD ===== */
.product-card {
    background-color: #fffefd;
    border-radius: 14px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: default;
}

/* ===== ICON ===== */
.product-icon {
    font-size: 30px;
    color: #f9c856; /* subtle golden tone */
    margin-bottom: 18px;
    background-color: black;
    border-radius: 100%;
    padding: 20px;
}

/* ===== TITLE ===== */
.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a0a0a;
}

/* ===== DESCRIPTION ===== */
.product-card p {
    font-size: 18px;
    font-weight: 500;
    color: #555555;
}

/* ===== CTA BUTTON ===== */
.cta-product {
    background: linear-gradient(90deg, #F5A623, #FFD369, #D4AF37);
    border: none;
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    margin: 40px auto 0;
    justify-content: center;
}

.call-expert {
    text-decoration: none;
    color: #0B0B0B;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.cta-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 211, 105, 0.35);
    cursor:default;
}

@media (max-width: 1024px) {
    .product-section {
        margin: 80px auto 0;
        max-width: 95%;
    }

    .product-section-title {
        margin-left: 40px;
        font-size: 34px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px 50px;
        gap: 24px;
    }

    .cta-product {
        margin: 40px auto 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-section {
        margin: 60px 16px 0;
    }

    .product-section-title {
        margin: 20px 0 40px;
        text-align: center;
        font-size: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
        gap: 20px;
    }

    .product-card {
        padding: 32px 22px;
    }

    .cta-product {
        margin: 30px auto 0;
        padding-bottom: 20px;
    }

    .call-expert {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-card p {
        font-size: 16px;
    }

    .product-icon {
        font-size: 24px;
        padding: 16px;
    }

    .cta-product {
        margin: 30px auto 0;
        padding-bottom: 10px;
    }

    .call-expert {
        font-size: 12px;
    }
}

/* ============================= */
/* PRODUCT SECTION – DARK MODE */
/* ============================= */

body.dark-mode .product-section {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Section Title */
body.dark-mode .product-section-title {
    color: #f5f5f5;
}

/* Cards */
body.dark-mode .product-card {
    background-color: #1e1e1e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

body.dark-mode .product-card:hover {
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8);
}

/* Product Icon */
body.dark-mode .product-icon {
    background-color: #000;
    color: #FFD369;
}

/* Card Title */
body.dark-mode .product-card h3 {
    color: #ffffff;
}

/* Card Description */
body.dark-mode .product-card p {
    color: #d0d0d0;
}

/* CTA Button */
body.dark-mode .cta-product {
    background: linear-gradient(135deg, #FFD369, #F5A623);
    box-shadow: 0 10px 25px rgba(255, 211, 105, 0.35);
}

/* CTA Text */
body.dark-mode .call-expert {
    color: #0a0a0a;
}

/* ===================================== Why Choose Us ========================================= */

/* ===== WHY CHOOSE SECTION ===== */
.whychoose-section {
    display: flex;
    width: 100%;
    margin: 100px auto 0;
    max-width: 1200px;
    background-color: #f6f3ee;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== LEFT SECTION (50%) ===== */
.left-whychoose-section {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whychoose-title {
    font-size: 38px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 30px;
    margin-left: 10px;
}

.whychoose-img-section {
    width: 100%;
}

.whychoose-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    margin-left: 30px;
}

/* ===== RIGHT SECTION (50%) ===== */
.right-whychoose-section {
    width: 50%;
    padding: 50px;
    display: flex;
    align-items: center;
    /* background-color: #ffffff; */
}

/* ===== POINTER LIST ===== */
.whychoose-pointers {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.whychoose-pointer {
    font-size: 20px;
    font-weight: 600;
    color: #060606;
    display: flex;
    align-items: center;
    letter-spacing: 0.4px;
    background-color: #fffdfdef;
    padding: 14px;
    border-radius: 10px;
    border-left:#FFD369 solid 14px;
}

/* ===== ICON STYLE ===== */
.whychoose-pointer i {
    color: #f9c856; /* premium gold */
    font-size: 20px;
    margin-right: 12px;
    background-color: #060606;
    padding: 10px;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .whychoose-section {
        margin: 80px auto 0;
        max-width: 95%;
    }

    .left-whychoose-section,
    .right-whychoose-section {
        padding: 40px;
    }

    .whychoose-title {
        font-size: 34px;
        margin-left: 0;
    }

    .whychoose-img {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .whychoose-section {
        flex-direction: column;
        margin: 60px 16px 0;
    }

    .left-whychoose-section,
    .right-whychoose-section {
        width: 100%;
        padding: 30px;
    }

    .whychoose-title {
        text-align: center;
        font-size: 30px;
    }

    .whychoose-img {
        max-width: 420px;
        margin: 0 auto;
    }

    .whychoose-pointers {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .whychoose-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .whychoose-pointer {
        font-size: 16px;
        padding: 12px;
        border-left-width: 8px;
    }

    .whychoose-pointer i {
        font-size: 16px;
        padding: 8px;
        margin-right: 10px;
    }

    .left-whychoose-section,
    .right-whychoose-section {
        padding: 24px 20px;
    }
}

/* ============================= */
/* WHY CHOOSE – DARK MODE */
/* ============================= */

body.dark-mode .whychoose-section {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Title */
body.dark-mode .whychoose-title {
    color: #f5f5f5;
}

/* Pointer container cards */
body.dark-mode .whychoose-pointer {
    background-color: #1f1f1f;
    color: #f0f0f0;
    border-left: 12px solid #FFD369;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

/* Icons */
body.dark-mode .whychoose-pointer i {
    background-color: #000;
    color: #FFD369;
}

/* Image soft contrast (optional but premium) */
body.dark-mode .whychoose-img {
    filter: brightness(0.95) contrast(1.05);
}

/* ------------------------------ NATIONWIDE PRESENCE SECTION ------------------- */

.presence-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 180px auto 0 150px;
    background: linear-gradient(90deg, #F5A623, #FFD369, #D4AF37);
    overflow: visible;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.315);
}

/* ===== LEFT CONTENT (50%) ===== */
.left-presence-section {
    width: 60%;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.nation-presence-title {
    font-size: 38px;
    font-weight: 700;
    color: #070707; /* gold highlight */
    margin-bottom: 18px;
}

/* Description */
.presence-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #050505;
    margin-bottom: 35px;
    max-width: 520px;
}

/* CTA */
.presence-cta a {
    display: inline-block;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    color: #FFC947;
    background-color: #050505;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* CTA Hover */
.presence-cta a:hover {
    background: linear-gradient(135deg, #FFC947, #FFD369);
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 211, 105, 0.35);
}

/* ===== RIGHT IMAGE (50%) ===== */
.right-presence-section {
    width: 50%;
    position: relative;
    overflow: visible; /* IMPORTANT */

}

.presence-img {
    width: 100%;
    height: 490px;
    min-height: 0%;   /* makes image taller than container */
    object-fit: cover;

    position: relative;
    margin-top: -50px;
    margin-bottom: -40px;     
    display: block;
    border-radius: 0px 10px 10px 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.315);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .presence-section {
        margin: 140px auto 0;
        max-width: 95%;
    }

    .left-presence-section {
        width: 55%;
        padding: 60px 40px;
    }

    .right-presence-section {
        width: 45%;
    }

    .nation-presence-title {
        font-size: 34px;
    }

    .presence-img {
        height: 440px;
        margin-top: -40px;
        margin-bottom: -30px;
    }
}

@media (max-width: 768px) {
    .presence-section {
        flex-direction: column;
        margin: 100px 16px 0;
        overflow: hidden;
    }

    .left-presence-section,
    .right-presence-section {
        width: 100%;
        padding: 20px 30px;
        text-align: center;
    }

    .presence-desc {
        max-width: 100%;
        margin: 0 auto 28px;
    }

    .presence-cta a {
        margin: 0 auto;
    }

    .presence-img {
        width: 90%;
        height: 360px;
        margin: -30px auto -30px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .presence-section {
        margin: 80px 14px 0;
        border-radius: 12px;
    }

    .nation-presence-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .presence-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    .presence-cta a {
        font-size: 15px;
        padding: 12px 28px;
    }

    .presence-img {
        width: 100%;
        height: 300px;
        margin: 0px auto 0;
        border-radius: 12px;
        box-shadow: none;
    }
}

/* -------------------- PARTNERS SECTION --------------------------- */

.partners-section {
    /* display: flex; */
    width: 100%;
    max-width: 1200px;
    margin: 180px auto 0 150px;
    background-color: #f6f3ee;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partners-title {
    margin-left: 80px;
    margin-top: 80px;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
}

/* ===== MARQUEE BASE ===== */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

/* LOGO STYLE */
.logo-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
.marquee-right .logo-track {
    animation: scroll-right 30s linear infinite;
}

.marquee-left .logo-track {
    animation: scroll-left 30s linear infinite;
}

/* Pause on hover (optional but premium) */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes scroll-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== CTA BUTTON ===== */
/* ===== PARTNER CTA ===== */
.partner-cta {
    margin-top: 40px;
    padding: 22px 30px;
    background: linear-gradient(90deg, #F5A623, #FFD369, #D4AF37);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    width: 500px;
    margin-left: 350px;
}

/* CTA Text Wrapper */
.partner-cta-question {
    text-align: center;
}

/* Text Lines */
.partner-cta-question p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #080808;
    line-height: 1.5;
}

/* Highlight Line */
.partner-cta-question p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #0b0b0b;
    margin-bottom: 6px;
}

/* WhatsApp Icon */
.partner-whatsapp-icon {
    margin-left: 6px;
    font-size: 50px;
    color: #05150bc8;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
}

/* Hover Effect */
.partner-whatsapp-icon:hover {
    transform: scale(1.25);
    color: #1d733c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .partners-section {
        margin: 140px auto 0;
        padding: 0 24px;
    }

    .partners-title {
        margin-left: 0;
        margin-top: 60px;
        text-align: center;
        font-size: 32px;
    }

    .logo-track {
        gap: 48px;
    }

    .partner-cta {
        width: 420px;
        margin: 40px auto 0;
    }

    .partner-whatsapp-icon {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        margin: 120px auto 0;
        padding: 0 20px;
    }

    .partners-title {
        font-size: 28px;
        margin: 50px 0 40px;
        text-align: center;
    }

    .logo-marquee {
        margin-bottom: 60px;
    }

    .logo-track img {
        height: 52px;
    }

    .partner-cta {
        width: 100%;
        max-width: 420px;
        padding: 20px;
        margin: 30px auto 0;
        flex-direction: column;
        gap: 12px;
    }

    .partner-cta-question p:first-child {
        font-size: 18px;
    }

    .partner-cta-question p {
        font-size: 16px;
    }

    .partner-whatsapp-icon {
        font-size: 42px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .partners-section {
        margin: 100px auto 0;
        padding: 0 16px;
        border-radius: 12px;
    }

    .partners-title {
        font-size: 24px;
        margin: 40px 0 30px;
    }

    .logo-track {
        gap: 36px;
    }

    .logo-track img {
        height: 44px;
    }

    .logo-marquee {
        margin-bottom: 50px;
    }

    .partner-cta {
        width: 100%;
        padding: 18px 16px;
        border-radius: 10px;
        margin-top: 20px;
    }

    .partner-cta-question p:first-child {
        font-size: 16px;
    }

    .partner-cta-question p {
        font-size: 15px;
    }

    .partner-whatsapp-icon {
        font-size: 38px;
    }
}

/* ============================= */
/* PARTNERS SECTION – DARK MODE */
/* ============================= */

body.dark-mode .partners-section {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Title */
body.dark-mode .partners-title {
    color: #f5f5f5;
}

/* Logos */
body.dark-mode .logo-track img {
    opacity: 0.85;
    filter: brightness(0.9) contrast(1.05);
}

body.dark-mode .logo-track img:hover {
    opacity: 1;
    filter: brightness(1) contrast(1.1);
}

/* CTA Wrapper */
body.dark-mode .partner-cta {
    background: linear-gradient(90deg, #FFD369, #F5A623, #D4AF37);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
}

/* CTA Text */
body.dark-mode .partner-cta-question p {
    color: #0b0b0b;
}

body.dark-mode .partner-cta-question p:first-child {
    color: #000000;
}

/* WhatsApp Icon */
body.dark-mode .partner-whatsapp-icon {
    color: #0e3d23;
}

body.dark-mode .partner-whatsapp-icon:hover {
    color: #138e44;
}

/*--------------------------- process Section -------------------------- */

/* ===== PROCESS SECTION ===== */
.work-section-container {
    max-width: 1200px;
    margin: 100px auto 0 150px;
    background-color: #f6f3ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* ===== TITLE ===== */
.work-title-section {
    font-size: 38px;
    font-weight: 700;
    color: #070707; /* gold highlight */
    margin-bottom: 18px;
    margin-left: 100px;
    margin-top: 50px;
}

.work-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* ===== WORK CARDS CONTAINER ===== */
.work-cards-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 0 40px 40px;
    margin-bottom: 30px;
}

/* ===== WORK CARD ===== */
.work-card {
    width: 190px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin: 30px 0;
    margin-left: 5px;
}

/* Alternating vertical rhythm */
.work-card.up {
    transform: translateY(-30px);
}

.work-card.down {
    transform: translateY(30px);
}

/* Hover – NO jump, premium lift */
.work-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ===== STEP NUMBER ===== */
.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #c4c3c3;
    margin-bottom: 14px;
    text-align: right;
}

/* ===== ICON ===== */
.work-icon i {
    font-size: 38px;
    color: #f3ac18;
    margin-bottom: 14px;
    display: inline-block;
}

/* ===== STEP TITLE ===== */
.work-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.85px;
}

/* ===== STEP DESCRIPTION ===== */
.work-step-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ===== ARROW ===== */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-arrow {
    font-size: 28px;
    color: #f3ac18;
    animation: arrow-move 1.6s ease-in-out infinite;
}

/* Smooth directional motion */
@keyframes arrow-move {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(12px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 0.6;
    }
}

@media (max-width: 1024px) {
    .work-section-container {
        margin: 120px auto 0;
        padding: 0 24px;
    }

    .work-title-section {
        margin-left: 0;
        margin-top: 40px;
        text-align: center;
        font-size: 34px;
    }

    .work-cards-container {
        justify-content: center;
        gap: 32px;
        padding: 0 20px 40px;
    }

    .work-card {
        width: 200px;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .work-section-container {
        margin: 100px auto 0;
        padding: 0 20px;
    }

    .work-title-section {
        font-size: 30px;
        margin: 30px 0 10px;
        text-align: center;
    }

    .work-cards-container {
        justify-content: center;
        gap: 26px;
        margin-top: 40px;
        padding: 0 16px 30px;
    }

    .work-card {
        width: 220px;
    }

    /* Reduce stagger to avoid awkward gaps */
    .work-card.up {
        transform: translateY(-12px);
    }

    .work-card.down {
        transform: translateY(12px);
    }

    .animated-arrow {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .work-section-container {
        margin: 80px auto 0;
        padding: 0 14px;
        border-radius: 10px;
    }

    .work-title-section {
        font-size: 24px;
        margin: 25px 0 5px;
        text-align: center;
    }

    .work-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        padding: 0 0 30px;
    }

    .work-card {
        width: 100%;
        max-width: 320px;
        margin: 0;
        padding: 26px 20px;
    }

    /* Remove stagger on mobile */
    .work-card.up,
    .work-card.down {
        transform: none;
    }

    .step-number {
        font-size: 40px;
    }

    .work-step-title {
        font-size: 18px;
    }

    .work-step-desc {
        font-size: 14px;
    }

    .animated-arrow {
        display: none; /* arrows clutter on mobile */
    }
}

/* ================= DARK MODE – WORK PROCESS SECTION ================= */

body.dark-mode .work-section-container {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* ===== TITLES ===== */
body.dark-mode .work-title-section,
body.dark-mode .work-title {
    color: #f1f1f1;
}

/* ===== WORK CARD ===== */
body.dark-mode .work-card {
    background-color: #1e1e1e;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

body.dark-mode .work-card:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.75);
}

/* ===== STEP NUMBER ===== */
body.dark-mode .step-number {
    color: #3a3a3a;
}

/* ===== ICON ===== */
body.dark-mode .work-icon i {
    color: #f3ac18; /* keep brand gold */
}

/* ===== STEP TITLE ===== */
body.dark-mode .work-step-title {
    color: #f1f1f1;
}

/* ===== STEP DESCRIPTION ===== */
body.dark-mode .work-step-desc {
    color: #b5b5b5;
}

/* ===== ARROWS ===== */
body.dark-mode .animated-arrow {
    color: #f3ac18;
    opacity: 0.85;
}

/* ================================= Testimonial Section ============================== */

/* Testimonial Section */
.testimonial-section {
    max-width: 1200px;
    margin: 100px auto 0 150px;
    background-color: #f6f3ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
    padding: 100px 0;
    background-color: #f6f3ee;
}

.testimonial-container {
    max-width: 900px;
    margin: auto;
}

/* Title */
.testimonial-title {
    font-size: 38px;
    font-weight: 700;
    color: #070707; /* gold highlight */
    margin-bottom: 50px;
    margin-top: -30px;
}

/* Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 40px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease;
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* Review text */
.testimonial-review {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

/* User */
.testimonial-user h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.testimonial-user span {
    font-size: 14px;
    color: #777;
}

/* Dots */
.testimonial-dots {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: -40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f3ac18;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .testimonial-section {
        margin: 120px auto 0;
        padding: 80px 24px;
    }

    .testimonial-container {
        max-width: 820px;
    }

    .testimonial-title {
        font-size: 34px;
        margin-bottom: 40px;
        margin-top: -20px;
        text-align: center;
    }

    .testimonial-card {
        padding: 45px 36px;
    }

    .testimonial-review {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        margin: 100px 16px 0;
        padding: 70px 20px;
        border-radius: 14px;
    }

    .testimonial-container {
        max-width: 100%;
    }

    .testimonial-title {
        font-size: 30px;
        margin-bottom: 36px;
        margin-top: -10px;
        text-align: center;
    }

    .testimonial-slider {
        min-height: 300px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-review {
        font-size: 16px;
        line-height: 1.65;
    }

    .testimonial-user h4 {
        font-size: 16px;
    }

    .testimonial-user span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        margin: 80px 14px 0;
        padding: 60px 16px;
        border-radius: 12px;
    }

    .testimonial-title {
        font-size: 24px;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .testimonial-slider {
        min-height: 320px;
    }

    .testimonial-card {
        padding: 32px 22px;
        border-radius: 16px;
    }

    .testimonial-review {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonial-user h4 {
        font-size: 15px;
    }

    .testimonial-user span {
        font-size: 12px;
    }

    .testimonial-dots {
        margin-top: 28px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        transform: scale(1.4);
    }
}

/* ============================= */
/* TESTIMONIAL – DARK MODE */
/* ============================= */

body.dark-mode .testimonial-section {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Title */
body.dark-mode .testimonial-title {
    color: #f5f5f5;
}

/* Card */
body.dark-mode .testimonial-card {
    background-color: #2a2a2a;
    box-shadow: 0 6px 6px rgba(209, 207, 207, 0.6);
}

/* Review text */
body.dark-mode .testimonial-review {
    color: #d6d6d6;
}

/* User name */
body.dark-mode .testimonial-user h4 {
    color: #ffffff;
}

/* User role */
body.dark-mode .testimonial-user span {
    color: #b5b5b5;
}

/* Dots */
body.dark-mode .dot {
    background: #555;
}

body.dark-mode .dot.active {
    background: #f3ac18;
}

/* ------------------------------------- FAQ + Contact Us ------------------------------------------- */

/* FAQ + CONTACT SECTION */
.faq-contact-section {
    max-width: 1200px;
    margin: 100px auto 0 150px;
    background-color: #f6f3ee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
    padding: 100px 0;
    background-color: #f6f3ee;
}

.faq-contact-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* LEFT FAQ */
.faq-section,
.contact-section {
    width: 50%;
    padding: 50px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* FAQ Scroll */
.faq-scroll {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar */
.faq-scroll::-webkit-scrollbar {
    width: 6px;
}
.faq-scroll::-webkit-scrollbar-thumb {
    background: #f3ac18;
    border-radius: 10px;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.faq-icon {
    color: #f3ac18;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    font-size: 15px;
    color: #555;
    margin-top: 12px;
    line-height: 1.6;
}

/* Divider */
.divider-line {
    width: 1px;
    background: #e0e0e0;
}

/* CONTACT FORM */
.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #f3ac18;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #f3ac18, #ffd369);
    color: #000;
}

/* =========================
   RESPONSIVE – 1024px
========================= */
@media (max-width: 1024px) {

    .faq-contact-section {
        margin: 80px 40px;
        padding: 80px 0;
    }

    .faq-contact-container {
        max-width: 90%;
    }

    .faq-section,
    .contact-section {
        padding: 40px;
    }

    .section-title {
        font-size: 26px;
    }
}

/* =========================
   RESPONSIVE – 768px
========================= */
@media (max-width: 768px) {

    .faq-contact-section {
        margin: 60px 20px;
        padding: 60px 0;
    }

    .faq-contact-container {
        flex-direction: column;
    }

    .faq-section,
    .contact-section {
        width: 100%;
        padding: 35px;
    }

    /* Remove vertical divider */
    .divider-line {
        display: none;
    }

    .faq-scroll {
        max-height: none;
        padding-right: 0;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }
}

/* =========================
   RESPONSIVE – 480px
========================= */
@media (max-width: 480px) {

    .faq-contact-section {
        margin: 40px 15px;
        padding: 40px 0;
        border-radius: 10px;
    }

    .faq-contact-container {
        border-radius: 10px;
    }

    .faq-section,
    .contact-section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 14px;
    }
}

/* ============================= */
/* FAQ + CONTACT – DARK MODE */
/* ============================= */

body.dark-mode .faq-contact-section {
    background-color: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Main container */
body.dark-mode .faq-contact-container {
    background: #2a2a2a;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

/* Section titles */
body.dark-mode .section-title {
    color: #ffffff;
}

/* FAQ item divider */
body.dark-mode .faq-item {
    border-bottom: 1px solid #3a3a3a;
}

/* FAQ question */
body.dark-mode .faq-question {
    color: #f0f0f0;
}

/* FAQ icon */
body.dark-mode .faq-icon {
    color: #f3ac18;
}

/* FAQ answer */
body.dark-mode .faq-answer {
    color: #cfcfcf;
}

/* Divider line */
body.dark-mode .divider-line {
    background: #3a3a3a;
}

/* Scrollbar */
body.dark-mode .faq-scroll::-webkit-scrollbar-thumb {
    background: #f3ac18;
}

/* CONTACT FORM INPUTS */
body.dark-mode .contact-form input,
body.dark-mode .contact-form select {
    background-color: #1f1f1f;
    border: 1px solid #444;
    color: #ffffff;
}

/* Placeholder */
body.dark-mode .contact-form input::placeholder {
    color: #9a9a9a;
}

/* Button */
body.dark-mode .contact-form button {
    background: #000;
    color: #f3ac18;
}

body.dark-mode .contact-form button:hover {
    background: linear-gradient(135deg, #f3ac18, #ffd369);
    color: #000;
}

/* ------------------------------- Footer ---------------------------------- */

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: #050505;
    color: #ffffff;
    margin-top: 100px;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: -20px;
}

/* Columns */
.footer-column {
    flex: 2;
}

/* Logo */
.footer-logo {
    width: 200px;
    margin-bottom: 25px;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #FFD369;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #cccccc;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #FFD369;
    padding-left: 5px;
}

/* Contact Text */
.footer-column p {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 12px;
}

.footer-column i {
    color: #FFD369;
    margin-right: 10px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.footer-socials a {
    font-size: 26px;
    color: #FFD369;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff;
    transform: scale(1.15);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 18px;
    background-color: #000000;
    font-size: 14px;
    color: #aaaaaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .footer-container {
        padding: 60px 30px;
        gap: 40px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-links a,
    .footer-column p {
        font-size: 14.5px;
    }
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 45px;
        padding: 55px 25px;
        margin-bottom: 0;
    }

    .footer-column {
        width: 100%;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-links a:hover {
        padding-left: 0; /* prevent awkward shift on mobile */
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .footer-container {
        padding: 45px 20px;
        gap: 35px;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a,
    .footer-column p {
        font-size: 14px;
    }

    .footer-socials a {
        font-size: 22px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 14px;
    }
}

body.dark-mode .footer-section {
    border-top: #FFD369 1px solid;
}

/* --------------------------- Messages ------------------------------ */

.site-messages {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.alert {
    background: #0a0a0a;
    color: #FFC947;
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.alert-success {
    border-left: 5px solid #f3ac18;
    border-right: 5px solid #f3ac18;
}

@media (max-width: 1024px) {

    .site-messages {
        top: 130px;
    }

    .alert {
        font-size: 14.5px;
        padding: 13px 24px;
    }
}

@media (max-width: 768px) {

    .site-messages {
        top: 110px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }

    .alert {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {

    .site-messages {
        top: 90px;
        width: calc(100% - 24px);
    }

    .alert {
        font-size: 13.5px;
        padding: 12px 18px;
        border-radius: 20px;
        line-height: 1.4;
    }
}

/* --------------------------------- Scroll-up ------------------------------------- */

/* Scroll to Top Button */
#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  font-size: 24px;
  background-color: #f3ac18;
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 20px rgba(245, 240, 146, 0.991);
  transition: background 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #000;
  transform: translateY(-4px);
  color: #f3ac18;
}

@media (max-width: 1024px) {
  #scrollToTopBtn {
    bottom: 40px;
    right: 40px;
    font-size: 22px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  #scrollToTopBtn {
    bottom: 30px;
    right: 30px;
    font-size: 20px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  #scrollToTopBtn {
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    padding: 8px 10px;
    border-radius: 8px;
  }
}

/* ---------------------------------------- Whatsapp Widget -------------------------------------------- */

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    right: 25px;
    bottom: 150px;
    z-index: 9999;
    font-family: inherit;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: relative;
    width: 66px;
    height: 66px;
    background-color: #159c47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid rgba(14, 107, 48, 0.6);
    opacity: 0;
    animation: whatsapp-pulse 2s ease-out infinite;
    animation-delay: 20s; /* starts after few seconds */
    pointer-events: none;
}

.whatsapp-icon::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 2px solid rgba(21, 147, 67, 0.3);
    animation: whatsapp-pulse 2s ease-out infinite;
    animation-delay: 15s;
    pointer-events: none;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.25);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Chatbox */
.whatsapp-chatbox {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

/* Header */
.chatbox-header {
    background: #127436;
    color: #fff;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chatbox-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit:fill;
}

.chatbox-header i {
    cursor: pointer;
    font-size: 18px;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.chatbox-header i:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Body */
.chatbox-body {
    padding: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Footer */
.chatbox-footer {
    padding: 12px;
    border-top: 1px solid #eee;
    text-align: center;
}

.chat-btn {
    display: inline-block;
    background: #127436;
    color: #fdf7f7;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: 600;
}

.chat-btn:hover {
    background: #72cf98;
    color: #0e0e0e;
    text-decoration: none;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(15px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1024px) {

    .whatsapp-widget {
        right: 20px;
        bottom: 130px;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .whatsapp-chatbox {
        width: 260px;
    }
}

@media (max-width: 768px) {

    .whatsapp-widget {
        right: 16px;
        bottom: 110px;
    }

    .whatsapp-icon {
        width: 56px;
        height: 56px;
        font-size: 34px;
    }

    .whatsapp-chatbox {
        width: 240px;
        bottom: 65px;
    }

    .chatbox-body {
        font-size: 15px;
    }

    .chat-btn {
        font-size: 16px;
        padding: 9px 14px;
    }
}

@media (max-width: 480px) {

    .whatsapp-widget {
        right: 14px;
        bottom: 90px;
    }

    .whatsapp-icon {
        width: 52px;
        height: 52px;
        font-size: 32px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    }

    .whatsapp-chatbox {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 62px;
        border-radius: 14px;
    }

    .chatbox-header {
        padding: 10px 14px;
        font-size: 14px;
    }

    .chatbox-body {
        font-size: 14px;
        padding: 14px;
    }

    .chat-btn {
        font-size: 15px;
        padding: 10px 14px;
        border-radius: 8px;
    }
}
