@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', Arial, sans-serif; background: #f8f8f8; color: #222; line-height: 1.6; }
a{
    text-decoration: none;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (max-width: 1200px) {
    html { font-size: 15px; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
}

@media (max-width: 480px) {
    html { font-size: 13px; }
}

/* Company Marquee Animation */
.company-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    animation: marquee 15s linear infinite;
    display: inline-block;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Top Red Navigation Bar */
.topbar {
    background: #e51b23;
    color: #fff;
    font-size: 1rem;
    padding: 0.3rem 0;
}
.topbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.topnav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    list-style: none;
    justify-content: center;
    align-items: center;
}
.topnav li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0 0.3rem;
    border-right: 1px solid #fff3;
}
.topnav li:last-child a {
    border-right: none;
}

/* Secondary Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 0.5rem 0;
}
.header-left {
    display: flex;
    align-items: center;   /* Vertically center text with logo */
    gap: 12px;             /* Space between logo and text */
}

.header-logo {
    height: 120px;
    width: 120px;          /* Keep logo square */
    border-radius: 50%;
    background: #eee;
    object-fit: cover;     /* Ensures image doesn’t stretch */
}

.logo-txt {
    font-size: 34px;
    font-weight: bold;
    background: linear-gradient(to right, red, rgb(165, 165, 165));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* For WebKit browsers */
    background-clip: text;
    color: transparent; /* Fallback */
}

.header-center {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #e51b23;
    font-weight: bold;
}
.header-contact .icon {
    font-size: 1.3rem;
}
.contact-number {
    font-size: 1.2rem;
    font-weight: bold;
}
.contact-desc {
    font-size: 0.95rem;
    color: #444;
    font-weight: normal;
}
.header-track {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1rem;
    color: #e51b23;
}
.header-track .icon {
    font-size: 1.2rem;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}
.flag-icon {
    font-size: 1.5rem;
}

/* Mobile responsiveness
@media (max-width: 768px) {
  .header-center {
    display: flex;
    justify-content: center;  /* center horizontally 
    text-align: center;
    width: 100%;
  } 

  .header-contact {
    flex-direction: column;   /* stack icon, number, desc vertically 
    align-items: center;      /* center them 
    gap: 0.3rem;              /* small spacing 
  }
}
.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    margin-left: 1rem;
 } */

/* Responsive styles for all devices */
.header-center {
  display: flex;
  justify-content: center;  /* center horizontally */
  text-align: center;
  width: 100%;
}

.header-contact {
  flex-direction: column;   /* stack icon, number, desc vertically */
  align-items: center;      /* center them */
  gap: 0.3rem;              /* small spacing */
}

.menu-icon {
  font-size: 2rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* Optional: adjust when device is in landscape */
@media (orientation: landscape) {
  .header-contact {
    flex-direction: row;  /* keep items in one line if landscape looks better */
    gap: 1rem;
  }

  .menu-icon {
    font-size: 2.5rem;  /* slightly larger in landscape */
  }
}


/* Main Navigation */
.mainnav {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 0.5rem;
    position: relative;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #e51b23;
    cursor: pointer;
    padding: 1.5rem;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    background: #e51b23;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: #f5f5f5;
}
.mainnav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: center;
    padding: 0.7rem 0;
}
.mainnav ul li a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s;
}
.mainnav ul li a:hover {
    color: #e51b23;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #e51b23 60%, #c2181e 100%);
    color: #fff;
    padding: 3.5rem 0 3rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(229,27,35,0.10);
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.08);
    z-index: 0;
}
.hero-banner .container {
    position: relative;
    z-index: 1;
}
.hero-banner h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.1;
}
.hero-underline {
    width: 80px;
    height: 5px;
    background: #fff;
    margin: 0 auto 1.5rem auto;
    border-radius: 2.5px;
}
.hero-banner p {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
    color: #fffde7;
    letter-spacing: 0.2px;
}
.hero-banner p:last-child {
    font-size: 1.2rem;
    color: #ffe0b2;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: #faf7f7;
    padding: 0.7rem 0;
    font-size: 1rem;
    color: #888;
    border-bottom: 1px solid #eee;
}
.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.breadcrumb-home {
    color: #e51b23;
    font-weight: 500;
}
.breadcrumb-sep {
    margin: 0 0.3rem;
}
.breadcrumb-current {
    color: #aaa;
}

/* Main Content */
.main-content {
    background: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    border-radius: 0;
    box-shadow: none;
}

