.hero-section {
    background-image: url(../images/home-hero.webp)
}


/*Reliable Reasons Section*/

.reasons-section {
    background-color: var(--primary-color);
    padding: 4rem 0;
}

.reasons-section p {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 1.1rem;
}
.reasons-section h2 {
    text-align: center;
    color: white;
}
.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-text p, .item-text h3 {
    color: var(--text-color);
    text-align: left;
    margin: 0;
}
.item-text h3 {
    margin-bottom: 0.75rem;
}
.item-text p {
    font-size: 20px;
}
.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;
}

/* Pricing Cost Section */
.pricing-cost-section {
    background: var(background-color);
    padding: 5rem 0;
    color: var(--text-color);
    position: relative;
}

.pricing-cost-section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 1.5rem;
}

.pricing-cost-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-cost-content p {
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 400;
}

.pricing-cost-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.pricing-cost-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.pricing-cost-content p:first-of-type::before {
    display: none;
}

.pricing-cost-content p:last-of-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    margin-top: 2.5rem;
    text-align: center;
    font-style: italic;
}

.pricing-cost-content p:last-of-type::before {
    display: none;
}

.pricing-cost-table-wrapper {
    margin: 3rem 0;
    overflow-x: auto;
    position: relative;
}

.pricing-cost-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 107, 107, 0.1);
}

.pricing-cost-table-header {
    background: var(--primary-color);
}

.pricing-cost-table-header th {
    padding: 22px 20px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pricing-cost-table-row {
    transition: all 0.3s ease;
}

.pricing-cost-table-row:nth-child(odd) {
    background-color: #f5f5f5;
}

.pricing-cost-table-row:nth-child(even) {
    background-color: #e8e8e8;
}

.pricing-cost-table-row:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.pricing-cost-table-row td {
    padding: 22px 20px;
    color: var(--text-color);
    font-size: 1.08rem;
    border: none;
    font-weight: 500;
}

.pricing-cost-table-row td:first-child {
    font-weight: 600;
    color: var(--text-color);
}

.pricing-cost-table-row td:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */

.cta-section {
    background-color: var(--primary-color) !important;
}
.cta-content h2, .cta-content p {
    color: white;
}

.cta-section .btn {
    background-color: var(--accent-color);
    color: var(--text-color);
}

/* Companies List Section */
.companies-list-section {
    background-color: var(background-color);
    padding: 6rem 0;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.companies-list-section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 2rem;
}

.companies-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
}

.companies-intro p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    font-weight: 500;
}

.company-item {
    max-width: 1200px;
    margin: 0 auto 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid rgba(255, 107, 107, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.company-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);
}

.company-item h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.company-website-screenshot {
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid rgba(255, 107, 107, 0.1);
    background: #f5f5f5;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-website-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.15);
}

.company-website-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 400px;
}

/* Placeholder styling when image is missing or loading */
.company-website-screenshot:has(img[src=""])::after,
.company-website-screenshot:not(:has(img[src]))::after {
    content: '📱 Website Screenshot Placeholder';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.company-info-table-wrapper {
    margin: 3rem 0;
    overflow-x: auto;
    position: relative;
    padding-top: 35px;
}

.company-info-table-wrapper::before {
    content: 'ℹ️ Company Information';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.company-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid rgba(255, 107, 107, 0.15);
}

.company-info-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.company-info-table tr:last-child {
    border-bottom: none;
}

.company-info-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.company-info-table tr:nth-child(even) {
    background-color: #fff;
}

.company-info-table tr:hover {
    background-color: rgba(255, 107, 107, 0.05);
}

.company-info-table .info-label {
    padding: 22px 25px;
    font-weight: 800;
    color: var(--text-color);
    width: 220px;
    vertical-align: top;
    border-right: 3px solid rgba(255, 107, 107, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 107, 107, 0.03) 100%);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.company-info-table .info-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 2px;
}

.company-info-table .info-value {
    padding: 22px 25px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.company-info-table .info-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.company-info-table .info-value a:hover {
    color: white;
    background: var(--primary-color);
    text-decoration: none;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.company-description {
    margin: 4rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    position: relative;
}

.company-description::before {
    content: '📝';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2.5rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 3px solid var(--primary-color);
}

.company-description p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
}

.company-description p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.pros-cons-section {
    margin: 4rem 0;
    padding: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.pros-cons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--success-color) 0%, var(--error-color) 100%);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.pros-column,
.cons-column {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.pros-column {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.05) 0%, rgba(50, 205, 50, 0.02) 100%);
    border: 2px solid rgba(50, 205, 50, 0.2);
}

.cons-column {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(220, 20, 60, 0.02) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.pros-column:hover,
.cons-column:hover {
    transform: translateY(-3px);
}

.pros-column h4,
.cons-column h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pros-column h4 {
    color: var(--success-color);
}

.pros-column h4::before {
    content: '✓';
    background: var(--success-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.cons-column h4 {
    color: var(--error-color);
}

.cons-column h4::before {
    content: '✗';
    background: var(--error-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    padding: 1rem 1rem 1rem 2.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.pros-list li {
    border-left-color: var(--success-color);
}

.cons-list li {
    border-left-color: var(--error-color);
}

.pros-list li:hover,
.cons-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.9);
}

.public-reviews-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid rgba(255, 107, 107, 0.2);
    position: relative;
}

.public-reviews-section::before {
    content: '💬';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 3px solid var(--primary-color);
}

.public-reviews-section h4 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 1.5rem;
}

.public-reviews-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.review-box {
    padding: 2.5rem;
    border: 3px solid var(--primary-color);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 10px 35px rgba(255, 107, 107, 0.15), 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.review-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 107, 107, 0.2), 0 6px 20px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.review-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
}

.review-box p:first-child::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.reviewer-name {
    font-style: italic;
    font-weight: 800;
    color: var(--light-text) !important;
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    text-align: right !important;
    padding-top: 1.5rem !important;
    border-top: 2px solid rgba(255, 107, 107, 0.2) !important;
    font-size: 1.1rem !important;
    position: relative;
}

.reviewer-name::before {
    content: '—';
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Bottom Line Section */
.bottom-line-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55555 50%, var(--primary-color) 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.bottom-line-section h2 {
    margin-bottom: 48px;
}

.bottom-line-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.bottom-line-content p {
    font-size: 1.25rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 2.5rem;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bottom-line-content p:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    border-left-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.bottom-line-content p:first-of-type {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 215, 0, 0.6);
    font-weight: 600;
    font-size: 1.3rem;
}

.bottom-line-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 215, 0, 0.5);
    text-align: center;
    padding: 2rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.bottom-line-content p:last-child::before {
    display: none;
}

/* Things to Consider Before Choosing a Moving Company in Victoria Section */
.moving-process-section {
    background-color: var(--primary-color);
}
.moving-process-section h2 {
    color: white;
}
.things-to-consider-description {
    color: white;
    text-align: center;
}
.process-card-image {
    height: 250px;
}