/* Reset and Base Styles */
:root {
    --primary-color: #2c5282;
    --secondary-color: #4299e1;
    --accent-color: #f6ad55;
    --text-color: #2d3748;
    --light-text: #718096;
    --background-color: #ffffff;
    --light-background: #f7fafc;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #f56565;
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-color);
    gap: 1rem;
}

.btn-secondary:hover {
    background-color: var(--success-color);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}


/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 0;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left, .top-bar-center, .top-bar-right {
    display: flex;
    align-items: center;
}
.top-bar-left {
    flex: 1;
}
.top-bar-center {
    flex: 1;
    justify-content: center;
    display: flex;
}
.top-bar-right {
    flex: 1;
    justify-content: flex-end;
    gap: 1rem;
}
.top-bar-email, .top-bar-phone, .top-bar-social {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.2s;
}
.top-bar-social {
    font-size: 1.2rem;
    margin-right: 0;
}
.top-bar-email i, .top-bar-phone i, .top-bar-social i {
    margin-right: 0.4em;
}
.top-bar-email:hover, .top-bar-phone:hover, .top-bar-social:hover {
    color: var(--accent-color);
}

/* Header Layout Adjustments */
.site-header {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.07);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}
.header-logo img {
    height: 100px;
    width: auto;
}
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    background: #fff;
}
.nav-links li {
    position: relative;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.99rem;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    display: inline-block;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .active > a,
.nav-links li:hover > a {
    color: var(--secondary-color);
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 0.3em;
}

.has-dropdown > a {
    cursor: pointer;
    position: relative;
    padding-right: 1.2em;
}

.has-dropdown .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(44,82,130,0.10), 0 1.5px 0 var(--secondary-color);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 0.5rem 0;
    border-top: 2.5px solid var(--secondary-color);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block;
}
.dropdown li {
    width: 100%;
}
.dropdown a {
    color: var(--text-color);
    padding: 0.7rem 1.5rem;
    width: 100%;
    display: block;
    font-size: 1rem;
    border: none;
    background: none;
    transition: background 0.18s, color 0.18s;
}

/* Hero Quote Form - Independent Styles */
.hero-quote-form {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    max-width: 600px;
    margin: 0;
    padding: 1rem;
    color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-quote-form input, 
.hero-quote-form textarea, 
.hero-quote-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0;
    transition: all 0.2s ease;
    background: #fff;
    color: var(--text-color);
}

.hero-quote-form input:focus,
.hero-quote-form textarea:focus,
.hero-quote-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-quote-form input::placeholder,
.hero-quote-form textarea::placeholder {
    color: #a0aec0;
}

.hero-quote-form button {
    width: 100%;
    padding: 16px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-quote-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-layout {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    justify-content: center;
}

.hero-form {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    align-items: center;
}
.hero-form-main {
    flex: 1 1 400px;
    max-width: 450px;
    display: flex;
    align-items: center;
}
.hero-form-container-main {
    background: rgba(45, 55, 72, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
    color: #fff;
}
.hero-form-container {
    background: rgba(45, 55, 72, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
    color: #fff;
}

.hero-form-container h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.hero-form-container p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1rem;
}
.hero-form-container-main h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.hero-form-container-main p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1rem;
}



.hero-content {
    flex: 1 1 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta .btn {
    font-size: 1.1rem;
    padding: 14px 28px;
    font-weight: 600;
}
.features-section {
    background-color: var(--primary-color);
    padding: 2rem 0;
    color: white;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Start Section */
.start-section {
    text-align: center;
}
.start-section p {
    color: white !important;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: white;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quote-form {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}
/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hamburger button styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-right: 1rem;
}

/* --- Custom Styles for New Sections --- */
.section-intro {
    text-align: center;
}
.section-title, .cta-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.section p,
.section-content p,
.item-text p,
.process-content p,
.faq-accordion-body p {
    color: var(--text-color);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}
.service-list li {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}
/* Pricing Table */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.pricing-block {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    padding: 2rem 2.5rem;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    text-align: center;
}
.pricing-block h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.pricing-block ul {
    list-style: disc inside;
    text-align: left;
    margin-top: 1rem;
}
/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
}
.features-list li {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}
/* Item Handling */
.item-handling h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
}
/* Moving Process */
.moving-process ol {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.2em;
}
.moving-process li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
/* Areas We Serve */
.areas-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.areas-columns ul {
    columns: 3 100px;
    -webkit-columns: 3 100px;
    -moz-columns: 3 100px;
    list-style: disc inside;
    background: #fff;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    padding: 2rem;
    margin: 0;
    width: 100%;
    max-width: 700px;
    list-style-type: none;
}
/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
}
.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
/* Get Quote Section */
.get-quote-section {
    background: var(--light-background);
    color: #fff;
    text-align: center;
    padding: 4rem 0 3rem;
}
.get-quote-section h2 {
    color: #fff;
}
.get-quote-section p {
    color: #fff;
    font-size: 1.2rem;
}
/* --- Image and Form Placeholders --- */
.section-image {
    width: 100%;
    max-width: 420px;
    height: 260px;
    background: #e2e8f0 url('/images/placeholder.png') center/cover no-repeat;
    border-radius: var(--border-radius);
    margin: 2rem auto 2rem auto;
    display: block;
}
.section-form {
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    padding: 2rem;
}
.section-form input, .section-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}
.section-form button {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed) ease;
}
.section-form button:hover {
    background: var(--secondary-color);
}

