/* 
  GoMove Website Design System
  Main Color: #fefefe (60%)
  Secondary Color: #42bb41 (30%)
  Accent Color 1: #ff9800 (10%)
  Accent Color 2: #1a592a (10%)
*/

:root {
    --primary-color: #fefefe;
    --secondary-color: #42bb41;
    --accent-orange: #ff9800;
    --accent-green-dark: #1a592a;
    --text-dark: #1f1f1f;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --container-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 300;

    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.poppins-thin {
    font-weight: 100;
}

.poppins-extralight {
    font-weight: 200;
}

.poppins-light {
    font-weight: 300;
}

.poppins-regular {
    font-weight: 400;
}

.poppins-medium {
    font-weight: 500;
}

.poppins-semibold {
    font-weight: 600;
}

.poppins-bold {
    font-weight: 700;
}

.poppins-extrabold {
    font-weight: 800;
}

.poppins-black {
    font-weight: 900;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: "Poppins", sans-serif;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 187, 65, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-orange:hover {
    background-color: #e68900;
    transform: translateY(-2px);
}

header {
    height: 70px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background-color: rgba(254, 254, 254, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-radius: 100px;
    padding: 0 10px;
    transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translate(-50%, -150%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 30px;
    width: auto;
    vertical-align: middle;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.header-cta {
    flex: 0 0 auto;
}

.header-cta .btn {
    padding: 10px 25px;
    font-size: 14px;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }

    .mobile-only-btn {
        display: none;
    }
}


#hero {
    padding: 140px 0 180px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 1;
    position: relative;
}

.hero-logo {
    height: 60px;
    width: auto;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin-bottom: 0;
    margin-top: 50px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        white-space: normal;
        line-height: 1.2;
    }

    .mobile-only-br {
        display: block;
    }
}

.mobile-only-br {
    display: none;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    font-weight: 400;
}

.features-overlap {
    padding-top: 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    font-size: 1.1rem;
}

.text-orange {
    color: #ff9800;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.feature-card:not(:last-child) {
    border-right: none;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-green-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

@media (max-width: 991px) {
    .features-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

.feature-icon i {
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #ff9800;
    font-size: 22px;
}


.about-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-logo {
    height: 80px;
    width: auto;
    margin-bottom: 30px;
    vertical-align: middle;
}

.about-content h2 {
    margin-bottom: 20px;
    color: var(--accent-green-dark);
}

.about-content .tag {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.delivery-easy {
    background-color: #ffffff;
}

.easy-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

@media (min-width: 992px) {
    .easy-card {
        flex: 0 1 350px;
    }
}

.easy-card {
    text-align: center;
}

.easy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    font-size: 32px;
    margin-bottom: 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.easy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-green-dark);
}

.easy-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.service-side {
    display: flex;
    flex-direction: column;
}

.service-side.left {
    text-align: right;
}

.service-side.right {
    text-align: left;
}

.service-side-content h3 {
    color: var(--accent-green-dark);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-side-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-center {
    display: flex;
    justify-content: center;
    position: relative;
}

.service-center img {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.service-center:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .services-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .service-side.left,
    .service-side.right {
        text-align: center;
    }

    .service-center {
        order: -1;
    }
}

.solutions-list {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem,
.solution {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem i {
    color: #e74c3c;
    font-size: 24px;
}

.solution i {
    color: var(--accent-green-dark);
    font-size: 24px;
}

.problem p,
.solution p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.solution p strong {
    color: var(--accent-green-dark);
}

.solution-arrow {
    padding: 0 30px;
    color: #ccc;
    font-size: 20px;
}

@media (max-width: 991px) {
    .solution-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }

    .solution-arrow {
        padding: 15px 0;
        transform: rotate(90deg);
        align-self: center;
    }

    .problem,
    .solution {
        width: 100%;
    }
}


#download {
    background-color: #1a592a;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.text-white {
    color: var(--white) !important;
}

.app-single {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.app-download-content h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.app-download-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-title-logo {
    height: 35px;
    width: auto;
    vertical-align: middle;
    margin: 0 5px;
    display: inline-block;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn img {
    height: 80px;
    width: auto;
    vertical-align: middle;
    transition: var(--transition);
}

.store-btn:hover img {
    transform: scale(1.05);
}

/* Coming Soon Styles */
.store-btn-wrapper {
    position: relative;
    display: inline-block;
}

.coming-soon-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Specific scaling for footer buttons */
.footer-app-links .coming-soon-badge {
    font-size: 0.55rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.65);
}

.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    filter: grayscale(0.2);
}

.version-tag {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
    font-weight: 400;
}


.contact-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.contact-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-text p {
    margin: 0;
    line-height: 1.4;
}

.contact-text .poppins-semibold {
    font-size: 1.1rem;
    color: var(--accent-green-dark);
    margin-bottom: 8px;
}

.contact-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.contact-card-link:hover .contact-item {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--accent-green-dark);
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--accent-green-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.legal-content ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 40px;
    display: block;
}

.faq-grid {
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--accent-green-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}



footer {
    background-color: #1a592a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-app-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-store-btn img {
    height: 50px;
    width: auto;
    vertical-align: middle;
    transition: var(--transition);
}

.footer-store-btn:hover img {
    transform: scale(1.05);
}

.footer-about img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 991px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 3rem;
        white-space: normal;
    }

    .hero-image {
        max-width: 100%;
    }

    .section-title h2 {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .delivery-easy .section-title h2,
    #services .section-title h2,
    #contact .section-title h2 {
        font-size: clamp(1.8rem, 6.5vw, 2.5rem);
        white-space: nowrap;
    }

    #download .section-title h2 {
        font-size: 2.4rem;
        white-space: normal;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }

    .mobile-only-btn {
        margin-top: 20px;
    }

    .header-cta .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .logo img {
        height: 24px;

    }

    .about-logo {
        height: 50px;
        width: auto;
        margin-bottom: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 5%;
        width: 90%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-app-links {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    section {
        padding: 60px 0;
    }
}