/*
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*/

/* ========================================================================== */
/* BASE */
/* ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --white: #ffffff;
    --rgbgold: rgb(190, 142, 46);
    --black: #010101;
    --dark-grey: #262626;
    --mid-grey: #555555;
    --light-grey: #f7f7f7;
    --dark-blue: #00000E;
    --gold-gold: #0A2A37;
    --gold: #be8e2e;
    --dark-gold: #bb8313;
    --light-gold: #f5f1e8;
    --ghost: #f8f8ff;
    --snow: #fffafa;
    --gainsboro: #c7c7c7;
    --ivory: #fffff0;
    --alice: #f0f8ff;
    --off: #fbfbfb;
    --antiflesh: #fafafa;
    --soft: #f0f0f0;
    --muted: #666;
    --box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 10vh
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

p {
    font-size: 18px;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10px;
}

.button {
    padding: 10px 20px;
    width: 275px;
    border-radius: 50px;
    border: none;
    background: var(--black);
    color: var(--white);
    text-align: center;
    font-weight: bold;
    z-index: 1;
}

.button.white {
    background: var(--white);
    color: var(--dark-blue);
}

.second-heading {
    color: var(--black);
    font-size: 3.5vw;
}

.second-heading span {
    color: var(--gold);
}

@media (max-width: 1023px) {
    .second-heading {
        font-size: 6.5vw;
    }
}

@media (max-width: 580px) {
    .second-heading {
        font-size: 45px;
    }
}

/* ========================================================================== */
/* LOADER */
/* ========================================================================== */

#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #f3f3f3;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fade-spinner {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.fade-spinner span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 18px;
    margin: -9px 0 0 -3px;
    border-radius: 999px;
    background: #bfbfbf;
    transform-origin: center -20px;
    animation: fadeSpinner 1.2s linear infinite;
}

.fade-spinner span:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.fade-spinner span:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.fade-spinner span:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.fade-spinner span:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.fade-spinner span:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.fade-spinner span:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.fade-spinner span:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.fade-spinner span:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.fade-spinner span:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.fade-spinner span:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.fade-spinner span:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.fade-spinner span:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes fadeSpinner {
    0% {
        opacity: 1;
        background: #111;
    }

    100% {
        opacity: 0.15;
        background: #d3d3d3;
    }
}

.logo {
    width: 300px;
    opacity: 0;
    transition: opacity 1s ease;
}

/* ========================================================================== */
/* REVEAL ANIMATIONS */
/* ========================================================================== */

.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s ease;
}

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

.reveal-1 {
    transition-delay: 0.1s;
    transition-duration: 0.5s;
}

.reveal-2 {
    transition-delay: 0.2s;
    transition-duration: 0.5s;
}

.reveal-3 {
    transition-delay: 0.3s;
    transition-duration: 0.5s;
}

.reveal-4 {
    transition-delay: 0.4s;
    transition-duration: 0.5s;
}

.mycontainer .content-25 {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mycontainer .content-25.reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.hero h1,
.hero .button {
    opacity: 0;
    transform: translateX(-40px);
}

/* Heading */
.hero.animate-in h1 {
    animation: slideLeft 0.7s ease forwards;
}

/* Button (delayed) */
.hero.animate-in .button {
    animation: slideLeft 0.7s ease forwards;
    animation-delay: 0.25s;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.services-grid .service-card {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform-origin: center center;
    will-change: transform, opacity;
}

.services-grid .service-card.service-reveal {
    opacity: 1;
    transform: scale(1);
}


.industries .industry-row {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.industries .industry-row.industry-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================== */
/* FLOATING WHATSAPP */
/* ========================================================================== */

.whatsapp-float {
    position: fixed;
    width: 8vh;
    height: 8vh;
    bottom: 6vh;
    right: 2.5%;
    background: var(--black);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--white);
}

.whatsapp-float:hover {
    background-color: #25D366;
}

@media (max-width: 1023px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

/* ========================================================================== */
/* HEADER */
/* ========================================================================== */

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 15vh;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 8vh;
}

@media (max-width: 560px) {
    .header-logo {
        height: 6vh;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 25px;
    min-width: 40%;
}

nav a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

nav a.active {
    background: var(--white);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
}

nav a:hover {
    color: var(--mid-grey);
}

.social {
    display: flex;
    gap: 30px; 
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid var(--white);
    display: grid;
    place-items: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.icon-btn.side-nav {
    background: var(--black); 
} 

.icon-btn.side-nav svg { 
    fill: var(--white);
}

#scrolling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s ease, opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
}

#scrolling.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

#scrolling .header-logo {
    height: 6vh;
    width: auto;
}

/* ========================================================================== */
/* MOBILE NAV */
/* ========================================================================== */

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 1090;
}

#overlay.show {
    opacity: 1;
    visibility: visible;
}

