@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
 
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    height: auto;
}

body.loading {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* LOADER WRAPPER */
#loader {
    position: fixed;
    inset: 0;
    background: #000; /* match your theme */
    display: flex;
    width: 100%;
    height: 100dh;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    transition: opacity 0.6s ease, visibility 0.6s;
}

/* HIDE STATE */
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* CIRCLE */
.loader-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* TEXT */
.loader-circle span {
    color: #fff;
    font-size: 13px;
    letter-spacing: 3px;
}

/* ANIMATED RING */
.loader-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    background: conic-gradient(
        transparent 0deg,
        transparent 260deg,
        #03a81f 300deg,
        #28a745 360deg
    );

    -webkit-mask: radial-gradient(farthest-side, transparent 85%, #000 86%);
    mask: radial-gradient(farthest-side, transparent 85%, #000 86%);

    animation: spin 1.2s linear infinite;
}

/* SOFT GLOW */
.loader-circle::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;

    background: radial-gradient(circle, #03a81f, transparent 70%);
    filter: blur(3em);
}

/* ROTATION */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#scrollTopBtn{
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 55px;
    border-radius: 3px;
    border: none;
    background: #03a81f;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn:hover{
    background: #fff;
    color: #03a81f;
    transform: translateY(-5px);
}

#toast-container {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    top: 20px;
    left: 10px;
    z-index: 9999;
}