/* --- Modern Section & Card Styles Inspired by Calgary Movers Pro & Paramount Moving --- */
.section {
    padding: 5rem 0;
    background: #fff;
}
.section-alt {
    background: #f7fafc;
}
.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}
.flex-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}
.flex-section.reverse {
    flex-direction: row-reverse;
}
.section-content {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 600px;
}
.section-image {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
    height: 320px;
    background: #e2e8f0 url('/images/placeholder.png') center/cover no-repeat;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    font-size: 1.18rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.check-list i {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}
.service-card, .feature-card, .item-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.service-card:hover, .feature-card:hover, .item-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(44,82,130,0.13);
}
.service-card i, .feature-card i, .item-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}
.service-card h3, .feature-card h3, .item-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: border 0.2s, box-shadow 0.2s;
}
.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 32px rgba(66,153,225,0.13);
}
.pricing-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.3em 1.2em;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
.pricing-badge.small { background: #4299e1; }
.pricing-badge.standard { background: #2c5282; }
.pricing-badge.big { background: #f6ad55; color: #2d3748; }
.price {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.price span {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 400;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
    color: var(--text-color);
    font-size: 1.08rem;
}
.pricing-card ul li {
    margin-bottom: 0.7rem;
}
.pricing-card .btn {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.1rem;
}

/* Stepper (Process) */
.stepper {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
}
.stepper.vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    padding: 1.2rem 1.5rem;
    min-width: 220px;
    flex: 1 1 220px;
}
.step-icon {
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5em;
    box-shadow: 0 2px 8px rgba(66,153,225,0.13);
}
.step-content h4 {
    margin: 0 0 0.3em 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Testimonial Block */
.testimonial-section {
    background: linear-gradient(90deg, #f7fafc 60%, #e2e8f0 100%);
    padding: 4rem 0 3rem 0;
}
.testimonial-section .section-title{
    margin: 0;
}
.trust-block {
    padding: 25px;
    display: flex;
    justify-content: center;
    column-gap: 80px;
    align-items: center;
}

.trust-block img {
    transition: transform 0.3s ease-in-out; 
    max-width: 400px;
    height: auto;
}

.trust-block img:hover {
    transform: scale(1.1); 
}

/* FAQ Cards */
.faq-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1000px;
}
.faq-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    padding: 1.5rem 2rem;
    font-size: 1.08rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.faq-card:hover {
    box-shadow: 0 8px 24px rgba(44,82,130,0.13);
    transform: translateY(-4px) scale(1.02);
}
.faq-card h3 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.faq-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* --- Redesigned Services Section --- */
.services-section-redesign {
    background: linear-gradient(120deg, #f7fafc 60%, #e3ecfa 100%);
    padding: 5rem 0 5rem 0;
}
.services-section-redesign .section-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}
.services-grid-redesign {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    justify-items: center;
}
.service-card-redesign {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44,82,130,0.10);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    max-width: 340px;
    width: 100%;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.service-card-redesign:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px rgba(44,82,130,0.16);
}
.service-icon-redesign {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3ecfa 60%, #f7fafc 100%);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
}
.service-card-redesign h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    text-align: center;
}
.service-card-redesign p {
    font-size: 1.08rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0;
}
/* --- FAQ Accordion Styles (FIXED) --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.faq-accordion-item {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1.2rem 2.5rem 1.2rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    transition: background 0.18s;
}
.faq-accordion-header[aria-expanded="true"] {
    background: #f7fafc;
    color: var(--secondary-color);
}
.faq-accordion-header i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 0.7rem;
}
.accordion-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.25s;
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.faq-accordion-header[aria-expanded="true"] .accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}
.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #f7fafc;
    padding: 0 1.5rem;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
}
.faq-accordion-body p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.08rem;
}


.section-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
}
.section-primary .section-title,
.section-primary h1, .section-primary h2, .section-primary h4, .section-primary h5, .section-primary h6 {
    color: #fff;
}
.section-primary h3 {
    color: var(--primary-color);
}

.section-primary a,
.section-primary .btn-primary {
    color: #fff;
}
.section-primary .btn,
.section-primary .btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
}
.section-primary .btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.section-light {
    background-color: var(--light-background);
    color: var(--text-color);
}
.section-light .section-title,
.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5, .section-light h6 {
    color: var(--primary-color);
}

/* Why Choose Us Carousel */
.why-choose-section {
    background-color: var(--light-background);
}
.carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}
.carousel-track {
    display: flex;
    overflow: visible;
    width: 100%;
    min-height: 420px;
    justify-content: center;
}
.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transform: none;
}
.carousel-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.13);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 600px;
    justify-content: flex-start;
}
.carousel-image {
    width: 100%;
    height: 500px;
    margin: 0 auto 1.2rem auto;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e2e8f0;
}
.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    margin-top: 0.7rem;
}
.carousel-desc {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.2rem;
    min-height: 60px;
    padding-inline: 10px;
}
.carousel-arrow {
    background: #e3ecfa;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: background 0.2s, color 0.2s;
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
}
.carousel-arrow-left {
    left: -70px;
}
.carousel-arrow-right {
    right: -70px;
}
.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b0c4d4;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.carousel-indicator.active {
    background: #fff;
    border: 2px solid var(--primary-color);
    transform: scale(1.2);
}