/* Worldwide Presence */
.worldwide-presence { margin-bottom: 2rem; }
.worldwide-presence h2 { color: #e67e22; margin-bottom: 0.5rem; }
.countries-list { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; list-style: none; margin-top: 1rem; }
.countries-list li { background: #f1f1f1; padding: 0.4rem 1rem; border-radius: 16px; font-size: 0.98rem; }

/* Contact */
.contact { margin-bottom: 2rem; text-align: center; }
.contact h2 { color: #e67e22; margin-bottom: 0.5rem; }
.map-img { width: 100%; max-width: 400px; margin: 1rem auto; display: block; border-radius: 8px; background: #eee; height: 180px; object-fit: cover; }

/* Testimonials */
.testimonials { margin-bottom: 2rem; }
.testimonials h2 { color: #e67e22; margin-bottom: 1rem; }
.testimonials blockquote { background: #f9f9f9; border-left: 4px solid #e67e22; margin: 1rem 0; padding: 1rem 1.5rem; border-radius: 6px; }
.testimonials blockquote footer { font-size: 0.95rem; color: #888; margin-top: 0.5rem; }

/* Footer */
footer { background: #222; color: #fff; padding: 2rem 0 1rem 0; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-around; margin-bottom: 1.5rem; }
.footer-section { min-width: 180px; margin-bottom: 1rem; }
.footer-section h3 { color: #e67e22; margin-bottom: 0.7rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.4rem; }
.footer-section ul li a { color: #fff; text-decoration: none; font-size: 0.98rem; transition: color 0.2s; }
.footer-section ul li a:hover { color: #e67e22; }
.footer-bottom { text-align: center; border-top: 1px solid #444; padding-top: 1rem; }
.footer-links { display: inline-flex; gap: 1.5rem; list-style: none; margin-top: 0.5rem; }
.footer-links li a { color: #fff; text-decoration: none; font-size: 0.95rem; }
.footer-links li a:hover { color: #e67e22; }

/* Responsive */
@media (max-width: 900px) {
    .header-flex, .mainnav ul {
        flex-direction: column;
        gap: 0.7rem;
    }
    .main-content {
        padding: 1rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .topnav, .mainnav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .header-flex {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .main-content {
        margin: 1rem 0;
    }
    .hero-banner {
        padding: 2rem 0 1.2rem 0;
    }
    .hero-banner h1 {
        font-size: 2rem;
    }
    .hero-underline {
        width: 50px;
        height: 3px;
    }
    .hero-banner p {
        font-size: 1.1rem;
    }
}

.locations-section {
    text-align: center;
    margin: 2.5rem 0 2rem 0;
}
.locations-title {
    color: #e51b23;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}
.locations-desc {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.locations-assist {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2.2rem;
}
.locations-assist .highlight {
    color: #222;
}
.worldwide-presence-block {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}
.worldmap-icon {
    margin-bottom: 1.2rem;
}
.worldwide-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.5rem;
}
.worldwide-patent {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.5rem;
}
.worldwide-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.testimonials-section {
    margin: 3.5rem 0 2.5rem 0;
    text-align: center;
}
.testimonials-title {
    font-size: 2.3rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 2.5rem;
}
.testimonials-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.testimonial {
    background: none;
    flex: 1 1 0;
    min-width: 280px;
    max-width: 32%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.testimonial-quote {
    font-size: 3.5rem;
    color: #e51b23;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}
.testimonial-text {
    font-size: 1.15rem;
    color: #444;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    background: #eee;
}
.testimonial-info {
    text-align: left;
}
.testimonial-name {
    font-weight: bold;
    color: #111;
    font-size: 1.1rem;
}
.testimonial-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.testimonial-relocate {
    color: #222;
    font-size: 1rem;
    font-weight: bold;
}
.testimonial-arrows {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.arrow-btn {
    background: #fff;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    color: #222;
    cursor: pointer;
    transition: border 0.2s;
}
.arrow-btn:hover {
    border: 1.5px solid #e51b23;
    color: #e51b23;
}

@media (max-width: 1000px) {
    .testimonials-list {
        flex-direction: column;
        align-items: center;
    }
    .testimonial {
        max-width: 100%;
    }
}

/* Quote Box Section */
.quote-box-section {
    background: none;
    margin: 2.5rem 0 2rem 0;
    display: flex;
    justify-content: center;
}
.quote-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.quote-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.quote-tab {
    background: #fff;
    border: none;
    border-radius: 7px 7px 0 0;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.04);
    padding: 0.5rem 0.8rem 0.4rem 0.8rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    outline: none;
    transition: all 0.22s cubic-bezier(.4,2,.6,1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.quote-tab.selected, .quote-tab:hover {
    background: linear-gradient(90deg, #fff 70%, #ffeaea 100%);
    color: #e51b23;
    box-shadow: 0 6px 18px 0 rgba(229,27,35,0.12);
    font-weight: 700;
    border-bottom: 3px solid #e51b23;
    transform: scale(1.07);
    z-index: 2;
    transition: all 0.22s cubic-bezier(.4,2,.6,1);
}
.tab-icon {
    font-size: 1.3rem;
}
.quote-contact {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: #e51b23;
    color: #fff;
    border-radius: 50px;
    padding: 0.7rem 1.5rem 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(229,27,35,0.10);
}
.quote-phone-icon {
    font-size: 1.5rem;
}
.quote-phone-number {
    font-size: 1.3rem;
    font-weight: 700;
}
.quote-phone-desc {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 0.5rem;
}
.quote-form {
    margin-top: 2.5rem;
}
.quote-form:first-child {
    display: block; /* Show first form by default */
}
.quote-form h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #222;
}
.quote-highlight {
    color: #e51b23;
    font-weight: 700;
}
.quote-form-row {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}
.quote-form-row input[type="text"],
.quote-form-row input[type="email"] {
    flex: 1 1 180px;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    background: #fafafa;
    transition: border 0.2s;
}
.quote-form-row input[type="text"]:focus,
.quote-form-row input[type="email"]:focus {
    border: 1.5px solid #e51b23;
    outline: none;
}
.quote-captcha {
    background: #222;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Poppins', Arial, sans-serif;
    padding: 0.85rem 1.2rem;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-submit {
    background: #e51b23;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 0.5rem;
}
.quote-submit:hover {
    background: #c2181e;
}
.quote-form-agree {
    align-items: center;
    gap: 0.5rem;
    font-size: 0.98rem;
    color: #666;
}
.quote-form-agree input[type="checkbox"] {
    accent-color: #e51b23;
    width: 1.1rem;
    height: 1.1rem;
}
.quote-form-agree a {
    color: #222;
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width: 900px) {
    .quote-box {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .quote-contact {
        position: static;
        margin-bottom: 1.2rem;
        justify-content: center;
    }
    .quote-tabs {
        gap: 0.2rem;
    }
    .quote-tab {
        padding: 0.4rem 0.7rem 0.3rem 0.7rem;
        font-size: 0.93rem;
    }
}
@media (max-width: 600px) {
    .quote-box-section {
        margin: 1.2rem 0 1rem 0;
    }
    .quote-box {
        padding: 0.7rem 0.2rem 1rem 0.2rem;
    }
    .quote-tabs {
        flex-direction: column;
        gap: 0.2rem;
    }
    .quote-form-row {
        flex-direction: column;
        gap: 0.7rem;
    }
    .quote-contact {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Search By Location Section */
.search-location-section {
    margin: 3.5rem 0 2.5rem 0;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}
.search-location-title {
    color: #e51b23;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
}
.search-location-divider {
    border: none;
    border-top: 2px solid #eee;
    margin-bottom: 1.5rem;
    margin-top: 0;
}
.search-location-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem 2.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}
.search-location-list ul {
    list-style: disc inside;
    padding-left: 0.5rem;
}
.search-location-list li {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0.5rem;
    transition: color 0.18s, text-decoration 0.18s;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.search-location-list li:hover {
    color: #e51b23;
    text-decoration: underline;
}
.search-location-list li[title] {
    position: relative;
}
@media (max-width: 1000px) {
    .search-location-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .search-location-section {
        padding: 0 0.5rem;
        min-width: 0;
    }
    .search-location-list {
        grid-template-columns: 1fr;
        gap: 0.2rem 0;
        min-width: 0;
    }
    .search-location-title {
        font-size: 1.3rem;
    }
}

/* Connect With Us Section */
.connect-section {
    background: #f7f7f7;
    padding: 3rem 0 3.5rem 0;
    margin: 0;
    text-align: center;
}
.connect-title {
    color: #e51b23;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.connect-subtitle {
    color: #666;
    font-size: 1.13rem;
    margin-bottom: 2.5rem;
}
.connect-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.connect-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
    padding: 2.2rem 2.1rem 1.5rem 2.1rem;
    min-width: 270px;
    max-width: 340px;
    flex: 1 1 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s;
}
.connect-card:hover {
    box-shadow: 0 6px 24px 0 rgba(229,27,35,0.13);
}
.connect-icon {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.connect-card-content {
    color: #222;
    font-size: 1.08rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 1000px) {
    .connect-cards {
        gap: 1.2rem;
    }
    .connect-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
        min-width: 200px;
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .connect-cards {
        flex-direction: column;
        align-items: center;
    }
    .connect-card {
        width: 100%;
        min-width: 0;
        margin-bottom: 1.2rem;
    }
}

.site-footer {
    background: #b10d1b;
    color: #fff;
    padding: 2.2rem 0 1.2rem 0;
    font-size: 1rem;
    margin-top: 0;
}
.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-address {
    font-size: 0.98rem;
    color: #fff;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid #fff2;
    padding-top: 1.1rem;
    font-size: 0.98rem;
}
.footer-links {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.98rem;
    opacity: 0.95;
    transition: color 0.18s;
}
.footer-links a:hover {
    color: #ffe0b2;
}
.footer-social {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
}
.footer-social a svg {
    vertical-align: middle;
    border-radius: 50%;
    background: #e51b23;
    transition: background 0.18s;
}
.footer-social a:hover svg {
    background: #fff;
}
@media (max-width: 700px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.93rem;
    }
    .site-footer .footer-content {
        padding: 0 0.7rem;
    }
}

/* Why Us Page Styles */
.whyus-hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.whyus-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.whyus-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whyus-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.8) 0%, rgba(194, 24, 30, 0.9) 100%);
    z-index: 1;
}

.whyus-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.whyus-hero-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fffde7;
}

.whyus-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.whyus-hero-underline {
    width: 100px;
    height: 4px;
    background: #fff;
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.whyus-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fffde7;
}

.whyus-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.whyus-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.whyus-about-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.whyus-about-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e51b23;
    margin-bottom: 2rem;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.whyus-about-left h2:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(229, 27, 35, 0.3);
    color: #c2181e;
}

.whyus-about-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e51b23, #c2181e);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.whyus-about-left h2:hover::after {
    width: 100%;
}

.whyus-about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.whyus-about-left p:last-child {
    margin-bottom: 0;
}

.whyus-about-right {
    text-align: center;
}

.whyus-manager-img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.whyus-faq-section {
    margin-bottom: 4rem;
}

.whyus-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e51b23;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.whyus-faq-title:hover {
    transform: scale(1.02);
    text-shadow: 0 4px 12px rgba(229, 27, 35, 0.4);
    color: #c2181e;
}

.whyus-faq-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(229, 27, 35, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.whyus-faq-title:hover::before {
    width: 120%;
    height: 120%;
}

.whyus-faq-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.whyus-faq-list {
    display: grid;
    gap: 1.5rem;
}

.whyus-faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.whyus-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.whyus-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.whyus-faq-meta {
    display: block;
    font-size: 0.9rem;
    color: #e51b23;
    font-weight: 500;
    margin-top: 0.5rem;
    font-style: italic;
    transition: all 0.3s ease;
}

.whyus-faq-meta:hover {
    color: #c2181e;
    transform: translateX(5px);
}

.whyus-cta-section {
    margin-bottom: 4rem;
}

.whyus-cta-bar {
    background: linear-gradient(135deg, #e51b23 0%, #c2181e 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(229, 27, 35, 0.2);
}

.whyus-ceo-section {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.whyus-ceo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.whyus-ceo-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.whyus-ceo-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    color: #333;
}

.whyus-ceo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e51b23;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.whyus-ceo-content h2:hover {
    transform: translateY(-3px);
    text-shadow: 0 6px 16px rgba(229, 27, 35, 0.5);
    color: #c2181e;
}

.whyus-ceo-content h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #e51b23, #c2181e, #e51b23);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.whyus-ceo-content h2:hover::before {
    width: 80%;
}

.whyus-ceo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whyus-ceo-sign {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e51b23;
}

.ceo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e51b23;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ceo-name:hover {
    color: #c2181e;
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(229, 27, 35, 0.3);
}

.ceo-title {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.ceo-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #e51b23;
    margin-top: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ceo-signature:hover {
    color: #c2181e;
    transform: scale(1.1);
    text-shadow: 0 3px 6px rgba(229, 27, 35, 0.4);
}

/* Enhanced hover effects for FAQ items */
.whyus-faq-item:hover .whyus-faq-question {
    color: #e51b23;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Responsive hover effects */
@media (max-width: 900px) {
    .whyus-about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whyus-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .whyus-hero-content h3 {
        font-size: 1.3rem;
    }
    
    .whyus-about-left h2,
    .whyus-faq-title,
    .whyus-ceo-content h2 {
        font-size: 2rem;
    }
    
    .whyus-main-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 600px) {
    .whyus-hero-banner {
        height: 300px;
    }
    
    .whyus-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .whyus-hero-content h3 {
        font-size: 1.1rem;
    }
    
    .whyus-hero-content p {
        font-size: 1rem;
    }
    
    .whyus-about-left h2,
    .whyus-faq-title,
    .whyus-ceo-content h2 {
        font-size: 1.8rem;
    }
    
    .whyus-about-left p,
    .whyus-faq-subtitle,
    .whyus-ceo-content p {
        font-size: 1rem;
    }
    
    .whyus-faq-item {
        padding: 1rem;
    }
    
    .whyus-cta-bar {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .whyus-ceo-content {
        padding: 2rem 1.5rem;
    }
    
    .whyus-main-content {
        padding: 1.5rem 0.8rem;
    }
}

/* Services Page Styles */
.services-hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.8) 0%, rgba(194, 24, 30, 0.9) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.services-hero-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fffde7;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.services-hero-underline {
    width: 100px;
    height: 4px;
    background: #fff;
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.services-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fffde7;
}

.services-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.services-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.services-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e51b23;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.services-main-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(229, 27, 35, 0.3);
    color: #c2181e;
}

.services-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e51b23, #c2181e);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.services-main-title:hover::after {
    width: 80%;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Quick Overview */
.services-quick-overview {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-quick-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-quick-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #e51b23;
    background: #fff5f5;
}

.service-quick-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.service-quick-item:hover .service-quick-icon {
    transform: scale(1.1);
}

.service-quick-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.service-quick-item:hover h4 {
    color: #e51b23;
    transform: scale(1.02);
}

.service-quick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.05), rgba(194, 24, 30, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-quick-item:hover::before {
    opacity: 1;
}

.service-section {
    margin-bottom: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e51b23, #c2181e);
    border-radius: 8px;
    padding: 1.5rem;
    min-height: 150px;
}

.icon-large {
    font-size: 3rem;
    color: #fff;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e51b23;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-title:hover {
    color: #c2181e;
    transform: translateX(3px);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e51b23;
    font-weight: bold;
}

.service-cta {
    margin-top: auto;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e51b23, #c2181e);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-btn:hover {
    background: transparent;
    color: #e51b23;
    border-color: #e51b23;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 27, 35, 0.3);
}

.additional-services {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.additional-service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #e51b23;
}

.additional-service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.additional-service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e51b23;
    margin-bottom: 0.5rem;
}

.additional-service-item p {
    color: #666;
    font-size: 0.95rem;
}

.services-cta-section {
    background: linear-gradient(135deg, #e51b23 0%, #c2181e 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 16px;
    margin-top: 4rem;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #fff;
    color: #e51b23;
    border-color: #fff;
}

.cta-btn.primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #e51b23;
    transform: translateY(-2px);
}

/* Responsive Design for Services Page */
@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .service-icon {
        min-height: 120px;
        padding: 1.2rem;
    }
    
    .icon-large {
        font-size: 2.5rem;
    }
    
    .services-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .services-cta-content h2 {
        font-size: 2rem;
    }
    
    .services-main-content {
        padding: 2rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .service-quick-item {
        padding: 0.8rem;
    }
    
    .service-quick-icon {
        font-size: 1.5rem;
    }
    
    .service-quick-item h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .services-hero-banner {
        height: 300px;
    }
    
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-hero-content h3 {
        font-size: 1.1rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .services-main-title {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-card {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .service-icon {
        min-height: 100px;
        padding: 1rem;
    }
    
    .icon-large {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.2rem 0;
    }
    
    .service-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-cta-section {
        padding: 2rem 1rem;
    }
    
    .services-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-main-content {
        padding: 1.5rem 0.8rem;
    }
    
    .services-quick-overview {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .service-quick-item {
        padding: 0.6rem;
    }
    
    .service-quick-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .service-quick-item h4 {
        font-size: 0.8rem;
    }
}

/* Storage Page Styles */
.storage-hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.storage-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.storage-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.storage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.8) 0%, rgba(194, 24, 30, 0.9) 100%);
    z-index: 1;
}

.storage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.storage-hero-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fffde7;
}

.storage-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.storage-hero-underline {
    width: 100px;
    height: 4px;
    background: #fff;
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.storage-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fffde7;
}

.storage-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.storage-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.storage-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.storage-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e51b23;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.storage-main-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(229, 27, 35, 0.3);
    color: #c2181e;
}

.storage-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e51b23, #c2181e);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.storage-main-title:hover::after {
    width: 80%;
}

.storage-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Storage Quick Overview */
.storage-quick-overview {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.storage-quick-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.storage-quick-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #e51b23;
    background: #fff5f5;
}

.storage-quick-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.storage-quick-item:hover .storage-quick-icon {
    transform: scale(1.1);
}

.storage-quick-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.storage-quick-item:hover h4 {
    color: #e51b23;
    transform: scale(1.02);
}

.storage-quick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.05), rgba(194, 24, 30, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.storage-quick-item:hover::before {
    opacity: 1;
}

.storage-section {
    margin-bottom: 2.5rem;
}

/* Storage Services Grid */
.storage-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.storage-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    max-width: none;
    margin: 0;
}

.storage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #e51b23;
}

.storage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e51b23, #c2181e, #e51b23);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.storage-card:hover::before {
    opacity: 1;
}

.storage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 1.5rem;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.storage-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 27, 35, 0.1), rgba(194, 24, 30, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.storage-card:hover .storage-icon::after {
    opacity: 1;
}

.storage-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.storage-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.storage-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e51b23, #c2181e);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.storage-card:hover .storage-title::after {
    width: 40px;
}

.storage-title:hover {
    color: #e51b23;
    transform: translateX(3px);
}

.storage-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    flex: 1;
}

.storage-features {
    list-style: none;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #e51b23;
}

.storage-features li {
    padding: 0.3rem 0;
    color: #444;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.storage-features li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.storage-cta {
    margin-top: auto;
    text-align: center;
}

.storage-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.storage-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.storage-btn:hover::before {
    left: 100%;
}

.storage-btn:hover {
    background: linear-gradient(135deg, #e51b23, #c2181e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 27, 35, 0.3);
}

/* Storage Locations */
.storage-locations {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #e51b23;
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e51b23;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #666;
    font-size: 0.95rem;
}

.storage-cta-section {
    background: linear-gradient(135deg, #e51b23 0%, #c2181e 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 16px;
    margin-top: 4rem;
}

.storage-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.storage-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Responsive Design for Storage Page */
@media (max-width: 900px) {
    .storage-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .storage-card {
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .storage-icon {
        min-height: 80px;
        padding: 1.2rem;
    }
    
    .icon-large {
        font-size: 2.2rem;
    }
    
    .storage-content {
        padding: 1.2rem;
    }
    
    .storage-title {
        font-size: 1.3rem;
    }
    
    .storage-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .storage-main-title {
        font-size: 2rem;
    }
    
    .storage-main-content {
        padding: 2rem 1rem;
    }
    
    .storage-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .storage-quick-item {
        padding: 0.8rem;
    }
    
    .storage-quick-icon {
        font-size: 1.5rem;
    }
    
    .storage-quick-item h4 {
        font-size: 0.85rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .storage-hero-banner {
        height: 300px;
    }
    
    .storage-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .storage-hero-content h3 {
        font-size: 1.1rem;
    }
    
    .storage-hero-content p {
        font-size: 1rem;
    }
    
    .storage-main-title {
        font-size: 1.8rem;
    }
    
    .storage-title {
        font-size: 1.2rem;
    }
    
    .storage-services-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .storage-card {
        margin-bottom: 1rem;
        max-width: 300px;
    }
    
    .storage-icon {
        min-height: 70px;
        padding: 1rem;
    }
    
    .icon-large {
        font-size: 1.8rem;
    }
    
    .storage-content {
        padding: 1rem;
    }
    
    .storage-description {
        font-size: 0.9rem;
    }
    
    .storage-features {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .storage-features li {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .storage-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .storage-main-content {
        padding: 1.5rem 0.8rem;
    }
    
    .storage-quick-overview {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .storage-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .storage-quick-item {
        padding: 0.6rem;
    }
    
    .storage-quick-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .storage-quick-item h4 {
        font-size: 0.8rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-item {
        padding: 1.5rem;
    }
    
    .storage-cta-section {
        padding: 2rem 1rem;
    }
    
    .storage-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .storage-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Us Page Styles */
.contact-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.contact-hero-content h1:hover {
    transform: scale(1.05);
}

.contact-hero-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.contact-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    transition: color 0.3s ease;
}

.contact-main-title:hover {
    color: #667eea;
}

.contact-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-main-title:hover::after {
    width: 100px;
}

/* Contact Information Section */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-info-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-content h3 {
    color: #667eea;
}

.contact-info-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Enquiry Form Section */
.enquiry-form-section {
    margin-bottom: 4rem;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.enquiry-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #667eea;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #bdc3c7;
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    accent-color: #667eea;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-group:hover label {
    color: #667eea;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.submit-btn,
.reset-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.reset-btn {
    background: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
}

.reset-btn:hover {
    background: #d5dbdb;
    border-color: #95a5a6;
    transform: translateY(-2px);
}

/* Quick Contact Section */
.quick-contact-section {
    margin-bottom: 3rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.quick-contact-card:hover::before {
    left: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.quick-contact-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.quick-contact-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quick-contact-card:hover h3 {
    color: #667eea;
}

.quick-contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.quick-contact-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.quick-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

/* Responsive Design for Contact Page */
@media (max-width: 900px) {
    .contact-hero-banner {
        height: 350px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .submit-btn,
    .reset-btn {
        width: 100%;
        max-width: 200px;
    }

}

@media (max-width: 600px) {
    .contact-hero-banner {
        height: 300px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-main-content {
        padding: 2rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-main-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-content h3 {
        font-size: 1.2rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .quick-contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .quick-contact-card h3 {
        font-size: 1.2rem;
    }
    
    .quick-contact-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Shifting Process Page Styles */
.shifting-hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.shifting-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.shifting-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shifting-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.8) 0%, rgba(0, 100, 0, 0.9) 100%);
    z-index: 1;
}

.shifting-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.shifting-hero-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #90EE90;
}

.shifting-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.shifting-hero-underline {
    width: 100px;
    height: 4px;
    background: #90EE90;
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.shifting-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #E0F7E0;
}

.shifting-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.shifting-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.shifting-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.shifting-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.shifting-main-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(34, 139, 34, 0.3);
    color: #006400;
}

.shifting-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #228B22, #006400);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.shifting-main-title:hover::after {
    width: 80%;
}

.shifting-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    margin-bottom: 4rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #228B22, #006400, #228B22);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #228B22, #006400);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.step-content {
    width: 45%;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step:nth-child(odd) .step-content {
    margin-right: 55%;
}

.timeline-step:nth-child(even) .step-content {
    margin-left: 55%;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #228B22;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.step-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #228B22;
    margin: 0;
}

.step-icon {
    font-size: 2rem;
    background: #f0f8f0;
    padding: 0.5rem;
    border-radius: 8px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details h4 {
    color: #228B22;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.step-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.step-details li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.95rem;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #228B22;
    font-weight: bold;
}

.step-duration {
    background: #f0f8f0;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #228B22;
}

.duration-label {
    font-weight: 600;
    color: #228B22;
    margin-right: 0.5rem;
}

.duration-value {
    color: #006400;
    font-weight: 700;
}

/* Process Benefits */
.process-benefits {
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228B22;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #228B22, #006400);
    transform: translateX(-50%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #228B22;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #228B22;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Tips */
.process-tips {
    margin-bottom: 4rem;
}

.tips-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228B22;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.tips-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #228B22, #006400);
    transform: translateX(-50%);
    border-radius: 2px;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-category {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #228B22;
    transition: all 0.3s ease;
}

.tip-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.tip-category h3 {
    color: #228B22;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tip-category ul {
    list-style: none;
}

.tip-category li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.tip-category li:last-child {
    border-bottom: none;
}

.tip-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #228B22;
    font-weight: bold;
}

/* CTA Section */
.shifting-cta-section {
    background: linear-gradient(135deg, #228B22 0%, #006400 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 16px;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #fff;
    color: #228B22;
    border-color: #fff;
}

.cta-btn.primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #228B22;
    transform: translateY(-2px);
}

/* Location Pages Styles */
.location-header-banner {
    background: #e51b23;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.location-banner-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.location-main-content {
    padding: 40px 0;
}

.location-content-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.location-content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.location-main-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.location-description {
    text-align: left;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.location-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.location-description strong {
    color: #333;
    font-weight: 600;
}

.location-contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.phone-numbers, .email-links, .website-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-link {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Responsive Location Page Styles */
@media (max-width: 768px) {
    .location-header-banner {
        padding: 15px 0;
    }
    
    .location-banner-title {
        font-size: 2rem;
    }
    
    .location-main-content {
        padding: 30px 0;
    }
    
    .location-content-card {
        padding: 25px;
        margin: 15px 0;
    }
    
    .location-main-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .location-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .location-contact-info {
        padding: 20px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .phone-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .location-header-banner {
        padding: 12px 0;
    }
    
    .location-banner-title {
        font-size: 1.6rem;
    }
    
    .location-main-content {
        padding: 20px 0;
    }
    
    .location-content-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    .location-main-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .location-description p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .location-contact-info {
        padding: 15px;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .phone-link {
        font-size: 1.1rem;
    }
}

/* Touch Device Optimizations for Location Pages */
@media (hover: none) and (pointer: coarse) {
    .phone-link,
    .email-link,
    .website-url {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.phone-link:hover {
    color: #e51b23;
}

.email-link {
    color: #007bff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.website-url {
    color: #007bff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-url:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design for Shifting Process Page */
@media (max-width: 900px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-step {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
        margin: 0 0 0 80px;
        width: calc(100% - 80px);
    }
    
    .step-number {
        left: 30px;
        transform: translate(-50%, -50%);
    }
    
    .shifting-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .shifting-main-title,
    .benefits-title,
    .tips-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .tips-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .shifting-hero-banner {
        height: 300px;
    }
    
    .shifting-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .shifting-hero-content h3 {
        font-size: 1.1rem;
    }
    
    .shifting-hero-content p {
        font-size: 1rem;
    }
    
    .shifting-main-title,
    .benefits-title,
    .tips-title {
        font-size: 1.8rem;
    }
    
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
        margin: 0 0 0 60px;
        width: calc(100% - 60px);
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: 25px;
    }
    
    .timeline-container::before {
        left: 25px;
    }
    
    .benefits-grid,
    .tips-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card,
    .tip-category {
        padding: 1.5rem;
    }
    
    .shifting-cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .header-logo {
        height: 100px;
        width: 100px;
    }
    
    .logo-txt {
        font-size: 28px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 1.5rem;
    }
    
    .header-logo {
        height: 90px;
        width: 90px;
    }
    
    .logo-txt {
        font-size: 24px;
    }
    
    .header-contact {
        font-size: 1rem;
    }
    
    .contact-number {
        font-size: 1.1rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 1.5rem;
    }
    
    .header-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-left {
        justify-content: center;
    }
    
    .header-center {
        order: 2;
    }
    
    .header-logo {
        height: 80px;
        width: 80px;
    }
    
    .logo-txt {
        font-size: 22px;
    }
    
    .mainnav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .mainnav li a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .header-logo {
        height: 70px;
        width: 70px;
    }
    
    .logo-txt {
        font-size: 20px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .header-track {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    /* Hide desktop navigation */
    .mainnav {
        display: none;
    }
    
    /* Show mobile navigation */
    .mobile-nav-overlay.active,
    .mobile-nav-menu.active {
        display: block;
    }
    
    /* Hero section adjustments */
    .hero-banner {
        height: 400px;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Quote section adjustments */
    .quote-section {
        padding: 2rem 1rem;
    }
    
    .quote-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quote-tab {
        width: 100%;
        text-align: center;
    }
    
    .quote-forms {
        padding: 1.5rem;
    }
    
    .quote-form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quote-form-row input,
    .quote-form-row button {
        width: 100%;
    }
    
    /* Services grid adjustments */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Testimonials adjustments */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Large */
@media (max-width: 600px) {
    .header-logo {
        height: 60px;
        width: 60px;
    }
    
    .logo-txt {
        font-size: 18px;
    }
    
    .hero-banner {
        height: 350px;
        padding: 1.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .quote-section {
        padding: 1.5rem 1rem;
    }
    
    .quote-forms {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
    
    .logo-txt {
        font-size: 16px;
    }
    
    .hero-banner {
        height: 300px;
        padding: 1rem 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .quote-section {
        padding: 1rem 0.8rem;
    }
    
    .quote-forms {
        padding: 0.8rem;
    }
    
    .quote-form-row input,
    .quote-form-row button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .testimonials-grid {
        gap: 0.8rem;
    }
    
    .testimonial-card {
        padding: 0.8rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .container {
        padding: 0 0.6rem;
    }
    
    .header-logo {
        height: 45px;
        width: 45px;
    }
    
    .logo-txt {
        font-size: 14px;
    }
    
    .hero-banner {
        height: 280px;
        padding: 0.8rem 0.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content h3 {
        font-size: 0.95rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .quote-section {
        padding: 0.8rem 0.6rem;
    }
    
    .quote-forms {
        padding: 0.6rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .mainnav li a,
    .quote-tab,
    .quote-submit,
    .service-card,
    .testimonial-card {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        height: 250px;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .header-logo {
        height: 50px;
        width: 50px;
    }
    
    .logo-txt {
        font-size: 16px;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .topbar,
    .main-header,
    .mobile-menu-toggle,
    .mobile-nav-overlay,
    .mobile-nav-menu,
    .quote-section,
    .footer {
        display: none !important;
    }
    
    .main-content {
        margin: 0;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
}