#menuBtn {
    position: fixed;
    right: 20px;
    top: 7.5vh;
    transform: translateY(-50%);
    z-index: 1001;
    transition: top 0.3s ease;
}

.scrolled #menuBtn {
    top: 5vh;
}

.hamburger {
    display: none;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.35s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

@media (max-width: 1023px) {
    .hamburger {
        display: block;
    }

    #big-screens-only {
        display: none;
    }
}

#sideNav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(90vw, 320px);
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1100;
    overflow-y: auto;
    padding: 15px;
}

#sideNav.show {
    transform: translateX(0);
}

.top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

#closeBtn {
    background: var(--black);
    color: var(--white);
    padding: 10px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 10px;
}

.menu {
    padding: 0;
    margin: 0;
}

.menu>li {
    border-bottom: 1px solid #e5e5e5;
}

.menu a.bolder,
.dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    text-decoration: none;
    color: #111;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.bolder {
    font-size: 15px;
    font-weight: bold;
}

.sub-menu {
    padding: 0 0 0.75rem 1rem;
    margin: 0;
    display: none; 
}

.has-submenu.open .sub-menu {
    display: block;
}

.has-submenu.open .sub-menu li {
    margin: 2vh 0; 
}

.has-submenu.open .sub-menu li a { 
    text-decoration: none;
    color: #111;
}

.has-submenu.open .icon {
    content: "×"; 
}

.has-submenu .icon {
    font-size: 18px; 
}

.side-logo {
    width: 100%;
    margin: 3vh 0;
} 

.menu p {
    margin: 3vh 0;
    font-size: 14px;
} 

/* ========================================================================== */
/* HERO */
/* ========================================================================== */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 80vh;
    padding: 10vh 5%;
    background: radial-gradient(var(--dark-grey), var(--black));
}

.hero p {
    font-size: 18px;
    color: var(--white);
    z-index: 1;
}

.hero h1 {
    font-size: 18px;
    color: var(--white);
    z-index: 1;
    margin-bottom: 3vh;
}

.hero h1 span {
    font-size: 6vw;
    color: var(--white);
    line-height: 1;
}

.hero-image {
    position: absolute;
    right: 2.5%;
    bottom: 0;
    width: auto;
    height: 60vh;
    z-index: 0;
}

#small-hero {
    display: none;
}

@media (max-width: 1023px) {
    .hero-image {
        width: auto;
        height: 60vh;
        margin-right: 0;
    }

    #big-hero {
        display: none;
    }

    #small-hero {
        display: block;
    }

    .hero h1 {
        font-size: 15px;
    }

    .hero h1 span {
        font-size: 10vw;
    }
}

@media (max-width: 767px) {
    .hero { 
    padding: 5vh 5%; 
}
}

@media (max-width: 767px) {
    .hero h1 span {
        font-size: 65px;
    }
}

@media (max-width: 424px) {
    .hero h1 {
        font-size: 13px;
    }

    .hero h1 span {
        font-size: 14vw;
    }
}

/* ========================================================================== */
/* ABOUT / HIGHLIGHTS */
/* ========================================================================== */

.mycontainer {
    width: 100%;
    padding: 6vh 5% 6vh;
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mycontainer.inside-services { 
    grid-template-columns: repeat(1, 1fr);
    padding: 0 0; 
}

.mycontainer.after-industries {
    padding: 10vh 5% 5vh;
}

.content-25 {
    grid-column: span 1;
    height: 8vh;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--light-gold);
}

.content-25.inside-services { 
    height: 5vh;
    box-shadow: none; 
    border: 1px solid var(--gainsboro);
}

.content-25.inside-services h3 {
    font-size: 15px;
}

.content-25 h3 {
    font-size: 1.275vw;
}

.content-25 h2 {
    font-size: 1.275vw;
}

.content-25.golden {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 1023px) {
    .mycontainer {
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 0;
    }

    .content-25 h3 {
        font-size: 1.5vw;
    }
}

@media (max-width: 560px) {
    .content-25 {
        grid-column: span 3;
    }

    .content-25 h3 {
        font-size: 16px;
    }
}

.new-about {
    width: 100%;
    padding: 5vh 5% 10vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: stretch;
}

.new-about.pages {
    grid-template-columns: repeat(1, 1fr); 
    padding: 2vh 5%;

}

@media (max-width: 1023px) {
.new-about.pages { 
    padding: 5vh 5% 3vh;

}
}

.new-about.darker {
    background: var(--soft);
    border-radius: 0; 
} 

.about-contents {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 10px;
}


.about-contents h2,
.about-contents p {
    margin-bottom: 3vh;
}