.item-handling-section .section-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.10);
    padding: 2.5rem 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.item-handling-section .section-content h3 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.item-handling-section .section-content p {
    margin-bottom: 1.2rem;
    font-size: 1.12rem;
    color: var(--text-color);
    line-height: 1.7;
}
.item-columns {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.item-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4rem;
    width: 100%;
}
.item-row div { 
    flex-basis: 50%;
}
.item-text {
    /* flex: 1 1 600px; */
    max-width: 700px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.10);
    padding: 2.2rem 2rem;
    color: var(--text-color);
}
.item-image {
    /* flex: 1 1 600px; */
    max-width: 700px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.item-image img {
    width: 100%;
    /* height: 340px; */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,82,130,0.08);
    background: #e2e8f0;
}

/* --- Modern Moving Process Timeline Styles (Final Alignment) --- */
.moving-process-timeline {
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    gap: 1.2rem;
    margin: 3rem 0 0 0;
    position: relative;
    flex-wrap: nowrap; /* Prevent wrapping on wider screens */
    overflow-x: visible;
    padding-bottom: 0;
    /* Ensure enough space above and below for the positioned circles and icons */
    padding-top: 40px; /* Space for icons above */
    padding-bottom: 40px; /* Space for circles below */
}
/* Style for the horizontal line on desktop */
.moving-process-timeline::before {
    content: '';
    display: block; /* Show horizontal line on desktop */
    position: absolute;
    /* Position line to pass through the center of the circle */
    top: calc(40px + 64px / 2); /* padding-top + half of icon height */
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
    z-index: 0;
}

