:root {
    --primary-color: #3D7DBF; /* Softer Blue - Less intense */
    --secondary-color: #1c1c1c; /* Almost Black - Strong Contrast */
    --accent-color: #F5A623; /* Warm Golden Orange - Highlights */
    --background-color: #F8FAFD; /* Very Light Gray - Softer */
    --text-color: #2B2B2B; /* Dark Gray - Readable */
    --white: #FFFFFF;
    --light-blue: #D6E9FF; /* Pastel Blue for subtle contrast */
    --soft-gray: #E0E4E8; /* Soft Neutral Gray for subtle UI elements */
    --box-shadow-color: rgba(0, 0, 0, 0.12); /* Lighter Shadow */
}




/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Navbar Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--box-shadow-color);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .logo a:hover {
    color: var(--accent-color);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: var(--primary-color);
    z-index: 999;
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section Styling */
#hero {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1;
}

.hero-text {
    position: absolute;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 30px;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-container {
    display: flex;
    flex-direction: row; /* Always left-to-right */
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.8), rgba(255, 255, 255, 0.9));
    color: var(--text-color);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
    text-align: left;
}

/* CTA Content - Always on the Left */
.cta-content {
    flex: 1 1 50%;
    padding: 20px;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/* CTA Image - Always on the Right */
.cta-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Soft Blur Effect on Image Edges */
.cta-image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 20%, rgba(240, 248, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}


.hero-image {
    background: url('/assets/reliable-movers-in-northridge.avif') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}

/* Introduction Section */
#introduction {
    padding: 60px 20px;
    background-color: var(--background-color);
    text-align: center;
}

#introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

#introduction h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

#introduction .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
    align-items: center;
}

.about-image {
    flex: 1 1 300px;
    background: var(--background-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.about-card {
    flex: 2 1 500px;
    background: var(--background-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Services Section */
#services {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white), var(--background-color));
    text-align: center;
}

#services h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

#services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color); /* Golden Orange */
    margin: 12px auto;
    border-radius: 4px;
}

/* Services Grid Layout */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Box Styling */
.service-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
    border-left: 5px solid var(--accent-color);
}

.service-box:nth-child(odd) {
    background: var(--light-blue);
}

.service-box:nth-child(even) {
    background: var(--soft-gray);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--accent-color);
    border-left: 5px solid var(--primary-color);
}

/* Service Icon */
.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: color 0.3s ease, background 0.3s ease;
    background: rgba(245, 166, 35, 0.1);
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
}

.service-box:hover .service-icon {
    color: var(--primary-color);
    background: rgba(245, 166, 35, 0.3);
}


/* Service Title */
.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Service Description */
.service-info p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
    padding: 0 10px;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white), var(--background-color));
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

#why-choose-us h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 12px auto;
    border-radius: 4px;
}

/* Why Choose Us Grid Layout */
.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Why Card Styling */
.why-card {
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 50%, var(--light-blue) 100%);
    border-bottom: 3px solid var(--accent-color); /* Golden orange accent */
    box-shadow: 0 4px 8px var(--box-shadow-color);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--accent-color);
}

/* Icon Styling */
.why-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--white) 40%, var(--accent-color) 100%);
    box-shadow: 0 8px 16px rgba(245, 166, 35, 0.3);
}

/* Title Styling */
.why-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Paragraph Styling */
.why-details p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}
/* Pricing Section */
#pricing {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

#pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

#pricing h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 12px auto;
    border-radius: 4px;
}

/* Pricing Grid Layout */
.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Price Card Styling */
.price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--accent-color);
}

/* Price Header */
.price-header {
    margin-bottom: 15px;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.rate-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Movers Info (Highlighted) */
.movers-info {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
}

.movers-info i {
    font-size: 1.5rem;
}

/* Price Body */
.price-body {
    padding-top: 15px;
}

.price-body p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    padding: 5px 0;
}

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--background-color), var(--white));
    text-align: center;
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.faq-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* FAQ Button */
.faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--accent-color);
}

/* Arrow Icon */
.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Rotate Arrow when Active */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    padding: 15px 20px;
    color: var(--text-color);
    display: none;
    background-color: var(--white);
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}


/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: var(--background-color);
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

#contact h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

#contact p {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-color);
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-color);
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: var(--accent-color);
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

button:hover {
    background-color: var(--secondary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
}

/* Footer Section */
footer {
    padding: 20px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--white);
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Call Button */
.call-button {
    display: none;
}

.google-map iframe{
    width:85vw; 
    border:0;
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .call-button {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 15px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 0 10px var(--box-shadow-color);
        cursor: pointer;
        transition: background-color 0.3s ease;
        z-index: 2;
    }

    .call-button i {
        font-size: 1.5rem;
    }

    .call-button:hover {
        background-color: var(--accent-color);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .nav-links.active {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        height: 30vh;
    }

    .burger {
        display: block;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-image, .about-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    #why-choose-us h2 {
        font-size: 2.2rem;
    }
    
    .why-card {
        padding: 25px;
    }

    .why-icon {
        font-size: 2.8rem;
    }

    .why-details h3 {
        font-size: 1.5rem;
    }

    .why-details p {
        font-size: 1rem;
    }
    .service-box, .why-card, .price-card {
        max-width: 100%;
    }

    .service-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    #services h2 {
        font-size: 2.4rem;
    }
    
    .service-box {
        padding: 25px;
    }

    .service-icon {
        font-size: 2.5rem;
        padding: 15px;
    }

    .service-info h3 {
        font-size: 1.4rem;
    }

    .service-info p {
        font-size: 0.95rem;
    }
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .extra-info, .cta-inner {
        padding: 15px;
    }

    #pricing h2 {
        font-size: 2.2rem;
    }
    
    .price-card {
        padding: 25px;
    }

    .rate-price {
        font-size: 1.4rem;
    }

    .movers-info {
        font-size: 1.2rem;
    }

    .price-body p {
        font-size: 0.95rem;
    }

    .faq-section h2 {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 12px 18px;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content {
        text-align: center;
        flex: 1 1 100%;
    }

    .cta-button {
        width: 55%;
    }

    .cta-image {
        flex: 1 1 100%;
        max-width: 80%;
        margin-top: 25px;
    }

    .cta-image img {
        max-width: 90%;
    }
    .extra-info ul {
        padding-left: 20px;
    }

    #contact p {
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .cta-container {
        flex-direction: row; /* Maintain left-right structure */
        flex-wrap: wrap; /* Ensure responsiveness */
        padding: 40px 20px;
    }

    .cta-content {
        flex: 1 1 50%;
        text-align: left;
    }

    .cta-button {
        max-width: 280px;
    }

    .cta-image {
        flex: 1 1 50%;
        max-width: 400px;
    }

    .cta-image img {
        max-width: 100%;
    }
}