.about-contents.pages h2,
.about-contents.pages p {
    margin-bottom: 3vh;
}

.stats {
    width: 100%;
}

.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.counter {
    grid-column: span 1;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease;
}

.counter:hover {
    transform: translateY(-5px);
}

.counter h3 {
    width: 15vh;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--gainsboro);
    font-size: 2vw;
    margin-bottom: 2vh;
}

.counter h3.golden {
    background: var(--black);
    color: var(--white);
}

.counter h3,
.counter h4 {
    color: var(--black);
}

@media (max-width: 1023px) {
    .about-contents {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .counter h3 {
        font-size: 3vw;
    }
}

@media (max-width: 767px) {
    .counter h3 {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .counters {
        gap: 25px;
    }

    .counter {
        grid-column: span 3;
    }
}

/* ========================================================================== */
/* SERVICES */
/* ========================================================================== */

.services-section {
    padding: 10vh 5%;
    background: var(--light-grey);
} 

.services-section.services-page {
    padding: 0 5%;
    background: var(--white);
} 

.card {
    background: var(--off);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--soft);
    border-radius: 10px;
}

.card.services-page {
    background: var(--black); 
}

.card.golden {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-grid.services-page { 
    grid-template-columns: repeat(4, 1fr); 
}

.service-card {
    grid-column: span 1;
    padding: 20px;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h4 {
    margin-bottom: 2vh;
}

.service-top {
    margin-bottom: 18px;
}

.service-top h3 {
    font-size: 1.5vw;
    line-height: 1.1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-top h2 {  
    margin-bottom: 2vh; 
}

.sector-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 50%;
    margin: 2vh 10px 2vh 0;
}

.sector-img img {
    width: 40px;
    height: 40px;
}

.muted {
    color: var(--muted);
}

.service-card ul {
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
    font-weight: 600;
}

.service-card li {
    position: relative; 
    color: var(--black);
}
 
.link-arrow {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
}

.link-arrow.white {
    background: var(--white);
    color: var(--black);
}

@media (max-width: 1023px) {
    .service-card {
        grid-column: span 2;
    }

    .service-top h3 {
        font-size: 25px;
    }
}

@media (max-width: 715px) {
    .service-card {
        grid-column: span 4;
    }
}

/* ========================================================================== */
/* PROCESS / INDUSTRIES */
/* ========================================================================== */

.industries {
    width: 100%;
    margin: auto;
    padding: 10vh 5%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1023px) {
    .industries.services-page { 
    padding: 7.5vh 5% 0; 
}
}

.industry-row {
    width: 100%;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid #eeeeee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.margin-top {
    margin-top: 5vh;
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.industry-title {
    font-size: 21px;
    font-weight: 600;
    color: #1f1f1f;
    padding-right: 24px;
}

.industry-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.65;
}

@media (max-width: 1023px) {
    .industries {
        text-align: center;
    }

    .industry-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        margin-bottom: 50px;
        padding: 15px;
    }

    .margin-top {
        margin-top: 10vh;
    }

    .industry-icon {
        margin: -40px 0 2vh 0;
    }
}

@media (max-width: 900px) {
    .industry-row {
        grid-template-columns: 70px 1fr;
        grid-template-areas:
            "icon title"
            "text text";
    }

    .industry-icon {
        grid-area: icon;
    }

    .industry-title {
        grid-area: title;
    }

    .industry-text {
        grid-area: text;
    }
}

/* ========================================================================== */
/* CTA / BACKGROUND IMAGE */
/* ========================================================================== */

.background-image {
    width: 100%;
    height: 60vh;
    background-image: url(images/Accounting-Clear.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.over {
    background: rgba(0, 0, 0, 0.90);
    height: 60vh;
}

.why-us {
    height: 100%;
    width: 90%;
    margin: auto 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us h4,
.why-us h2,
.why-us p {
    color: var(--white);
}

.why-us h4 {
    font-size: 16px;
}

.why-us h2 {
    font-size: 6vw;
    margin: 1vh 0 3vh;
}

@media (max-width: 767px) {
    .why-us h4 {
        font-size: 15px;
    }

    .why-us h2 {
        font-size: 10vw;
    }
}

@media (max-width: 580px) {
    .why-us h4 {
        font-size: 12px;
    }

    .why-us h2 {
        font-size: 11vw;
    }
}

/* ========================================================================== */
/* CLIENTS */
/* ========================================================================== */

.clients-section {
    padding: 10vh 0;
    background: var(--light-grey);
}

.logos {
    width: 90%;
    margin: 0 5%;
    overflow: hidden;
}

.logos-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 25%;
    align-items: center;
    transition: transform 0.8s ease;
    pointer-events: none;
}

.client-logo {
    width: 50%;
    margin: 0 25%;
    max-height: 15vh;
    object-fit: contain;
    filter: grayscale(100%);
    transform: scale(0.9);
    transition: filter 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

@media (max-width: 767px) {
    .client-logo {
        width: 75%;
        height: auto;
    }
}

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

footer {
    width: 100%;
    padding: 10vh 5%;
    background: radial-gradient(var(--black), var(--black));
}

.top-footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-logo {
    width: 80%;
    margin-right: 20%;
}

.footer-column {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-column.contacts {
    width: 320px;
}

.footer-column h3 {
    font-size: 18px;
    color: var(--white); 
    margin-bottom: 5vh;
}

.footer-column ul li {
    margin-bottom: 2vh;
}

.footer-column ul li a {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
}

.footer-column ul li a:hover {
    color: var(--muted);
}

.footer-column ul li a.active-page {
    color: var(--mid-grey);
}

.footer-column ul li i {
    color: var(--white);
}

.contribution {
    height: 50px;
    width: 250px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bee {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 4vh;
    background: var(--dark-grey);
    color: var(--white);
    border: none;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.bee.active-btn {
    background: var(--white);
    color: var(--black);
} 
 
.active-btn {
    background: var(--white);
    color: var(--black);
}  

.display span {
    display: none;
    margin-bottom: 2vh;
}

.display .active-content {
    display: inline-block;
    color: var(--white);
    font-weight: bold;
    font-size: 13px;
}
  
footer .social {
    display: flex;
    gap: 25px;
    margin-bottom: 2vh;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 18px rgba(94, 10, 10, 0.18);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

.subfooter {
    margin-top: 5vh;
    padding-top: 2vh;
    border-top: 1px solid rgba(234, 247, 238, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: rgba(234, 247, 238, 0.62);
    font-size: 12px;
    flex-wrap: wrap;
}

.legal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.legal a {
    color: rgba(234, 247, 238, 0.62);
}

.legal a:hover {
    color: rgba(234, 247, 238, 0.88);
} 

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
} 

.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    padding: 20px;
}

.legal-modal-content {
    background: var(--white);
    color: var(--black);
    max-width: 700px;
    margin: 5vh auto;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.legal-modal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.legal-modal-content p {
    margin-bottom: 15px;
    color: var(--mid-grey);
    line-height: 1.8;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    border: none;
    background: var(--black);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
} 

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(234, 247, 238, 0.16);
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, border 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(234, 247, 238, 0.22);
}

@media (max-width: 1023px) {
    .footer-column {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .footer-column {
        grid-column: span 4;
    }

    .footer-logo {
        width: 100%;
        margin: 0;
    }

    .footer-column.logo-container {
        align-items: center;
        text-align: center;
    }

    .contribution {
        margin: 5vh 0 10vh;
    }

    .bee {
        margin-top: 10vh;
    }

    .social {
        margin-top: 3vh;
    }
}

/* ==========================
   ABOUT PAGE
========================== */ 

.about-white-section {
    background: var(--white); 
}

.section-intro {
    margin-bottom: 5vh;
}

.section-intro h4 {
    margin-bottom: 1vh;
}

.section-intro p {
    max-width: 700px;
    color: var(--muted);
    margin-top: 2vh;
} 
 
/* ==========================
   CONTACT PAGE
========================== */

.contact-hero {
    height: 78vh;
}

.contact-page-section {
    width: 100%;
    padding: 5vh 5% 10vh;
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form-card,
.contact-info-card {
    background: var(--off);
    border: 1px solid var(--soft);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    padding: 30px;
}

@media (max-width: 424px) {
    .contact-form-card,
.contact-info-card { 
    padding: 10px;
}

}


.contact-form-card p,
.contact-info-card p {
    margin-bottom: 2vh;
}

.contact-intro {
    color: var(--muted);
    margin-bottom: 3vh !important;
}

.contact-form-custom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 8px;
    border: 1px solid var(--gainsboro);
    background: var(--white);
    color: var(--black);
    font-size: 15px;
    outline: none;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.contact-submit-btn {
    width: 220px;
    cursor: pointer;
}

.contact-info-wrap {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
}

.contact-info-card h3 {
    margin-bottom: 2vh;
}

.contact-info-card ul {
    display: grid;
    gap: 15px;
    padding: 0;
}

.contact-info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--black);
    line-height: 1.7;
}

.contact-info-card ul li i {
    margin-top: 4px;
}

.contact-info-card ul li a {
    color: var(--black);
}

.golden-card {
    background: var(--black);
}

.golden-card h3,
.golden-card ul li {
    color: var(--white);
}

@media (max-width: 1023px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-hero {
        height: 70vh;
    }
}