.process-step {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,82,130,0.10);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    flex: 0 0 calc(20% - 1rem); /* Aim for roughly 20% width minus gap */
    min-width: 180px;
    max-width: 220px;
    width: 100%; /* Fallback */
    text-align: center;
    position: relative; /* Needed for absolute positioning of icon/circle */
    z-index: 1; /* Ensure steps are above the line */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    margin-bottom: 0; /* Reset margin */
    /* No top margin needed, icon/circle are absolutely positioned relative to the step */
    margin-top: 0;
}
.process-step:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,82,130,0.13);
}

/* Styling for Icon Container - positioned relative to the step */
.process-icon {
    width: 64px; /* Larger size for icon container */
    height: 64px; /* Larger size for icon container */
    background: #e3ecfa; /* Light background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Icon size */
    color: var(--secondary-color); /* Icon color */
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    position: absolute; /* Position icon absolutely relative to .process-step */
    /* Position above the top edge of the .process-step, centered horizontally */
    top: -32px; /* Half of height, negating to position above top edge */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: 2; /* Ensure icon is above the card */
}


.process-content {
    /* Add space above content to clear icon/circle area */
    margin-top: 32px; /* Space below icon/circle area */
}
.process-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.process-content p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Moving Process Section Styles For Other Pages */
.moving-process-section {
    padding: 5rem 0;
    background: var(--light-background);
  }
  
  .moving-process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: var(--text-color);
  }
  
  .moving-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .process-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
    display: flex;
    flex-direction: column;
  }
  
  .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(44,82,130,0.13);
  }
  
  .process-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  
  .process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .process-card:hover .process-card-image img {
    transform: scale(1.05);
  }
  
  .process-card-header {
    padding: 1.5rem;
    position: relative;
    background: var(--light-background);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .process-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  .process-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .process-card-body {
    padding: 2rem;
    background: #fff;
  }
  
  .process-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Adjust grid layout for cards 4 and 5 */
  .process-card:nth-child(4) {
    grid-column: 1 / span 2;
  }
  
  .process-card:nth-child(5) {
    grid-column: 3;
  }

/* Reviews Section Styles */
.reviews {
    background-color: var(--light-background);
    padding: 5rem 0;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    min-height: 400px;
}

.reviews-track {
    position: relative;
    width: 100%;
    min-height: 350px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 700px;
    min-height: 350px;
    margin: 0 auto;
    transition: opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(44,82,130,0.08);
    box-shadow: 0 2px 12px rgba(44,82,130,0.08);
    padding: 2.5rem 2rem;
    text-align: center;
}

.review-card.active {
    opacity: 1;
    pointer-events: auto;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: #f6ad55;
    font-size: 1.5rem;
}

.review-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 600px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--light-text);
    font-size: 1.1rem;
}

.reviews-arrow {
    background: #e3ecfa;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: background 0.2s, color 0.2s;
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
}

.reviews-arrow-left {
    left: -70px;
}

.reviews-arrow-right {
    right: -70px;
}

.reviews-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}

.reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b0c4d4;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.review-indicator.active {
    background: #fff;
    border: 2px solid var(--primary-color);
    transform: scale(1.2);
}
/* Quote Form */
.quote-section {
    background: var();
    color: #fff;
    text-align: center;
    padding: 4rem 0 3rem 0;
}
.quote-section .section-title {
    color: #fff;
}
.quote-form {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
    max-width: 600px;
    margin: 2rem auto 0 auto;
    padding: 2.5rem 2rem 2rem 2rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-row {
    display: flex;
    gap: 1.2rem;
}
.form-row input {
    flex: 1 1 0;
}
.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-bottom: 0;
}
.quote-form button {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.quote-form button:hover {
    background: var(--secondary-color);
}
/* Map section */

.map-container {
    width: 100%;
    height: 450px;
    display: block;
}