:root {
    --primary-color: #0b2341;
    /* Deep Royal Blue / Navy */
    --primary-light: #153e6a;
    /* Lighter Royal Blue */
    --accent-color: #e63946;
    /* Logo Red - Main CTA */
    --accent-hover: #d62828;
    /* Darker Red for Hover */
    --secondary-color: #e63946;
    /* Matching Red for consistency */
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.bg-light {
    background-color: var(--light-bg);
}

.section {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-block {
    width: 100%;
    border-radius: var(--radius-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    /* backdrop-filter: blur(12px); Removed to ensure logo blends with background */
    /* -webkit-backdrop-filter: blur(12px); */
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

/* Image Logo Styles */
.logo-img {
    max-height: 50px;
    /* Adjust height as needed */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 1rem 0;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.moverspackers-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.nav-item:hover .moverspackers-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.moverspackers-dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.moverspackers-dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 1.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/slider4.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
        padding-top: 2rem;
    }
}

.hero-text .badge {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quote Form Card */
.form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), #8b5cf6);
}

.form-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1.1rem;
    z-index: 10;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-color);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-group input:focus+i,
.input-group select:focus+i,
.input-group textarea:focus+i {
    color: var(--accent-color);
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.sub-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(37, 99, 235, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Feature Card */
.feature-card {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--accent-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    position: absolute;
    top: -35px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    padding-right: 30px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    gap: 0.75rem;
    color: var(--accent-hover);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.step-card:hover {
    background: var(--light-bg);
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    box-shadow: 0 0 0 8px var(--white);
}

.step-card:hover .step-number {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 0 0 8px var(--light-bg);
}

.step-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Connector Line - simplified for responsiveness */
@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 55px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
        z-index: 1;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.img-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    pointer-events: none;
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    min-width: 160px;
}

.exp-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.about-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    background: rgba(245, 158, 11, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group {
    position: relative;
    width: 100%;
}

@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-form {
        margin-bottom: 2rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.contact-item .icon {
    min-width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover .icon {
    background: var(--accent-color);
    color: var(--white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    border: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background: #0b1120;
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.1), transparent 40%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: #94a3b8;
    margin: 1.5rem 0;
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    color: var(--white);
    border-color: var(--accent-color);
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #94a3b8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--accent-color);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: var(--white);
    flex: 1;
    transition: var(--transition);
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
    }



    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .form-card {
        padding: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .img-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .exp-badge {
        left: 20px;
        bottom: 20px;
        padding: 1.5rem;
        min-width: 140px;
    }

    .exp-badge .years {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.75rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 6rem;
        padding-left: 2rem;
        padding-right: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .moverspackers-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
        padding-left: 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
    }

    .nav-item.active .moverspackers-dropdown-menu {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 2rem;
        width: 100%;
    }

    .nav-btn.nav-btn {
        background: var(--accent-color);
        color: white;
        text-align: center;
        width: 100%;
        padding: 1rem;
        border-radius: var(--radius-md);
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
opacity:0;
visibility:hidden;
transition:.4s;
}

.popup-overlay.active{
opacity:1;
visibility:visible;
}

.popup-box{
background:#fff;
width:95%;
max-width:650px;
border-radius:10px;
padding:30px;
position:relative;
animation:popupZoom .4s ease;
}

@keyframes popupZoom{
from{transform:scale(.8);opacity:0}
to{transform:scale(1);opacity:1}
}

.popup-close{
position:absolute;
top:5px;
right:2px;
background:#ff4d4d;
color:#fff;
border:none;
width:32px;
height:32px;
border-radius:50%;
font-size:18px;
cursor:pointer;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
}

.input-group{
position:relative;
}

.input-group i{
position:absolute;
left:10px;
top:50%;
transform:translateY(-50%);
color:#888;
}

.input-group input{
width:100%;
padding:12px 12px 12px 35px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.btn-block{
width:100%;
margin-top:15px;
padding:14px;
background:#ff5e14;
color:#fff;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

/* MOBILE */
@media(max-width:600px){
.form-grid{
grid-template-columns:1fr;
}
.popup-box{
padding:20px;
}
}

/* POPUP MOBILE SCROLL FIX */
@media (max-width:768px){

.popup-overlay{
align-items:flex-start;   /* popup top se start hoga */
overflow-y:auto;          /* overlay scroll enable */
padding:30px 10px;
}

.popup-box{
width:100%;
max-width:100%;
margin:auto;
max-height:90vh;          /* screen ke andar fit */
overflow-y:auto;          /* form scroll inside */
border-radius:12px;
}

.form-grid{
grid-template-columns:1fr;   /* single column mobile */
}

.btn-block{
font-size:15px;
padding:13px;
}

}

.popup-overlay.active{
display:flex;
}

.popup-overlay{
display:none;
}


 /* ========== FLOATING BUTTONS ========== */
  .floating-button-left,
  .floating-button-right {
    position: fixed;
    bottom: 80px;
    z-index: 1000;
  }

  .col-bla {
    color: rgb(255, 255, 255);
  }

  .floating-button-left {
    left: 20px;
  }

  .floating-button-right {
    right: 20px;
  }

  .floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 55px;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .call-btn {
    background: linear-gradient(#e35f14, #e35f14);
  }

  .whatsapp-btn {
    background-color: #25D366;
  }

  .floating-btn:hover {
    transform: scale(1.15);
  }

  /* Always show buttons */
  @media (max-width: 1200px) {

    .floating-button-left,
    .floating-button-right {
      display: flex;
    }
  }

  @media (min-width: 0px) {

    .floating-button-left,
    .floating-button-right {
      display: flex;
    }
  }

  