/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Top Bar */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2E7CB8 0%, #4A9BDB 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-bar-phone:hover {
    color: #f0f8ff;
    transform: translateY(-1px);
}

.top-bar-phone i {
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-quote-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.top-bar-quote-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Responsive Topbar */
@media (max-width: 768px) {
    .top-bar-content {
        padding: 0.5rem 0;
    }
    
    .top-bar-quote-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .header {
        top: 50px;
    }
    
    .navbar {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .sticky-top-bar {
        font-size: 0.9rem;
    }
    
    .top-bar-content {
        padding: 0.4rem 0;
    }
    
    .top-bar-phone {
        gap: 0.25rem;
    }
    
    .top-bar-quote-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .header {
        top: 45px;
    }
    
    .navbar {
        padding: 0.75rem 0;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 124, 184, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1E5F8C, #164A73);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 124, 184, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #2E7CB8;
    border: 2px solid #2E7CB8;
}

.btn-secondary:hover {
    background: #2E7CB8;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #2E7CB8;
    border: 2px solid #2E7CB8;
}

.btn-outline:hover {
    background: #2E7CB8;
    color: white;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
    margin-top: 20px;
    margin-bottom: 2px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E7CB8;
}

.logo {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2E7CB8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2E7CB8;
}

/* Prevent active underline on quote button */
.btn-quote.active::after {
    display: none;
}

.btn-quote {
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(46, 124, 184, 0.3);
}

.btn-quote:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46, 124, 184, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(46, 124, 184, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2E7CB8;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 20px;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #2E7CB8;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Page Header */
.page-header {
    min-height: 300px;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: -20px;
}

.page-header .container {
    width: 100%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Storage Page Specific Styling */
.storage-page .page-header {
    margin-top: 60px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2E7CB8;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.service-link {
    color: #2E7CB8;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-color: #2E7CB8;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    color: #2E7CB8;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    color: #2E7CB8;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    margin: 0;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author strong {
    color: #2E7CB8;
    display: block;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #2E7CB8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-section h4 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2E7CB8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2E7CB8;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #2E7CB8;
    width: 16px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E7CB8;
    box-shadow: 0 0 0 3px rgba(46, 124, 184, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2E7CB8;
    border-color: #2E7CB8;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* About Page Specific Styles */
.company-story {
    padding: 80px 0;
    background: white;
}

.founder-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #2E7CB8;
    border-radius: 0 8px 8px 0;
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.founder-quote cite {
    color: #2E7CB8;
    font-weight: 600;
}

.mission-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: #2E7CB8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Moving Page Specific Styles */
.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.service-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    padding: 2.5rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: #28a745;
    font-size: 1rem;
}

.additional-services {
    padding: 80px 0;
    background: white;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.moving-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.moving-tips {
    padding: 80px 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2E7CB8;
}

.tip-card h4 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

/* Storage Page Specific Styles */
.storage-overview {
    padding: 80px 0;
    background: white;
}

.storage-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.storage-features .feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
}

.storage-features .feature i {
    font-size: 2rem;
}

.storage-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.storage-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.storage-card:hover {
    transform: translateY(-5px);
}

.storage-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.storage-content {
    padding: 2rem;
}

.pricing-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E7CB8;
}

.unit-sizes {
    padding: 80px 0;
    background: white;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.size-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.size-card:hover {
    transform: translateY(-5px);
}

.size-visual {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.size-box {
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    border-radius: 4px;
}

.size-box.small {
    width: 40px;
    height: 40px;
}

.size-box.medium {
    width: 50px;
    height: 50px;
}

.size-box.large {
    width: 60px;
    height: 60px;
}

.size-box.extra-large {
    width: 70px;
    height: 70px;
}

.size-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.size-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.size-features li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.size-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7CB8;
    margin-top: 1rem;
}

.security-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.climate-control {
    padding: 80px 0;
    background: white;
}

.climate-benefits {
    margin: 2rem 0;
}

.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit i {
    color: #2E7CB8;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.recommended-items {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.recommended-items h4 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.recommended-items ul {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
}

.recommended-items li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.recommended-items li::before {
    content: '•';
    color: #2E7CB8;
    position: absolute;
    left: 0;
}

.storage-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-table {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #2E7CB8;
}

.pricing-card.featured {
    border-color: #2E7CB8;
    box-shadow: 0 10px 30px rgba(46, 124, 184, 0.2);
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-body {
    padding: 0 2rem 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.price-item:last-child {
    border-bottom: none;
}

.size {
    font-weight: 500;
}

.price {
    font-weight: 700;
    color: #2E7CB8;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info-section h2 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #2E7CB8;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #2E7CB8;
    font-weight: 600;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

.emergency-contact {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.emergency-contact h4 {
    color: #856404;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-contact a {
    color: #856404;
    font-weight: 700;
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-embed {
    height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 2rem;
}

.map-info h3 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.map-features {
    margin: 2rem 0;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.map-feature i {
    color: #2E7CB8;
    width: 20px;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: #2E7CB8;
}

.faq-question i {
    color: #2E7CB8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Quote Page Specific Styles */
.quote-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
    text-align: center;
}

.quote-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quote-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.quote-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.quote-benefits .benefit i {
    font-size: 1.5rem;
    color: #ffd700;
}

.quote-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.quote-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e1e5e9;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0 1rem;
    z-index: 2;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e5e9;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: #2E7CB8;
    color: white;
}

.progress-step span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.progress-step.active span {
    color: #2E7CB8;
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    color: #2E7CB8;
    margin-bottom: 2rem;
    text-align: center;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-option {
    cursor: pointer;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-option:hover {
    border-color: #2E7CB8;
    background: rgba(46, 124, 184, 0.05);
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option input[type="radio"]:checked + .option-content {
    color: #2E7CB8;
}

.service-option input[type="radio"]:checked {
    border-color: #2E7CB8;
    background: rgba(46, 124, 184, 0.1);
}

.option-content i {
    font-size: 2.5rem;
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.option-content h4 {
    margin-bottom: 0.5rem;
}

.option-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.moving-details,
.contact-details {
    max-width: 100%;
}

.location-section,
.property-details,
.additional-services {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.location-section:last-child,
.property-details:last-child,
.additional-services:last-child {
    border-bottom: none;
}

.location-section h3,
.property-details h3,
.additional-services h3 {
    color: #2E7CB8;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    border-color: #2E7CB8;
    background: rgba(46, 124, 184, 0.05);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option .checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
    background: #2E7CB8;
    border-color: #2E7CB8;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.quote-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.summary-section {
    margin-bottom: 1.5rem;
}

.summary-section h4 {
    color: #2E7CB8;
    margin-bottom: 0.5rem;
}

.summary-section p {
    margin: 0.25rem 0;
    color: #666;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section .checkbox-option {
    border: none;
    padding: 0.5rem 0;
}

.quote-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #2E7CB8;
    margin-bottom: 1.5rem;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-point i {
    color: #2E7CB8;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-point h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.info-point p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2E7CB8;
    font-weight: 600;
    padding: 0.75rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(46, 124, 184, 0.05);
    border-color: #2E7CB8;
}

.testimonial-card {
    background: #f8f9fa !important;
    border-left: 4px solid #2E7CB8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #2E7CB8, #1E5F8C);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.modal-header i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.modal-header h2 {
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

.next-steps {
    margin-top: 1.5rem;
}

.next-steps h4 {
    color: #2E7CB8;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.modal-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background: linear-gradient(135deg, #2E7CB8 0%, #1e5a8a 100%);
        text-align: left;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 0;
        z-index: 1010;
        overflow-y: auto;
        pointer-events: auto;
        opacity: 1;
    }
    
    .nav-menu.active {
        right: 0;
        pointer-events: auto !important;
        opacity: 1 !important;
        z-index: 1010 !important;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: auto;
    }
    
    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-menu li:first-child {
        margin-top: 120px;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        margin-bottom: 2rem;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        color: white !important;
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        border-left: 4px solid transparent;
        pointer-events: auto !important;
        cursor: pointer !important;
        opacity: 1 !important;
        z-index: 1011;
    }
    
    .nav-menu.active .nav-link {
        color: white !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 1011 !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: #4CAF50;
        transform: translateX(8px);
        color: white !important;
        opacity: 1 !important;
    }
    
    .btn-quote {
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
        color: white !important;
        margin: 1rem 2rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-left: none !important;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    
    .btn-quote:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
        background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%) !important;
    }
    
    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100vw - 280px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Force mobile menu visibility when active - Remove grayed out appearance */
    .nav-menu.active {
        background: linear-gradient(135deg, #2E7CB8 0%, #1e5a8a 100%) !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        -webkit-filter: none !important;
        z-index: 1010 !important;
    }
    
    .nav-menu.active li {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        filter: none !important;
        -webkit-filter: none !important;
        color: white !important;
        z-index: 1011 !important;
    }
    
    .nav-menu.active .nav-link {
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        filter: none !important;
        -webkit-filter: none !important;
        background-color: transparent !important;
        z-index: 1011 !important;
    }
    
    .nav-menu.active .nav-link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        z-index: 1011 !important;
    }
    
    /* Ensure overlay never covers the menu area */
    body.menu-open .mobile-menu-overlay {
        width: calc(100vw - 280px) !important;
        right: 280px !important;
        left: 0 !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .footer-section {
        margin-bottom: 1.25rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
    
    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: #2E7CB8;
    }
    
    .footer-section ul {
        padding-left: 0;
    }
    
    .footer-section li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .social-links {
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .contact-info i {
        margin-top: 0.1rem;
        min-width: 16px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        text-align: left;
        font-size: 0.9rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-progress {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-header {
        min-height: 250px;
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .value-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-form-container {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .page-header {
        padding: 2rem 0;
        background: none !important;
        color: #000 !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Better Accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2E7CB8;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-outline {
        border: 2px solid #000;
        color: #000;
    }
    
    .nav-link.active::after {
        background: #000;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #ffffff;
        --card-bg: #2d2d2d;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .service-card,
    .value-card,
    .info-card {
        background: var(--card-bg);
        color: var(--text-color);
    }
    
    /* Force testimonials to always have light background for readability */
    .testimonials,
    .testimonials-modern {
        background-color: #f8f9fa !important;
    }
    
    .testimonial-card,
    .testimonial-card-modern {
        background: white !important;
        color: #333 !important;
    }
    
    .testimonials .section-header h2,
    .testimonials .section-header p,
    .testimonials-modern .section-header-modern h2,
    .testimonials-modern .section-header-modern p {
        color: #333 !important;
    }
    
    .testimonial-card p,
    .testimonial-card-modern p,
    .testimonial-card .testimonial-author,
    .testimonial-card-modern .testimonial-author {
        color: #666 !important;
    }
    
    .testimonial-card .testimonial-author strong,
    .testimonial-card-modern .author-info strong {
        color: #333 !important;
    }
}

/* Message Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Message notification styles */
.success-message,
.error-message {
    min-width: 300px;
    max-width: 400px;
}

.success-content,
.error-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-content i,
.error-content i {
    font-size: 1.2rem;
}

.success-content p,
.error-content p {
    margin: 0;
    font-weight: 500;
}

/* Modern Homepage Styles */

/* New Split Hero Section with 3D Animation */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

/* Center Header Section */
.hero-header-center {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: slideInDown 1s ease-out;
}

.hero-header-center .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2E7CB8 0%, #4CAF50 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 124, 184, 0.3);
}

.hero-header-center .hero-badge i {
    margin-right: 0.5rem;
}

.hero-header-center .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.1rem;
    color: #1a202c;
    background: linear-gradient(135deg, #1a202c 0%, #2E7CB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-header-center .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #64748b;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Center Animation Section */
.hero-animation-center {
    perspective: 1000px;
    height: 250px;
    position: relative;
    margin-bottom: 0.5rem;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* Bottom Center Section */
.hero-bottom-center {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-bottom-center .hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-bottom-center .hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #475569;
}

.hero-bottom-center .hero-feature i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.hero-bottom-center .hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-bottom-center .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.hero-bottom-center .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.hero-bottom-center .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #2E7CB8;
    text-decoration: none;
    border: 2px solid #2E7CB8;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-bottom-center .btn-hero-secondary:hover {
    background: #2E7CB8;
    color: white;
}

/* 3D Moving Animation */
.moving-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    max-width: 600px;
    margin: 0 auto;
}

.location {
    position: absolute;
    width: 160px;
    text-align: center;
    z-index: 10;
}

.source-location {
    top: 50px;
    left: 0;
}

.destination-location {
    top: 50px;
    right: 0;
}

.location .house {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    will-change: transform, box-shadow;
    transition: all 0.3s ease;
}

.location .house:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location .house i {
    font-size: 2.5rem;
    color: #2E7CB8;
    margin-bottom: 0.5rem;
    display: block;
}

.location .house span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Path-based Animation Container */
.path-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Moving Items Styles - Optimized for performance */
.moving-item {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 15;
    transform-origin: center center;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
    /* Start from inside the source house */
    left: 70px;
    top: 50px;
}

.item-box {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.item-furniture {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.item-archive {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.moving-item:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -25; }
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design for Split Hero */
@media (max-width: 1024px) {
    .hero-header-center .hero-title {
        font-size: 3rem;
    }
    
    .hero-animation-center {
        height: 350px;
    }
    
    .hero-bottom-center .hero-features {
        gap: 1.5rem;
    }
    
    .moving-item {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        left: 65px;
        top: 45px;
    }
    
    .location {
        width: 160px;
    }
    
    .path-svg {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-header-center .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-header-center .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-animation-center {
        height: 300px;
    }
    
    .moving-scene {
        max-width: 100%;
    }
    
    .location {
        width: 140px;
    }
    
    .location .house {
        padding: 1rem;
    }
    
    .location .house i {
        font-size: 2rem;
    }
    
    .moving-item {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 60px;
        top: 40px;
    }
    
    .hero-bottom-center .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-bottom-center .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .path-svg {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-header-center .hero-title {
        font-size: 2rem;
    }
    
    .hero-animation-center {
        height: 250px;
    }
    
    .location {
        width: 120px;
    }
    
    .moving-item {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 50px;
        top: 35px;
    }
}

/* Original Modern Hero Section (keeping for other sections) */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 124, 184, 0.4) 0%, rgba(46, 124, 184, 0.3) 100%);
    z-index: -1;
}

.hero-content-modern {
    max-width: 700px;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-feature i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Modern Services Section */
.services-modern {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2E7CB8 0%, #4CAF50 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7CB8 0%, #4CAF50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.service-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2E7CB8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #4CAF50;
    gap: 1rem;
}

/* Modern Why Choose Us Section */
.why-choose-modern {
    padding: 6rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7CB8 0%, #4CAF50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 1rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-badge strong {
    display: block;
    font-size: 1.5rem;
    color: #2E7CB8;
    font-weight: 700;
}

.stat-badge span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Modern Testimonials Section */
.testimonials-modern {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.testimonials-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(46, 124, 184, 0.8) 100%);
    z-index: -1;
}

.testimonials-header {
    color: white;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars-modern {
    display: flex;
    gap: 0.25rem;
}

.stars-modern i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-quote {
    color: #2E7CB8;
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial-card-modern p {
    color: #374151;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-modern .author-info strong {
    display: block;
    color: #1a202c;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author-modern .author-info span {
    display: block;
    color: #2E7CB8;
    font-weight: 500;
    margin-top: 0.25rem;
}

.testimonial-author-modern .author-info small {
    display: block;
    color: #64748b;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Modern CTA Section */
.cta-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2E7CB8 100%);
    color: white;
}

.cta-content-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.cta-actions-modern {
    text-align: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    margin-bottom: 2rem;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.cta-contact {
    text-align: center;
}

.cta-contact span {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-phone:hover {
    color: #45a049;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Modern Homepage */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .image-stats {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Features Section - Modern Layout */
.features-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Section - Timeline Layout */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4CAF50, #2E7CB8);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Modern Layout */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.testimonial-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.testimonial-card-modern blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E7CB8, #1e5f8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Tips Section - Modern Layout */
.tips-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.tips-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tip-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E7CB8, #1e5f8c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-icon i {
    font-size: 1.25rem;
    color: white;
}

.tip-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.tip-card-modern p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Modern Layout */
.cta-content-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content-modern p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
    background: #45a049;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-feature i {
    color: #4CAF50;
}

/* Responsive Design for New Layouts */
@media (max-width: 768px) {
    .features-grid,
    .tips-grid-modern,
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Custom styling for testimonials section header */
.testimonials-modern .section-header-modern h2,
.testimonials-modern .section-header-modern p {
    color: black;
}

/* Make only the Customer Stories badge white */
.testimonials-modern .section-header-modern .section-badge {
    color: white;
}

/* Additional specificity for testimonials section text */
section.testimonials-modern .container .section-header-modern h2,
section.testimonials-modern .container .section-header-modern p {
    color: black;
}

/* Ensure testimonials are always readable regardless of device dark mode */
.testimonials {
    background: #f8f9fa !important;
}

.testimonial-card {
    background: white !important;
    color: #333 !important;
    border: 1px solid #e0e0e0 !important;
}

.testimonial-card p {
    color: #666 !important;
}

.testimonial-card .testimonial-author strong {
    color: #333 !important;
}

.testimonial-card .testimonial-author span {
    color: #666 !important;
}

.testimonial-card-modern {
    background: white !important;
    color: #333 !important;
    border: 1px solid #e0e0e0 !important;
}

.testimonial-card-modern p {
    color: #666 !important;
}

.testimonial-card-modern .author-info strong {
    color: #333 !important;
}

.testimonial-card-modern .author-info span {
    color: #666 !important;
}

/* Storage Sizes Section */
.storage-sizes-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.storage-unit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.storage-unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.storage-diagram {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
}

.size-indicator {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.unit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(46, 124, 184, 0.3);
}

.unit-dimensions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.unit-dimensions strong {
    font-size: 1.5rem;
    color: #2E7CB8;
    margin-bottom: 0.25rem;
}

.unit-dimensions span {
    color: #6B7280;
    font-size: 0.9rem;
}

.storage-content {
    padding: 2rem;
}

.storage-content h3 {
    color: #1A202C;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.storage-content p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.storage-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-item i {
    color: #10B981;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.feature-item span {
    color: #4B5563;
    font-size: 0.9rem;
}

.storage-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2E7CB8 0%, #4A9BDB 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.storage-btn:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for storage grid */
@media (max-width: 768px) {
    .storage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .storage-unit-card {
        margin-bottom: 1rem;
    }
    
    .storage-diagram {
        padding: 1.5rem;
    }
    
    .storage-content {
        padding: 1.5rem;
    }
}

/* Legal Pages Styling - Clean & Simple */
.legal-page .legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-page .legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-page .legal-sidebar {
    position: sticky;
    top: 120px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-page .legal-sidebar h3 {
    color: #2E7CB8;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2E7CB8;
}

.legal-page .legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-page .legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-page .legal-nav a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-page .legal-nav a:hover {
    background: #f0f8ff;
    color: #2E7CB8;
}

.legal-page .legal-main {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-page .last-updated {
    background: #e3f2fd;
    border-left: 4px solid #2E7CB8;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.legal-page .last-updated p {
    margin: 0;
    color: #1565c0;
    font-weight: 500;
}

.legal-page .legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-page .legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-page .legal-section h2 {
    color: #2E7CB8;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-page .legal-section h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-page .legal-section h4 {
    color: #555;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.legal-page .legal-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-page .legal-section .intro {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.legal-page .legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-page .legal-section li {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.legal-page .legal-section strong {
    color: #333;
    font-weight: 600;
}

.legal-page .contact-details {
    display: block;
    margin: 2rem 0;
}

.legal-page .contact-method,
.legal-page .business-hours {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 1rem;
}

.legal-page .contact-method h4,
.legal-page .business-hours h4 {
    color: #2E7CB8;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.legal-page .contact-method p,
.legal-page .business-hours p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-page .contact-method {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.5rem 1rem;
    align-items: center;
}

.legal-page .contact-method h4 {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

.legal-page .contact-method p {
    display: contents;
}

.legal-page .contact-method strong {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.legal-page .contact-method a,
.legal-page .contact-method span {
    color: #2E7CB8;
    text-decoration: none;
}

.legal-page .contact-method a {
    color: #2E7CB8;
    text-decoration: none;
}

.legal-page .contact-method a:hover {
    text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .legal-page .legal-wrapper {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
    
    .legal-page .legal-sidebar {
        padding: 1.5rem;
    }
    
    .legal-page .legal-main {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .legal-page .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-page .legal-sidebar {
        position: relative;
        top: auto;
        order: 2;
    }
    
    .legal-page .legal-main {
        padding: 1.5rem;
        order: 1;
    }
    
    .legal-page .contact-details {
        margin: 1.5rem 0;
    }
    
    .legal-page .contact-method {
        display: block;
        padding: 1.5rem;
    }
    
    .legal-page .contact-method h4 {
        margin-bottom: 1rem;
    }
    
    .legal-page .contact-method p {
        margin-bottom: 0.75rem;
        display: block;
    }
    
    .legal-page .legal-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .legal-page .legal-nav li {
        margin-bottom: 0;
    }
    
    .legal-page .legal-nav a {
        padding: 0.5rem 1rem;
        background: #f0f8ff;
        border-radius: 20px;
        font-size: 0.85rem;
    }
}