.toast {
    width: auto;
    margin-bottom: 10px;
    padding: 15px 20px;
    color: #fff;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { background: #28a745; }
.toast.error   { background: #dc3545; }
.toast.warning { background: #ffc107; color:#000; }
.toast.info    { background: #17a2b8; }

.toast .close {
    position: absolute;
    top: 25%;
    cursor: pointer;
    font-weight: bold;
    margin: 0 10px;
}

.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #fff;
    width: 100%;
    transform-origin: left;
}

.nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #1dbc37;
    z-index: 10 !important;
    transition: all 0.4s ease;
}

/* Scroll state */
.nav.scrolled {
    background: #03a81f;
    backdrop-filter: blur(8px);
    padding: 5px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav .logo{
    width: 150px;
    height: 60px;
}

.nav .logo img{
    width: 100%;
    height: 100%;
}

.nav .links{
    display: flex;
}

.nav .links a {
    position: relative;
    color: #fff;
    font-size: 14px;
    margin: 0 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 2px;
    letter-spacing: 2px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.nav .links a:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

.nav .links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;

    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.nav .links a:hover::after {
    transform: translateX(0);
}

.nav .links button{
    width: auto;
    background: #fff;
    color: #03a81f;
    border: none;
    outline: none;
    padding: 10px 5px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
}

.hamburger {
    width: 30px;
    height: 22px;
    display: none; /* visible on mobile only */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 5px;
    width: 90%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.4s ease;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.hamburger span:nth-child(2){
    width: 50%;
}

.hamburger span:nth-child(3){
    width: 20%;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 90%;
}

/* ===============================
   HOME MEDIA CONTAINER
================================= */

.home_media {
    position: relative;
    width: 100%;
    height: 100dvh; /* modern fix */
    overflow: hidden;
}

/* ===============================
   SLIDES SYSTEM
================================= */

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: opacity;
}

/* ===============================
   TEXT CONTENT
================================= */

.home_info {
    position: absolute;
    left: 5%;
    bottom: 8%;
    width: 50%;
    z-index: 1;
}

/* ===============================
   HERO TITLE
================================= */
.texts h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #03a81f;
    letter-spacing: 5px;
    line-height: 0.95;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.6),
        0 8px 20px rgba(0,0,0,0.4);
}

/* ===============================
   DESCRIPTION
================================= */

.texts h6 {
    font-size: 20px;
    text-transform: capitalize;
    color: #03a81f;
    font-weight: 400;
    letter-spacing: 2px;

    margin: 15px 0;

    display: inline-block;
    background: #fff;
    padding: 3px 10px;
}

/* ===============================
   BUTTONS
================================= */

.info_btns {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.info_btns span {
    width: 70px;
    height: 3px;
    background: #03a81f;
    margin-right: 15px;
}

.info_btns button {
    margin-right: 15px;
    border: 2px solid #03a81f;
    background: #03a81f;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    padding: 10px 20px;
    letter-spacing: 2px;
    transition: 0.3s ease;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.info_btns button:hover {
    background: #fff;
    color: #03a81f;
    cursor: pointer;
}

#close_contact, #close_contact1{
    border: 2px solid #03a81f;
    background: #03a81f;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    margin-top: 10px;
    padding: 10px 20px;
    letter-spacing: 2px;
    transition: 0.3s ease;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* ===============================
   TEXT ANIMATION (Triggers on slide change)
================================= */

.texts > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.slide.active .texts > * {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .texts > *:nth-child(1) {
    transition-delay: 0.3s;
}

.slide.active .texts > *:nth-child(2) {
    transition-delay: 0.6s;
}

.slide.active .texts > *:nth-child(3) {
    transition-delay: 0.9s;
}

/* ===============================
   MEDIA BUTTONS
================================= */

.media_btns {
    position: absolute;
    right: 3%;
    bottom: 8%;
    z-index: 4;
}

.media_btns button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #03a81f;
    background: transparent;
    color: #03a81f;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.media_btns button:hover {
    transform: scale(1.1);
}

.register{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7% 30px 3% 30px;
}

.register .info{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.register .info h1{
    font-size: 3.5em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 900;
    color: #03a81f;
    border-left: 5px solid #03a81f;
    padding-left: 3px;
}

.register .login{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.register .login form{
    width: 100%;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}

.register .login form .header{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #03a81f;
    margin-bottom: 10%;
}

.register .login form .header h2{
    font-size: 2em;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #03a81f;
}

.register .login form .header .btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

.register .login form .header button{
    width: auto;
    outline: none;
    background: #03a81f;
    border: 1px solid #03a81f;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    padding: 5px;
    text-transform: capitalize;
    cursor: pointer;
}

.register .login form .header button:hover{
    background: #fff;
    color: #03a81f;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    font-size: 18px;
}

.register .login form .items{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: left;
}

.register .login form .items p{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #03a81f;
    text-transform: uppercase;

}

.register .login form .items input{
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    text-transform: capitalize;
    color: #03a81f;
    border-bottom: 1px solid #03a81f;
    outline: none;
    background: none;
    padding: 10px 5px;
    margin-bottom: 3%;
}

.register .login form .items button{
    border: 2px solid #03a81f;
    outline: none;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 10px 20px;
    background: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.register .login form .items button:hover{
    background: #03a81f;
    color: #fff;
}

.listings {
    width: 100%;
    padding: 20px;

    display: flex;
    flex-wrap: wrap;              /* allows wrapping */
    flex-direction: row;
    justify-content: flex-start;  /* start from left */
    align-items: flex-end;        /* push items to bottom */

    gap: 5px;

    overflow-x: hidden;           /* prevent horizontal scroll */
}

.listings .header{
    width: 100% !important;
}

.listings .header h3{
    text-transform: uppercase;
    font-size: 2em;
    color: #03a81f;
    padding-left: 5px;
    letter-spacing: 3px;
    border-left: 3px solid #03a81f;
}

.listing_parent {
    width: 280px;
    min-width: 280px;
    height: 400px;

    margin: 5px;
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: flex-start;

    background: #fff;
    border-radius: 8px;
    overflow: hidden;

    box-shadow:
      0 4px 10px rgba(0, 0, 0, 0.15),
      0 0 20px rgba(0, 0, 0, 0.08);
}

.listings .items {
    width: 100%;
    flex: 1;                    /* 👈 fills space */

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 10px;
    gap: 5px;
}

.listings .items h1 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #03a81f;
    margin: 0;
}

.listings .items h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.listings .items p {
    font-size: 13px;
    margin: 0;
    color: #444;
}

.listings .items img, video{
    width: 100%;
    height: 100%;
    border-radius: 4px;
    height: auto;
    max-height: 180px !important;
    object-fit: cover; /* keeps it inside nicely */
    box-shadow: none;
    border-bottom: 1px solid gray;
}

.listings .items .mini_map{
    width: 100%;
    height: 100%;
}

.listings .items .mini_map button {
    position: relative;
    outline: none;
    color: #03a81f;
    border: 2px solid #03a81f;
    border-radius: 3px;
    background: transparent;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px;
    margin: 5px 5px 5px 0;
    transition: color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.listings .items .mini_map button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #03a81f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 0, 0, 0.1);
    z-index: -1;
}


.listings .items .mini_map button:hover::before {
    transform: scaleX(1);
}

.listings .items .mini_map button:hover {
    color: #fff;
}

.about{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.about .items{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about .items h1{
    font-family: 'Anton', sans-serif;
    font-size: 15em;
    font-weight: 900;
    text-transform: uppercase;
    color: #03a81f;
    letter-spacing: 80px;
}

.about .items h2{
    font-size: 2em;
    width: 60%;
    font-weight: 900;
    text-transform: uppercase;
    color: #03a81f;
    letter-spacing: 3px;
}

.about .items p{
    width: 50%;
    font-size: 20px;
}

.about .items span{
    width: 20%;
    background: #000;
    height: 3px;
}

.about .items .social_media{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.about .items .social_media button {
    position: relative;
    outline: none;
    border: 2px solid #03a81f;
    border-radius: 3px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 12px 20px;
    transition: color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.about .items .social_media button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #03a81f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 0, 0, 0.1);
    z-index: -1;
}


.about .items .social_media button:hover::before {
    transform: scaleX(1);
}

.about .items .social_media button:hover {
    color: #fff;
}

.about .items .social_media button i{
    font-size: 30px;
    margin-right: 20px;
}
/*
.about .items .social_media button:nth-child(1){
    background: #73f369;
}
.about .items .social_media button:nth-child(2){
    background: #5ca3e0;
}
.about .items .social_media button:nth-child(3){
    background: #e15555;
}
.about .items .social_media button:nth-child(4){
    background: #398090;
}

*/

.about .items .social_media button:hover{
    background: #fff;
}

.blocks{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3% 20px;
}

.blocks .items{
    width: 20%;
    max-width: 20%;
    height: 350px;
    margin: 0 10px;
    border: 1px solid #03a81f;
    padding: 5px;
    border-radius: 5px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blocks .items h1{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #03a81f;
    text-align: center;
    margin-bottom: 20px;
}

.blocks .items p{
    font-size: 15px;
    color: #03a81f;
}

.subscribe{
    width: 100%;
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.subscribe .items{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe .items h1{
    font-size: 2em;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #03a81f;
    text-align: center;
    margin-bottom: 3%;
}

.subscribe .items form{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.subscribe .items form p{
    font-size: 25px;
    color: #03a81f;
    text-transform: uppercase;
}

.subscribe .items form input{
    width: 25%;
    border: none;
    outline: none;
    font-size: 18px;
    color: #03a81f;
    border-bottom: 2px solid #03a81f;
    outline: none;
    background: transparent;
    padding: 10px 5px;
    margin: 0 20px;
}

.subscribe .items form button {
    position: relative;
    outline: none;
    border: 2px solid #03a81f;
    border-radius: 3px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 20px;
    transition: color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.subscribe .items form button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #03a81f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 0, 0, 0.1);
    z-index: -1;
}


.subscribe .items form button:hover::before {
    transform: scaleX(1);
}

.subscribe .items form button:hover {
    color: #fff;
}

.footer{
    width: 100%;
    overflow: hidden !important;
    z-index: 1 !important;
}

.footer-section {
    position: relative;
    background: var(--footer-color);
    min-height: 200px; 
    margin-top: 15rem; 
    width: 100%;
    background: #03a81f;
}

.gooey-animations {
    position: absolute;
    bottom: 97%;
    width: 200%;
    left: -100%;
    
    background: var(--footer-color);
    transform: translateY(-100%); 
    z-index: 0;
    filter: url('#liquid-effect');

    overflow: visible; 
    pointer-events: none;
}

.footer-section .items{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #fff;
    z-index: 2;
}

.footer-section .items .columns_items{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1%;
    padding: 0 20px;
}

.footer-section .items .columns_items .contacts_btns{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-section .items .columns_items .contacts_btns button {
    position: relative;
    width: 200px;
    border: 2px solid #03a81f;
    color: #03a81f;
    background: #fff;
    outline: none;
    border-radius: 4px;
    padding: 20px;
    transition: color 0.3s ease;
    margin: 0 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;

    overflow: hidden;   /* IMPORTANT */
    z-index: 0;         /* IMPORTANT */
}

.footer-section .items .columns_items .contacts_btns button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #03a81f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);
    z-index: -1;
}

.footer-section .items .columns_items .contacts_btns button:hover::before {
    transform: scaleX(1);
}

.footer-section .items .columns_items .contacts_btns button:hover {
    color: #fff;
    border: 2px solid #fff;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-section .items .columns_items form{
    width: 40%;
    transition: all 0.3s ease;
    margin: 20px 0;
    padding-left: 10px;
}

.footer-section .items .columns_items form p{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;

}

.footer-section .items .columns_items form input{
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #fff;
    outline: none;
    background: none;
    padding: 10px 5px;
    margin-bottom: 2%;
}

.footer-section .items .columns_items form input::placeholder,
.footer-section .items .columns_items form textarea::placeholder {
    color: #fff;
    opacity: 1; /* Fixes faded placeholder in some browsers */
}

.footer-section .items .columns_items form textarea{
    width: 100%;
    height: 100px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #fff;
    outline: none;
    background: none;
    padding: 10px 5px;
}

.footer-section .items .columns_items form button{
    position: relative;
    outline: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 3px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 20px;
    transition: color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.footer-section .items .columns_items form button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);    
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.footer-section .items .columns_items form button:hover::before {
    transform: scaleX(1);
}

.footer-section .items .columns_items form button:hover {
    color: #03a81f;
}

.footer-section .items .columns_items form button i{
    font-size: 25px;
}

.footer-section .items .columns_items .info{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer-section .items .columns_items .info h1{
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.footer-section .items .columns_items .info p{
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
}

.particle {
    position: absolute;
    background: var(--footer-color);
    border-radius: 50%;
    top: 50%;
    left: var(--pos-x, 50%);
    width: var(--dim, 5rem);
    height: var(--dim, 5rem);
    transform: translate(-50%, -50%);
    
    background: #03a81f;
    z-index: 1;
    animation: float-up var(--dur, 4s) ease-in infinite;
    animation-delay: var(--delay, 0s);
}

.intro{
    width: 100%;
    margin: 6% 0 2% 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid gray;
}

.intro .items{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.intro .items:nth-child(2){
    align-items: end;
}

.intro .items h1{
    font-size: 2em;
    font-weight: 900;
    text-transform: uppercase;
    color: #03a81f;
    letter-spacing: 2px;
}

.intro .items h2{
    font-size: 20px;
    text-transform: uppercase;
    color: #03a81f;
    letter-spacing: 2px;
}

.intro .items h6{
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #03a81f;
    letter-spacing: 1px;
}

.intro .items button{
    position: relative;
    outline: none;
    color: #fff;
    border: 2px solid #03a81f;
    border-radius: 3px;
    background: #03a81f;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 20px;
    transition: color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.creator{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
}

.creator button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #03a81f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);
    z-index: -1;
}

.creator button:hover::before {
    transform: scaleX(1);
}

.creator button {
    position: relative;
    border: 2px solid #03a81f;
    color: #03a81f;
    background: #fff;
    outline: none;
    border-radius: 4px;
    padding: 20px;
    transition: color 0.3s ease;
    margin: 0 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;

    overflow: hidden;   /* IMPORTANT */
    z-index: 0;         /* IMPORTANT */
}

.creator button:hover {
    color: #fff;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.my_media{
    width: 100%;
    display: flex;
    height: 102vh;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.my_media .items{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px 20px;
}

.my_media .items:nth-child(1){
    align-items: start;
    justify-content: start;
    height: 100%; /* or any fixed/max height */
    overflow-y: auto; /* better than scroll */
    padding: 10px;
}

.my_media .items .controls{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.my_media .items .controls .items{
    display: flex;
    flex-direction: row;
    width: auto;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #03a81f;
}

.my_media .items .controls .items button{
    padding: 5px;
    margin: 5px 10px;
    outline: none;
    border: 2px solid #fff;
    font-size: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    background: #fff;
    color: #03a81f;
    cursor: pointer;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.my_media .items video, img{
    object-fit: cover;
    height: 100%;
    transition: .3s ease;
    cursor: pointer;
    margin: 5px 0;
}

.my_media .items:nth-child(1){
    width: 300px;
    border-radius: 3px;
}

.uploader{
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 2%;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    /* Add subtle overlay */
    background: rgba(0, 0, 0, 0.5);
}

.uploader form{
    width: 60%;
    max-height: 90vh;
    background: #fff;
    border-radius: 3px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
}

.uploader form .header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #03a81f;
}

.uploader form .header h6{
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

.uploader form .header button{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    cursor: pointer;
}

.uploader form .items{
    width: 100%;
    padding: 30px 20px;
}

.uploader form .items p{
    font-size: 15px;
    color: #03a81f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 10px;
}

.uploader form .items input{
    width: 100%;
    font-size: 15px;
    color: #03a81f;
    border: none;
    outline: none;
    border-bottom: 2px solid #03a81f;
    padding: 5px;
}

.uploader form .items textarea{
    width: 100%;
    height: 65px;
    font-size: 15px;
    color: #03a81f;
    border: none;
    outline: none;
    border-bottom: 2px solid #03a81f;
    padding: 5px;
}

.uploader form .items select{
    width: 100%;
    font-size: 15px;
    color: #03a81f;
    border: none;
    outline: none;
    border-bottom: 2px solid #03a81f;
    padding: 5px;
    cursor: pointer;
}

.uploader form .submit {
    position: relative;
    border: 2px solid #03a81f;
    color: #03a81f;
    background: #fff;
    outline: none;
    border-radius: 4px;
    padding: 10px 20px;
    transition: color 0.3s ease;
    margin: 0 0 10px 20px;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;   /* IMPORTANT */
    z-index: 0;         /* IMPORTANT */
}

.uploader form .submit:hover {
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.suggestions {
    width: 100%;
    max-height: 160px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.suggestions li {
    padding: 8px;
    cursor: pointer;
}

.suggestions li:hover {
    background: #f0f0f0;
}

.categories{
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #4285F4;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.map-btn:hover {
    background: #3367D6;
}

.search{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(1, 18, 72, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.search form{
    width: 60%;
    height: auto;
    background: #fff;
    border-radius: 3px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.search form p{
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.search form input, select{
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: #03a81f;
    border-bottom: 2px solid #03a81f;
    outline: none;
    background: none;
    padding: 10px 5px;
    margin-bottom: 15px;
}

.search form .btns{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search form .btns button{
    border: 2px solid #03a81f;
    outline: none;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 8px;
    border-radius: 3px;
    background: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search form .btns button:hover{
    background: #03a81f;
    color: #fff;
}

.sidebar {
    display: none;
    width: 250px;
    height: 100vh;
    background: #03a81f;
    color: #fff;
    position: fixed;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.sidebar h2 {
    margin-bottom: 30px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
}

.sidebar ul li:hover {
    background: rgba(255,255,255,0.2);
}

.main {
    padding: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.05),
    0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-left: 5px solid #03a81f;
    transition: .3s ease-in;
}

.card:hover{
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin: 0;
    color: #03a81f;
}

.table {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.table table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.btn {
    padding: 6px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
}

.user-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* glow effect */
@keyframes glow {
    from { box-shadow: 0 0 5px rgba(0,114,255,0.4); }
    to { box-shadow: 0 0 15px rgba(0,114,255,0.8); }
}

/* VERIFY BUTTON (premium) */
.btn-verify {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-verify:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,114,255,0.4);
}

/* UNVERIFY BUTTON */
.btn-unverify {
    background: #ecf0f1;
    color: #555;
    border-radius: 6px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.btn-unverify:hover {
    background: #e0e0e0;
}

.business-name {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Instagram-style verified badge */
.verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #0095f6; /* Instagram blue */
    border-radius: 50%;
}

/* SVG inside */
.verified-icon svg {
    width: 12px;
    height: 12px;
    display: block;
}

/* subtle hover (very minimal like IG) */
.verified-icon:hover {
    opacity: 0.85;
}

.approve { background: #28a745; }
.reject { background:  #ffb411;}
.delete { background: #dc3545; }

@keyframes float-up {
    0% {
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        top: calc(var(--uplift) * -1); 
        transform: translate(-50%, -50%) scale(0);
    }
}

@media (max-width: 600px) {
    .footer-content { text-align: center; }
}

/* ===============================
   NAV LINKS
================================= */

.nav .links {
    display: flex;
    transition: all 0.4s ease;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* ===============================
   LARGE TABLETS (≤1024px)
================================= */
@media (max-width: 1024px) {

    .home_info {
        width: 70%;
    }

    .texts h1 {
        font-size: 4rem;
    }

    .register {
        flex-direction: column;
        height: auto;
        padding: 50px 20px;
    }

    .register .info h1 {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .register .login form .header h2 {
        font-size: 1.1em;
    }

    .register .info,
    .register .login {
        width: 100%;
        margin-bottom: 40px;
    }

    .listings {
        width: 100%;
        height: auto;
        margin: 10px 0;
    }
    
    .listings .items {
        width: 100%;
        padding: 5px 20px;
    }

    .about .items h1 {
        font-size: 8em;
        letter-spacing: 20px;
    }

    .blocks .items {
        width: 40%;
        max-width: 40%;
        margin-bottom: 20px;
    }

    .footer-section .items .columns_items {
        flex-direction: column;
    }

    .footer-section .items .columns_items form,
    .footer-section .items .columns_items .info {
        width: 80%;
        margin-bottom: 30px;
    }
}


/* ===============================
   TABLETS & LARGE PHONES (≤768px)
================================= */
@media (max-width: 768px) {

    .nav .logo{
        width: 100px;
        height: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav .links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #03a81f;
        flex-direction: column;
        padding: 100px 30px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }

    .nav .links.active {
        right: 0;
    }

    .home_info {
        width: 70%;
        bottom: 5%;
    }

    .texts h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .texts h6 {
        font-size: 16px;
    }

    .info_btns span {
        width: 70px;
    }

    .info_btns button {
        margin-right: 15px;
        font-size: 10px;
        padding: 5px 10px;
        letter-spacing: 1px;
    }

    .media_btns {
        right: 5%;
        bottom: 5%;
    }

    .about .items .social_media button {
        letter-spacing: 1px;
        font-size: 14px;
        padding: 10px;
        width: 100%;
    }

    .about {
        height: auto;
        padding: 60px 20px;
    }

    .about .items h1 {
        font-size: 4em;
        letter-spacing: 10px;
    }

    .about .items h2,
    .about .items p {
        width: 90%;
        margin: 5px 0;
    }

    .blocks .items {
        width: 90%;
        max-width: 90%;
    }

    .subscribe .items h1{
        font-size: 20px;
        letter-spacing: 1px;
    }

    .subscribe .items form {
        flex-direction: column;
    }

    .subscribe .items form input {
        width: 80%;
        margin: 15px 0;
    }

    .subscribe .items form button {
        width: 60%;
    }

    .intro .items h1{
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .intro .items h2, .intro .items h6{
        font-size: 11px;
        letter-spacing: 1px;
    }

    .intro .items button{
        border-radius: 1px;
        letter-spacing: 1px;
        font-size: 14px;
        padding: 7px 8px;
    }

    .sidebar.active::after {
        display: block;
    }

    /* =========================
       MAIN CONTENT
    ========================= */
    .main {
        margin-left: 0;
        padding: 15px;
    }

    /* =========================
       CARDS (STACK + TOUCH)
    ========================= */
    .cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        padding: 15px;
        border-left-width: 4px;
    }

    .card h3 {
        font-size: 20px;
    }

    /* =========================
       TABLE → MOBILE CARDS
    ========================= */
    .table table,
    .table thead,
    .table tbody,
    .table th,
    .table td,
    .table tr {
        display: block;
        width: 100%;
    }

    /* HIDE HEADERS */
    .table thead {
        display: none;
    }

    /* ROW CARD */
    .table tr {
        background: #fff;
        margin-bottom: 15px;
        border-radius: 10px;
        padding: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* CELLS */
    .table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
        font-size: 14px;
    }

    /* LABELS (IMPORTANT) */
    .table td::before {
        font-weight: bold;
        color: #03a81f;
    }

    /* MAP LABELS TO COLUMNS */
    .table td:nth-child(1)::before { content: "Business"; }
    .table td:nth-child(2)::before { content: "Category"; }
    .table td:nth-child(3)::before { content: "Title"; }
    .table td:nth-child(4)::before { content: "Status"; }
    .table td:nth-child(5)::before { content: "Media/Town"; }
    .table td:nth-child(6)::before { content: "Actions"; }

    /* MEDIA FIX */
    .table img,
    .table video {
        width: 80px;
        height: 60px;
        border-radius: 6px;
    }

    /* ACTION BUTTONS */
    .table td:last-child {
        justify-content: flex-end;
        gap: 5px;
    }

    .card:active,
    .table tr:active {
        transform: scale(0.98);
    }

    .btn {
        padding: 5px 8px;
        font-size: 12px;
    }

    .uploader form{
        width: 95%;
    }

    .search form{
        width: 95%;
    }
}


/* ===============================
   MOBILE DEVICES (≤480px)
================================= */
@media (max-width: 480px) {

    .texts h1 {
        font-size: 1.7rem;
        line-height: 1.1;
    }

    .texts h6 {
        font-size: 12px;
    }

    .media_btns button {
        width: 30px;
        height: 30px;
        margin-left: 8px;
    }

    .info_btns span {
        width: 30px;
    }

    .info_btns button {
        width: auto;
        margin-right: 5px;
        font-size: 12px;
        padding: 5px;
        letter-spacing: normal;
    }

    .register .info h1 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .register .login form{
        width: 98% !important;
    }

    .register .login form .header h2 {
        font-size: 0.5;
        letter-spacing: 1px;
    }

    .register .login form .header button{
        font-size: 12px;
    }

    .register .login form .items p{
        font-size: 14px;
    }

    .register .login form .items input{
        font-size: 14px;
        padding: 8px 5px;
        margin-bottom: 5%;
    }

    .register .login form .items button{
        font-size: 15px;
        padding: 10px;
        width: 100%;
    }

    .listing_parent{
        width: 99%;
    }

    .listings .items h1 {
        font-size: 15px;
    }

    .listings .items p,
    .listings .items h6 {
        font-size: 16px;
    }

    .about .items h1 {
        font-size: 5em;
        letter-spacing: 30px;
    }

    .about .items h2 {
        font-size: 1.1em;
    }

    .blocks .items {
        width: 99%;
        max-width: 99%;
        height: auto;
    }

    .footer-section .items .columns_items form,
    .footer-section .items .columns_items .info {
        width: 99%;
    }

    .footer-section .items .columns_items form button{
        letter-spacing: 3px;
        font-size: 15px;
        padding: 5px 10px;
    }

    .footer-section .items .columns_items .contacts_btns {
        flex-direction: column;
    }

    .footer-section .items .columns_items .contacts_btns button {
        width: 100%;
        margin: 10px 0;
        padding: 20px;
    }

    .footer-section .items .columns_items .info h1{
        font-size: 2em;
    }

    .footer-section .items .columns_items .info p{
        font-size: 13px;
        margin-top: 5px;
    }

    .my_media{
        flex-direction: column;
    }

    .my_media .items{
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 1px;
    }

    .my_media .items:nth-child(1){
        width: 100% !important;
        height: auto !important;
        overflow-x: scroll; /* better than scroll */
        padding: 10px;
    }

    .my_media .items .controls{
        position: relative;
        top: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .my_media .items .controls .items{
        display: flex;
        flex-direction: row;
        width: auto;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        background: #03a81f;
    }

    .my_media .items .controls .items button{
        margin: 5px;
        font-size: 13px;
    }

    .my_media .items:nth-child(1) video, img{
        width: 100px;
        height: 70px;
        border-radius: 3px;
    }

    .my_media .items video, img{
        object-fit: cover;
        height: 100%;
        transition: .3s ease;
        cursor: pointer;
        margin: 0 5px;
        border-radius: 3px;
    }

    .my_media .items:nth-child(1){
        width: 300px;
        border-radius: 3px;
    }

}
