
    /* custom overrides + animations */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
      background-color: #ffffff;
    }
    h1, h2, h3, .font-serif {
      font-family: 'Playfair Display', serif;
    }
    .hero-gradient {
      background: radial-gradient(ellipse at 90% 20%, rgba(128, 0, 32, 0.08) 0%, rgba(255,255,240,0) 70%),
                  linear-gradient(135deg, #fff8f6 0%, #ffffff 100%);
    }
    .maroon-badge {
      background: rgba(128,0,32,0.08);
      color: #800020;
    }
    .btn-maroon {
      background: #800020;
      transition: all 0.25s ease;
      box-shadow: 0 10px 20px -8px rgba(128,0,32,0.2);
    }
    .btn-maroon:hover {
      background: #5a0016;
      transform: translateY(-2px);
      box-shadow: 0 18px 28px -10px rgba(128,0,32,0.3);
    }
    .btn-outline-maroon {
      border: 1.5px solid #800020;
      color: #800020;
      background: transparent;
      transition: all 0.2s;
    }
    .btn-outline-maroon:hover {
      background: #800020;
      color: white;
      border-color: #800020;
    }
    .card-hover {
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    }
    .card-hover:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(128,0,32,0.1);
    }
    .service-icon-bg {
      background: rgba(128, 0, 32, 0.08);
      transition: all 0.2s;
    }
    .service-card:hover .service-icon-bg {
      background: #800020;
      color: white;
    }
    .trust-gradient {
      background: linear-gradient(90deg, #faf5f2 0%, #fffaf7 100%);
    }
    .step-circle {
      transition: all 0.2s;
    }
    .process-step:hover .step-circle {
      background: #800020;
      color: white;
      border-color: #800020;
    }
    .testimonial-card {
      transition: all 0.25s ease;
      border: 1px solid #f0e4e2;
      background: white;
    }
    .testimonial-card:hover {
      border-color: #80002020;
      box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.08);
    }
    input, select, textarea {
      transition: all 0.2s;
    }
    input:focus, select:focus, textarea:focus {
      border-color: #800020 !important;
      box-shadow: 0 0 0 3px rgba(128,0,32,0.1) !important;
      outline: none;
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-up {
      animation: fadeSlideUp 0.5s ease forwards;
    }
    .sticky-header {
      transition: all 0.2s;
    }
    /* cities grid icon style */
    .city-icon {
      filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(1500%) hue-rotate(320deg);
      opacity: 0.7;
    }
    .faq-summary {
      list-style: none;
    }
    .faq-summary::-webkit-details-marker {
      display: none;
    }
    
    /* Swiper customization */
    .swiper-pagination-bullet-active {
      background: #800020 !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: #800020 !important;
      background: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .swiper-button-next:after, .swiper-button-prev:after {
      font-size: 18px;
    }
    
    /* Footer Styles - Royal Home Packers and Movers */
    footer {
      background: #1a0a0e;
      color: rgba(255, 255, 255, 0.65);
      padding: 60px 20px 28px;
      font-family: 'Inter', 'DM Sans', sans-serif;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 32px;
    }
    .footer-brand .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      margin-bottom: 18px;
    }
    .footer-brand .logo-icon {
      width: 44px;
      height: 44px;
      background: #800020;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
    }
    .footer-brand .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .footer-brand .logo-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 900;
      color: white;
    }
    .footer-brand .logo-sub {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .footer-brand > p {
      font-size: 13px;
      line-height: 1.7;
      margin: 16px 0 22px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 280px;
    }
    .social-links {
      display: flex;
      gap: 12px;
    }
    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .social-link:hover {
      background: #800020;
      border-color: #800020;
      color: white;
      transform: translateY(-2px);
    }
    .footer-col h5 {
      font-size: 12px;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .footer-col ul li a:hover {
      color: white;
    }
    .footer-col ul li a .material-symbols-outlined {
      font-size: 16px;
      color: #a0002a;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      font-size: 12px;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: rgba(255, 255, 255, 0.7);
    }
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 768px) {
      footer { padding: 48px 20px 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
      .footer-brand > p { max-width: 100%; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
      .footer-links { justify-content: center; }
    }
    @media (max-width: 480px) {
      .footer-grid { gap: 28px; }
      .footer-col h5 { margin-bottom: 14px; }
      .social-links { justify-content: flex-start; }
    }
    
    /* Mobile Call Button Style */
    .mobile-call-btn {
      display: none;
    }
    @media (max-width: 768px) {
      .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #25D366;
        color: white;
        border-radius: 40px;
        padding: 8px 16px;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: all 0.2s;
      }
      .mobile-call-btn:hover {
        background: #128C7E;
        transform: scale(1.02);
      }
      .mobile-call-btn .material-symbols-outlined {
        font-size: 18px;
      }
    }
    
    /* WhatsApp Sticky Button */
    .whatsapp-sticky {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background-color: #25D366;
      color: white;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.2s ease;
      z-index: 1000;
      text-decoration: none;
    }
    .whatsapp-sticky:hover {
      transform: scale(1.08);
      background-color: #128C7E;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }
    .whatsapp-sticky .material-symbols-outlined {
      font-size: 32px;
    }
    @media (max-width: 768px) {
      .whatsapp-sticky {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
      }
      .whatsapp-sticky .material-symbols-outlined {
        font-size: 28px;
      }
    }

    /* Why Choose Us Section Styles */
    .why-choose-section {
      padding: 80px 24px;
      background: white;
    }
    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }
    .section-label {
      background: rgba(128,0,32,0.08);
      color: #800020;
      padding: 5px 14px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 28px;
      line-height: 1.2;
    }
    .why-features {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .feature-card {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 8px 0;
      border-bottom: 1px solid #f0eef2;
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .feature-icon .material-symbols-outlined {
      font-size: 28px;
      color: white;
    }
    .feature-icon.green { background: #1e7b4b; }
    .feature-icon.blue { background: #1e6f9f; }
    .feature-icon.gold { background: #b76e2e; }
    .feature-icon.purple { background: #6b3e8c; }
    .feature-text h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #1e1e2a;
    }
    .feature-text p {
      color: #5a5a6e;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .why-img {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.2);
    }
    .why-img img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    .why-badge {
      position: absolute;
      bottom: 24px;
      right: 24px;
      background: #800020;
      color: white;
      border-radius: 24px;
      padding: 16px 20px;
      text-align: center;
      box-shadow: 0 12px 20px rgba(0,0,0,0.2);
      backdrop-filter: blur(2px);
    }
    .why-badge .big {
      font-size: 2rem;
      font-weight: 800;
      font-family: 'Playfair Display', serif;
      line-height: 1;
    }
    .why-badge .small {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    @media (max-width: 900px) {
      .why-grid { grid-template-columns: 1fr; gap: 40px; }
      .section-title { font-size: 2rem; }
      .why-choose-section { padding: 60px 20px; }
    }
    @media (max-width: 550px) {
      .feature-card { flex-direction: column; gap: 12px; }
      .feature-icon { width: 44px; height: 44px; }
      .feature-icon .material-symbols-outlined { font-size: 24px; }
    }

  /* Services Section Styles */
  .services-bg {
    padding: 80px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fefaf8 100%);
  }
  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-label {
    background: rgba(128, 0, 32, 0.08);
    color: #800020;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .section-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
  }
  .service-card {
    background: white;
    padding: 28px 24px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid #f0eef2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  }
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(128, 0, 32, 0.2);
    box-shadow: 0 20px 30px -12px rgba(128, 0, 32, 0.12);
  }
  .service-icon {
    width: 56px;
    height: 56px;
    background: rgba(128, 0, 32, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.25s ease;
  }
  .service-card:hover .service-icon {
    background: #800020;
  }
  .service-icon .material-symbols-outlined {
    font-size: 30px;
    color: #800020;
    transition: all 0.25s ease;
  }
  .service-card:hover .service-icon .material-symbols-outlined {
    color: white;
  }
  .service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1e2a;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
  }
  .service-card p {
    color: #5a5a6e;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .services-bg { padding: 60px 20px; }
    .section-title { font-size: 1.8rem; }
    .services-grid { gap: 20px; grid-template-columns: 1fr; }
    .service-card { padding: 22px 20px; }
  }

  /* Process Section Styles */
  .process-bg {
    padding: 80px 24px;
    background: linear-gradient(135deg, #faf5f2 0%, #ffffff 100%);
  }
  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-label {
    background: rgba(128, 0, 32, 0.08);
    color: #800020;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .section-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
  }
  .process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 1px solid #f0eef2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  }
  .process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 0, 32, 0.15);
    box-shadow: 0 20px 35px -12px rgba(128, 0, 32, 0.12);
  }
  .step-num {
    width: 60px;
    height: 60px;
    background: #800020;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(128, 0, 32, 0.2);
  }
  .process-step:hover .step-num {
    transform: scale(1.05);
    background: #5a0016;
    box-shadow: 0 12px 22px rgba(128, 0, 32, 0.3);
  }
  .process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1e2a;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
  }
  .process-step p {
    color: #5a5a6e;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 1024px) {
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }
  @media (max-width: 640px) {
    .process-bg { padding: 60px 20px; }
    .section-title { font-size: 1.8rem; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .process-step { padding: 24px 16px; }
    .step-num { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 16px; }
  }
  /* Cities Section Styles */
  .cities-section {
    padding: 80px 24px;
    background: #ffffff;
  }
  .cities-container {
    max-width: 1280px;
    margin: 0 auto;
  }
  .cities-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .cities-badge {
    background: rgba(128, 0, 32, 0.08);
    color: #800020;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
  }
  .cities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
  .cities-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .city-tag {
    background: #f5f5f5;
    color: #333;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: default;
    border: 1px solid #eee;
  }
  .city-tag:hover {
    background: #800020;
    color: white;
    border-color: #800020;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(128, 0, 32, 0.15);
  }
  @media (max-width: 640px) {
    .cities-section { padding: 50px 20px; }
    .cities-title { font-size: 1.8rem; }
    .city-tag { padding: 6px 16px; font-size: 0.8rem; }
    .cities-grid { gap: 10px; }
  }

.iso-logo img {
  max-width: 120px;
  margin-top: 10px;
}


