/* 
    EasyMovers Premium Design System 
    Author: Antigravity
    Version: 1.0
*/

:root {
    /* Color Palette */
    --primary-navy: #0f172a;
    --primary-green: #10b981;
    --accent-blue: #38bdf8;
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --border-soft: #e2e8f0;

    /* Layout Spacing */
    --section-pad: 8rem;
    --container-max: 1280px;

    /* Effects & Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --premium-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.12);
    --glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 0.8rem 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.logo-nav {
    height: 34px;
    /* Slightly more compact */
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-nav img {
    height: 100%;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 850;
    color: var(--primary-navy);
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--primary-green);
}

.logo-nav:hover .logo-text {
    color: var(--primary-green);
}

/* Hero Section - Centered & Premium */
.hero {
    padding: 10rem 5% 8rem;
    text-align: center;
    background:
        radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
        linear-gradient(to bottom, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    color: var(--primary-navy);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin: 0 auto 2.5rem;
    text-align: center;
    width: fit-content;
}

.hero h1 span {
    color: var(--primary-green);
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-body);
    max-width: 750px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.pulsing {
    animation: pulse-green 4s infinite cubic-bezier(0.4, 0, 0.6, 1);
}


.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-heading);
    font-weight: 600;
    /* Slightly bolder for better readability */
    font-size: 0.9rem;
    text-decoration: none;
    /* Removed underlines */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.nav-btn {
    background: var(--primary-navy);
    color: #fff !important;
    padding: 0.65rem 1.8rem;
    border-radius: 100px;
    /* Pill shape is more modern */
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    /* Removed underlines */
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-green);
}

/* Sections */
.section-std {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    display: inline-block;
    background: #ecfdf5;
    color: var(--primary-green);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--text-heading);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-premium {
    padding: 1.2rem 2.8rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-navy);
    color: #fff;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.4);
}

.btn-white {
    background: #fff;
    color: var(--primary-navy);
    border: 1px solid var(--border-soft);
}

.btn-white:hover {
    border-color: var(--primary-navy);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* How it Works - Restore Colored Circles */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.how-item {
    text-align: center;
}

.how-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.2rem;
    font-weight: 850;
    color: #fff;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.how-circle::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.how-item:hover .how-circle {
    transform: scale(1.1) rotate(5deg);
}

.how-item:hover .how-circle::after {
    border-color: inherit;
    transform: scale(1.1);
}

.how-circle.step-1 {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.how-circle.step-2 {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.how-circle.step-3 {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.how-item h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.how-item p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Bento Grid / Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 3rem;
    border-radius: 40px;
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--premium-shadow);
    border-color: var(--primary-green);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 28px;
    margin-top: 2rem;
    transition: all 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Mission Split */
.mv-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mv-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid var(--border-soft);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.mv-card:hover {
    background: #fff;
    border-color: var(--primary-green);
    transform: translateX(12px);
    box-shadow: var(--shadow-xl);
}

.mv-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    height: 600px;
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: #fff;
    padding: 10rem 8% 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1.2rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.95rem;
}

/* Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {

    .how-grid,
    .services-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-std {
        padding: 6rem 0;
    }

    .hero {
        padding-top: 10rem;
    }
}