.hero-vancouver {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url(../images/from_calgary_vancouver_hero.webp) no-repeat center center/cover;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.hero-content-vancouver h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-vancouver p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Calgary to Vancouver Pricing Table Section */
.pricing-section-calgary-vancouver {
    padding: 80px 0;
    background: var(--light-background, #f7fafc);
    position: relative;
    overflow: hidden;
}

.pricing-section-calgary-vancouver .section-title {
    color: var(--primary-color, #1a365d);
    margin-bottom: 1.5rem;
}

.pricing-section-calgary-vancouver .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-color, #333);
}

.pricing-table-calgary-vancouver {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid var(--border-color, #e2e8f0);
}

.pricing-table-calgary-vancouver .pricing-table-header {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr 1fr 1.2fr;
    background: var(--primary-color, #1a365d);
    color: #fff;
    font-weight: 600;
    padding: 5px;
    gap: 5px;
}

.pricing-table-calgary-vancouver .header-cell {
    padding: 20px 10px;
    text-align: left;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 1.05rem;
}

.pricing-table-calgary-vancouver .pricing-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr 1fr 1.2fr;
    color: var(--text-color, #333);
    padding: 5px;
    gap: 5px;
    transition: background 0.2s, transform 0.2s;
}

.pricing-table-calgary-vancouver .pricing-table-row:nth-child(odd) {
    background-color: #f8fafc;
}

.pricing-table-calgary-vancouver .pricing-table-row:hover {
    background-color: #f1f5f9;
    transform: translateX(5px);
}

.pricing-table-calgary-vancouver .cell {
    padding: 16px 10px;
    text-align: left;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color, #e2e8f0);
}

.pricing-table-calgary-vancouver .cell:last-child {
    border-right: none;
}

.pricing-note {
    margin: 20px 0 0 0;
    font-size: 0.98rem;
    color: #666;
    text-align: center;
}

/* --- Enhanced Table Typography & Color --- */
.pricing-table-calgary-vancouver .pricing-table-header {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--primary-color, #1a365d);
}

.pricing-table-calgary-vancouver .header-cell {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    color: #fff;
    background: rgba(26,54,93,0.12);
}

.pricing-table-calgary-vancouver .pricing-table-row {
    color: #1a365d;
    font-size: 1.01rem;
    background: #fff;
    transition: background 0.2s, box-shadow 0.2s;
}

.pricing-table-calgary-vancouver .pricing-table-row:nth-child(odd) {
    background: #f7fafc;
}

.pricing-table-calgary-vancouver .pricing-table-row:hover {
    background: #e6f0fa;
    box-shadow: 0 2px 12px rgba(26,54,93,0.07);
}

.pricing-table-calgary-vancouver .cell {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.01rem;
    color: #1a365d;
    font-weight: 400;
    padding: 16px 10px;
    border-right: 1px solid #e2e8f0;
}

.pricing-table-calgary-vancouver .cell[data-label="Service Type"],
.pricing-table-calgary-vancouver .cell[data-label="Estimated Cost Range"] {
    font-weight: 700;
    color: var(--primary-color, #1a365d);
}

.pricing-table-calgary-vancouver .cell[data-label="Additional Notes"] {
    color: #4b5563;
    font-size: 0.97rem;
    font-style: italic;
    font-weight: 400;
}

.pricing-table-calgary-vancouver .cell[data-label="Description"] {
    font-weight: 400;
    color: #1a365d;
}

.pricing-table-calgary-vancouver .cell[data-label="Estimated Hours"] {
    font-weight: 500;
    color: #1a365d;
}

.pricing-note {
    color: #4b5563;
    font-size: 0.97rem;
    font-style: italic;
    font-family: 'Inter', Arial, sans-serif;
}

/* Modern Pricing Examples Section */
.pricing-examples-section {
    padding: 80px 0;
}
.examples-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.example-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-left: 5px solid var(--accent-color, #ffb43a);
    position: relative;
    font-family: 'Inter', Arial, sans-serif;
    transition: box-shadow 0.25s cubic-bezier(.4,2,.6,1), transform 0.22s cubic-bezier(.4,2,.6,1), border-color 0.22s;
}
.example-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 12px 36px rgba(44,82,130,0.18);
    border-left: 5px solid var(--primary-color, #1a365d);
    z-index: 2;
}
.example-card-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color, #1a365d);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}
.example-card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color, #ffb43a);
    margin-top: 0.5rem;
    border-radius: 2px;
}
.example-card-row {
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    padding: 0.7rem 1.1rem;
    margin-bottom: 0.7rem;
    font-size: 1.07rem;
    font-family: 'Inter', Arial, sans-serif;
    gap: 0;
}
.example-label {
    color: var(--primary-color, #1a365d);
    font-weight: 600;
    min-width: 110px;
    max-width: 110px;
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 0;
}
.example-label::after {
    content: '';
    margin: 0;
}
.example-value::before {
    content: ':';
    color: var(--accent-color, #ffb43a);
    margin: 0 10px 0 0;
    font-weight: 700;
    display: inline-block;
}
.example-value {
    color: #222;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 1.13rem;
    flex: 1;
    padding-left: 0;
    display: flex;
    align-items: center;
}

/* --- Why Move Split Comparison Section (Unique) --- */
.why-move-split {
    background: #f7fafc;
    padding: 5rem 0 4rem 0;
}
.split-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: #eaf6fb;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.07);
    overflow: hidden;
    margin: 0 auto;
    max-width: 950px;
    position: relative;
}
.split-side {
    flex: 1 1 0;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    min-width: 0;
}
.split-vancouver {
    border-right: 2px solid #e2e8f0;
    background: #f7fafc;
}
.split-calgary {
    background: #e6f4fa;
}
.split-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    font-size: 2.2rem;
    color: #38b6ff;
    background: transparent;
    border: none;
    z-index: 2;
    pointer-events: none;
}
.city-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    color: #1a365d;
}
.city-header i {
    font-size: 2.1rem;
    color: #38b6ff;
}
.split-row {
    margin-bottom: 2.1rem;
    text-align: center;
}
.split-row:last-child {
    margin-bottom: 0;
}
.split-row h3 {
    color: #38b6ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.split-row p {
    color: var(--text-color);
    font-size: 1.02rem;
    margin: 0;
}

/* The Importance of Hiring Professional Movers Section */
.emergency-scenarios {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.scenarios-timeline {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

.scenarios-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    transform: translateX(-50%);
    top: 50px;
}

.scenario-card {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    width: calc(50% - 30px);
}

.scenario-card:nth-child(odd) {
    margin-left: auto;
    flex-direction: row-reverse;
}

.scenario-card:nth-child(even) {
    flex-direction: row;
}

.scenario-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.scenario-card:nth-child(odd) .scenario-icon {
    margin-left: -40px;
}

.scenario-card:nth-child(even) .scenario-icon {
    margin-right: -40px;
}

.scenario-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.scenario-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.scenario-content:hover {
    transform: translateY(-5px);
}

.scenario-card:nth-child(odd) .scenario-content {
    margin-right: 30px;
}

.scenario-card:nth-child(even) .scenario-content {
    margin-left: 30px;
}

.scenario-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.scenario-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Add unique accent colors for each scenario */
.scenario-card:nth-child(1) .scenario-icon i { color: #4CAF50; }
.scenario-card:nth-child(2) .scenario-icon i { color: #2196F3; }
.scenario-card:nth-child(3) .scenario-icon i { color: #E91E63; }
.scenario-card:nth-child(4) .scenario-icon i { color: #FF9800; }
.scenario-card:nth-child(5) .scenario-icon i { color: #f44336; }

/* Long-Distance Services Infographic/Process Section */

.long-services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.18rem;
    color: #fff !important;
  }
  .long-services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.2rem 0;
    max-width: 1800px;
    margin: 0 auto;
  }
  .long-services-row {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    justify-content: flex-start;
    width: 100%;
  }
  .long-services-row:not(.long-services-row-center) .long-service-block {
    flex-basis: 34%;
    max-width: 540px;
  }
  .long-services-row-center {
    justify-content: center;
  }
  .long-service-block {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(44,82,130,0.09);
    padding: 0;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .long-service-block:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(44,82,130,0.13);
  }
  .long-service-img {
    width: 100%;
    height: 220px;
    border-radius: 0;
    overflow: hidden;
    display: block;
    margin-bottom: 0;
    background: #e2e8f0;
    box-shadow: none;
  }
  .long-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }
  .long-service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .long-service-block h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
  }
  .long-service-block p,
  .long-service-desc {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-color);
    text-align: left;
  }
  .long-service-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .long-service-block ul li {
    color: var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }
  .long-service-block ul i {
    color: var(--success-color);
    margin-top: 0.2rem;
  }

/* Moving Tips Section Styles */
.moving-tips-intro {
    text-align: center;
    padding-bottom: 40px;
    color: white !important;
    font-size: 1.1rem;
}
.moving-tips-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.moving-tips-row {
    display: flex;
    gap: 32px;
    justify-content: center;
}
.moving-tip-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(30, 60, 120, 0.10);
    width: 320px;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    padding: 32px 24px 24px 24px;
    transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
}
@media (hover: hover) {
  .moving-tip-card:hover {
    box-shadow: 0 16px 40px 0 rgba(30, 60, 120, 0.18), 0 2px 8px 0 rgba(30,60,120,0.10);
    transform: translateY(-8px) scale(1.035);
    transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 2;
  }
}
.tip-number {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb347;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.18);
    border: 4px solid #fff;
    z-index: 2;
}
.tip-image {
    width: 100%;
    max-width: 240px;
    height: 160px;
    margin-bottom: 18px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f6fa;
}
.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.tip-content {
    text-align: center;
}
.tip-content h3 {
    color: #1a3365;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.tip-content p {
    color: #2d3a4a;
    font-size: 1rem;
    margin: 0;
}

/* Why Choose carousel wider styles */
.why-choose-section .carousel {
    max-width: 800px;
}
.why-choose-section .carousel-card {
    max-width: 750px;
}



/* How to Book Section Styles */
.how-to-book-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2vw;
}
.how-to-book-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5vw;
  justify-content: center;
  align-items: stretch;
}
.how-to-book-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(30, 60, 120, 0.10);
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  max-width: 340px;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.how-to-book-card:hover {
  box-shadow: 0 16px 40px 0 rgba(30, 60, 120, 0.18), 0 2px 8px 0 rgba(30,60,120,0.10);
  transform: translateY(-8px) scale(1.035);
  z-index: 2;
}
.how-to-book-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-to-book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-to-book-content {
  padding: 28px 20px 22px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.how-to-book-content h3 {
  color: #1a3365;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-to-book-content p {
  color: #2d3a4a;
  font-size: 1rem;
  margin: 0;
}

/* Moving Checklist Section Styles */
.moving-checklist-table-wrapper {
  overflow-x: auto;
  width: 100%;
}
.moving-checklist-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(30,60,120,0.07);
  font-size: 1rem;
  min-width: 800px;
  overflow: hidden;
}
.moving-checklist-table thead th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  padding: 16px 10px;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 1;
}
.moving-checklist-table tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #e3e6ee;
  vertical-align: top;
  background: #fff;
}
.moving-checklist-table tbody tr:nth-child(even) td {
  background: #f3f4f8;
}
.moving-checklist-table td[rowspan] {
  background: #ede7e3;
  color: #7a2232;
  font-weight: 700;
  min-width: 120px;
  border-right: 2px solid #fff;
}
.moving-checklist-table input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #7a2232;
  cursor: pointer;
}
@media (max-width: 900px) {
  .moving-checklist-section {
    padding: 36px 0 24px 0;
  }
  .moving-checklist-table {
    font-size: 0.95rem;
    min-width: 600px;
  }
  .moving-checklist-table thead th, .moving-checklist-table tbody td {
    padding: 10px 6px;
  }
}
@media (max-width: 600px) {
  .moving-checklist-section .section-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .moving-checklist-table {
    font-size: 0.9rem;
    min-width: 400px;
  }
  .moving-checklist-table thead th, .moving-checklist-table tbody td {
    padding: 7px 4px;
  }
}

/* Alternate timeframe background colors */
.moving-checklist-table td[rowspan].timeframe-odd {
  background: #ede7e3;
  color: #7a2232;
}
.moving-checklist-table td[rowspan].timeframe-even {
  background: #e3eaf6;
  color: #1a3365;
}