/* ===== Styles from index.html ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #333;
}

.logo-image {
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
}

.logo-text {
        font-size: 1.2rem;
        font-weight: 600;
}

.nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
}

.nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        cursor: pointer;
}

.nav-link:hover {
        color: #FFC107;
}

.contact-btn {
        background: #FFC107;
        color: #333;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
}

.contact-btn:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.hero {
        background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
        color: white;
        padding: 120px 0 80px;
        position: relative;
        overflow: visible;
}

.hero::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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        z-index: 1;
}

.hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
}

.hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
        line-height: 1.15;
}

.hero-content p {
        font-size: 1.35rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        line-height: 1.6;
}

.hero-features {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
}

.feature-tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
}

.btn-primary {
        background: #FFC107;
        color: #333;
        padding: 1.1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-primary:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
        background: transparent;
        color: white;
        padding: 1.1rem 2.5rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
}

.services {
        padding: 80px 0;
        background: #f8f9fa;
}

.section-title {
        text-align: center;
        margin-bottom: 3rem;
}

.section-title h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
}

.section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 760px;
        margin: 0 auto;
}

.services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        margin-bottom: 4rem;
}

.service-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        display: block;
        text-decoration: none !important;
        color: inherit;
}

.service-card * {
        text-decoration: none !important;
}

.service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FFC107, #FF9800);
}

.service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        object-fit: contain;
        margin: 0 auto 1.5rem;
        display: block;
        border-radius: 10px;
}

.bundle-images {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
}

.bundle-images img {
        width: 100%;
        max-width: 130px;
        height: 120px;
        object-fit: contain;
        border-radius: 8px;
}

.bundle-plus {
        font-size: 2rem;
        font-weight: 700;
        color: #FFC107;
}

.service-card h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
}

.service-card p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        font-size: 1.05rem;
}

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

.service-features li {
        color: #555;
        margin-bottom: 0.7rem;
        position: relative;
        padding-left: 1.5rem;
}

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

.service-link {
        display: inline-block;
        color: #FFC107;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
}

.service-link:hover {
        color: #FF9800;
        transform: translateX(5px);
}

/* NEW: Brand / Trust strip (homepage hub signal) */
.trust-strip {
        padding: 55px 0;
        background: white;
}

.trust-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
}

.trust-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.8rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #333;
}

.trust-card p {
        color: #666;
        line-height: 1.7;
        font-size: 1.02rem;
}

.bundle-section {
        background: linear-gradient(135deg, #333 0%, #555 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
}

.bundle-content {
        max-width: 860px;
        margin: 0 auto;
}

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

.bundle-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        line-height: 1.7;
}

.bundle-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
}

.bundle-feature {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
}

.bundle-feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
}

.bundle-feature h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
}

.bundle-feature p {
        font-size: 0.95rem;
        opacity: 0.9;
        margin: 0;
}

.contact-section {
        padding: 80px 0;
        background: white;
}

.contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}

.contact-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #333;
}

.contact-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.25rem;
        line-height: 1.7;
}

.contact-box {
        background: #f8f9fa;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.email-highlight {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        border: 3px solid #FFC107;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.email-icon {
        font-size: 2rem;
}

.main-email {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        text-decoration: none;
        border-bottom: 2px solid #FFC107;
}

.main-email:hover {
        color: #FFC107;
}

.contact-info p {
        margin-bottom: 0.8rem;
        color: #666;
}

.contact-info a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 600;
}

footer {
        background: #333;
        color: white;
        padding: 2rem 0;
        text-align: center;
}

.footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
}

.social-links {
        display: flex;
        gap: 1rem;
}

.social-links a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
}

.social-links a:hover {
        color: white;
}

.mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        padding: 0.5rem;
        transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
        color: #FFC107;
        transform: scale(1.1);
}

.mobile-menu-toggle:active {
        transform: scale(0.95);
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
        .container {
                padding: 0 30px;
        }

        .logo-image {
                height: 45px;
        }

        .logo-text {
                font-size: 1.1rem;
        }

        .nav-menu {
                gap: 1.5rem;
        }

        .nav-link {
                font-size: 0.95rem;
        }

        .contact-btn {
                padding: 0.6rem 1.3rem;
                font-size: 0.95rem;
        }

        .hero-content h1 {
                font-size: 3rem;
        }

        .hero-content p {
                font-size: 1.2rem;
        }

        .feature-tag {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
        }

        .btn-primary,
        .btn-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
        }

        .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
        }

        .service-card {
                padding: 2rem;
        }

        .service-image {
                max-width: 250px;
                height: 180px;
        }

        .bundle-images img {
                max-width: 110px;
                height: 100px;
        }

        .bundle-plus {
                font-size: 1.7rem;
        }

        .section-title h2 {
                font-size: 2.7rem;
        }

        .bundle-content h2 {
                font-size: 2.3rem;
        }

        .bundle-features {
                grid-template-columns: repeat(2, 1fr);
        }

        .contact-grid {
                gap: 3rem;
        }
}

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
        nav {
                padding: 0.9rem 0;
        }

        .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(15px);
                padding: 1.5rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
                animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
                from {
                        opacity: 0;
                        transform: translateY(-10px);
                }

                to {
                        opacity: 1;
                        transform: translateY(0);
                }
        }

        .nav-menu.active {
                display: flex;
        }

        .nav-link {
                padding: 0.5rem 0;
                text-align: center;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-link:last-of-type {
                border-bottom: none;
        }

        .contact-btn {
                margin-top: 0.5rem;
                text-align: center;
                display: block;
                padding: 0.8rem 1.5rem;
        }

        .mobile-menu-toggle {
                display: block;
        }

        .logo-image {
                height: 42px;
        }

        .logo-text {
                font-size: 1.05rem;
        }

        .hero {
                padding: 110px 0 70px;
        }

        .hero-content h1 {
                font-size: 2.5rem;
        }

        .hero-content p {
                font-size: 1.15rem;
        }

        .feature-tag {
                font-size: 0.88rem;
                padding: 0.5rem 1rem;
        }

        .btn-primary,
        .btn-secondary {
                padding: 1rem 2rem;
                font-size: 1.05rem;
                max-width: 280px;
        }

        .services {
                padding: 70px 0;
        }

        .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
        }

        .service-card {
                padding: 2rem 1.8rem;
        }

        .service-image {
                max-width: 280px;
                height: 190px;
        }

        .bundle-images img {
                max-width: 120px;
                height: 110px;
        }

        .bundle-plus {
                font-size: 1.6rem;
        }

        .section-title h2 {
                font-size: 2.3rem;
        }

        .section-title p {
                font-size: 1.1rem;
        }

        .bundle-section {
                padding: 55px 0;
        }

        .bundle-content h2 {
                font-size: 2.2rem;
        }

        .bundle-content p {
                font-size: 1.1rem;
        }

        .bundle-features {
                grid-template-columns: 1fr;
                gap: 1.2rem;
        }

        .trust-strip {
                padding: 45px 0;
        }

        .contact-section {
                padding: 70px 0;
        }

        .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
        }

        .contact-content h2 {
                font-size: 2.2rem;
                text-align: center;
        }

        .contact-content p {
                font-size: 1.05rem;
                text-align: center;
        }

        .contact-box {
                padding: 2rem 1.5rem;
        }

        .email-highlight {
                padding: 1.5rem;
        }

        .main-email {
                font-size: 1.1rem;
                word-break: break-word;
        }

        .contact-info p {
                font-size: 1rem;
        }

        .footer-content {
                flex-direction: column;
                gap: 1rem;
        }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
        .hero {
                padding: 100px 0 60px;
        }

        .hero-content h1 {
                font-size: 1.8rem;
        }

        .hero-content p {
                font-size: 1rem;
        }

        .section-title h2 {
                font-size: 1.8rem;
        }

        .service-card {
                padding: 2rem 1.5rem;
        }

        .service-image {
                max-width: 200px;
                height: 150px;
        }

        .bundle-images {
                gap: 0.5rem;
        }

        .bundle-images img {
                max-width: 90px;
                height: 85px;
        }

        .bundle-plus {
                font-size: 1.2rem;
        }

        .contact-section {
                padding: 60px 0;
        }

        .contact-grid {
                gap: 2rem;
        }

        .contact-content h2 {
                font-size: 1.8rem;
                line-height: 1.3;
        }

        .contact-content p {
                font-size: 0.95rem;
                line-height: 1.6;
        }

        .contact-box {
                padding: 1.5rem 1rem;
        }

        .email-highlight {
                padding: 1.2rem 0.8rem;
        }

        .email-icon {
                font-size: 1.5rem;
        }

        .main-email {
                font-size: 0.95rem;
                word-break: break-all;
                line-height: 1.4;
        }

        .contact-info p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
                line-height: 1.5;
        }

        .contact-info a {
                word-break: break-word;
        }
}

/* Extra small screens */
@media (max-width: 360px) {
        .contact-content h2 {
                font-size: 1.6rem;
        }

        .contact-content p {
                font-size: 0.9rem;
        }

        .main-email {
                font-size: 0.85rem;
        }

        .contact-info p {
                font-size: 0.85rem;
        }
}

/* ===== Styles from box.html ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #333;
}

.logo-image {
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
}

.logo-text {
        font-size: 1.2rem;
        font-weight: 600;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.nav-menu {
        display: flex;
        list-style: none;
        gap: 1.6rem;
        align-items: center;
}

.nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        white-space: nowrap;
}

.nav-link:hover {
        color: #FFC107;
}

.contact-btn {
        background: #FFC107;
        color: #333;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
}

.contact-btn:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Dropdown */
.nav-item {
        position: relative;
}

.dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        cursor: pointer;
}

.caret {
        font-size: 0.85rem;
        opacity: 0.75;
}

.dropdown-menu {
        position: absolute;
        top: 120%;
        right: 0;
        min-width: 220px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        padding: 0.6rem;
        display: none;
        z-index: 1100;
}

.dropdown-menu a {
        display: block;
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
        background: rgba(255, 193, 7, 0.18);
        color: #333;
}

.dropdown-open .dropdown-menu {
        display: block;
}


.hero {
        background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
        color: white;
        padding: 120px 0 80px;
        position: relative;
        overflow: visible;
}

.hero::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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        z-index: 1;
}

.hero-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 4rem;
        align-items: center;
}

.hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
}

.hero-text p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.6;
}

.hero-features {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
        margin-bottom: 2rem;
        flex-wrap: wrap;
}

.feature-tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        text-align: center;
        min-width: 120px;
}

.feature-tag:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
}

.btn-primary {
        background: #FFC107;
        color: #333;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-primary:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
        background: transparent;
        color: white;
        padding: 1rem 2rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
}

.pricing-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
}

.pricing-card h3 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
}

.pricing-card .subtitle {
        opacity: 0.8;
        margin-bottom: 1.5rem;
}

.pricing-features {
        list-style: none;
        text-align: left;
}

.pricing-features li {
        padding: 0.5rem 0;
        opacity: 0.9;
        position: relative;
        padding-left: 1.5rem;
}

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

.hero-bins {
        position: absolute;
        bottom: -90px;
        right: 24px;
        width: 780px;
        height: auto;
        z-index: 1;
        opacity: 0.95;
        pointer-events: none;
}

.customer-showcase {
        padding: 80px 0;
        background: white;
}

.showcase-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}

.showcase-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin: 0 auto;
        display: block;
}

.showcase-text h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #333;
}

.showcase-text p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.7;
}

.showcase-features {
        list-style: none;
        margin-bottom: 2rem;
}

.showcase-features li {
        color: #555;
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 1.8rem;
        font-size: 1.05rem;
}

.showcase-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #FFC107;
        font-weight: bold;
        font-size: 1.2rem;
}

.features-section {
        padding: 80px 0;
        background: #f8f9fa;
}

.section-title {
        text-align: center;
        margin-bottom: 3rem;
}

.section-title h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
}

.section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
}

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

.feature-box {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
}

.feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.feature-box h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.8rem;
}

.feature-box p {
        color: #666;
        line-height: 1.6;
}

.comparison-section {
        padding: 80px 0;
        background: white;
}

.comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
}

.comparison-card {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 2rem;
        position: relative;
}

.comparison-card.winner {
        background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
        color: #333;
}

.comparison-card h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
}

.comparison-card ul {
        list-style: none;
}

.comparison-card li {
        padding: 0.6rem 0;
        position: relative;
        padding-left: 1.8rem;
}

.comparison-card.winner li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #333;
        font-weight: bold;
        font-size: 1.2rem;
}

.comparison-card:not(.winner) li::before {
        content: '✗';
        position: absolute;
        left: 0;
        color: #e53e3e;
        font-weight: bold;
        font-size: 1.2rem;
}

.winner-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background: #333;
        color: #FFC107;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
}

.service-area-section {
        padding: 80px 0;
        background: #f8f9fa;
}

.service-areas {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
}

.area-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
}

.area-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.area-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
}

.area-card p {
        color: #666;
        font-size: 0.95rem;
}

.faq-section {
        padding: 80px 0;
        background: white;
}

.faq-container {
        max-width: 900px;
        margin: 0 auto;
}

.faq-item {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
}

.faq-item:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
}

.faq-item p {
        color: #666;
        line-height: 1.7;
}

.contact-section {
        padding: 80px 0;
        background: #f8f9fa;
}

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

.contact-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: #333;
}

.contact-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.7;
}

.contact-box {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.email-highlight {
        background: #FFC107;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.email-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
}

.main-email {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        text-decoration: none;
        border-bottom: 2px solid #333;
}

.main-email:hover {
        opacity: 0.8;
}

.contact-info p {
        margin-bottom: 0.8rem;
        color: #666;
}

.contact-info a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 600;
}

.contact-info a:hover {
        color: #FFC107;
}

footer {
        background: #333;
        color: white;
        padding: 2rem 0;
        text-align: center;
}

.footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
}

.social-links {
        display: flex;
        gap: 1rem;
}

.social-links a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
}

.social-links a:hover {
        color: white;
}

/* Mobile menu toggle (you already have this class, keep yours if identical) */
.mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        padding: 0.5rem;
        transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
        color: #FFC107;
        transform: scale(1.1);
}

.mobile-menu-toggle:active {
        transform: scale(0.95);
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
        .container {
                padding: 0 30px;
        }

        .hero-content {
                gap: 3rem;
        }

        .hero-text h1 {
                font-size: 3rem;
        }

        .hero-bins {
                width: 700px;
                bottom: -130px;
                right: 30px;
        }

        .showcase-content {
                gap: 3rem;
        }

        .showcase-image {
                max-width: 450px;
        }

        .showcase-text h2 {
                font-size: 2.3rem;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
        }

        .comparison-grid {
                gap: 1.5rem;
        }

        .service-areas {
                grid-template-columns: repeat(3, 1fr);
        }

        .contact-grid {
                gap: 3rem;
        }
}

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
        .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(15px);
                padding: 1.5rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
                animation: slideDown 0.3s ease-out;
        }

        .nav-menu.active {
                display: flex;
        }

        .nav-link {
                padding: 0.5rem 0;
                text-align: center;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .contact-btn {
                margin-top: 0.5rem;
                text-align: center;
                display: block;
                padding: 0.8rem 1.5rem;
        }

        .mobile-menu-toggle {
                display: block;
        }

        /* Dropdown becomes inline inside mobile menu */
        .dropdown-menu {
                position: static;
                display: none;
                box-shadow: none;
                border: none;
                padding: 0.4rem 0 0.6rem;
                background: transparent;
                min-width: auto;
        }

        .dropdown-open .dropdown-menu {
                display: block;
        }

        .dropdown-menu a {
                background: rgba(0, 0, 0, 0.03);
                margin: 0.25rem 0;
        }

        @keyframes slideDown {
                from {
                        opacity: 0;
                        transform: translateY(-10px);
                }

                to {
                        opacity: 1;
                        transform: translateY(0);
                }
        }

        .logo-image {
                height: 42px;
        }

        .logo-text {
                font-size: 1.05rem;
        }

        .hero {
                padding: 110px 0 70px;
        }

        .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
        }

        .hero-features {
                justify-content: center;
        }

        .feature-tag {
                min-width: 140px;
                font-size: 0.9rem;
        }

        .hero-text h1 {
                font-size: 2.5rem;
                line-height: 1.2;
        }

        .hero-text p {
                font-size: 1.1rem;
        }

        .hero-buttons {
                justify-content: center;
        }

        .btn-primary,
        .btn-secondary {
                width: 100%;
                max-width: 300px;
        }

        .pricing-card {
                max-width: 400px;
                margin: 0 auto;
        }

        .hero-bins {
                width: 450px;
                bottom: -110px;
                right: 50%;
                transform: translateX(50%);
        }

        .customer-showcase {
                padding: 70px 0;
        }

        .showcase-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
        }

        .showcase-image {
                max-width: 400px;
        }

        .showcase-text h2 {
                font-size: 2.2rem;
        }

        .showcase-text p {
                font-size: 1.05rem;
        }

        .showcase-features {
                text-align: left;
                max-width: 500px;
                margin: 0 auto 2rem;
        }

        .features-section {
                padding: 70px 0;
        }

        .section-title h2 {
                font-size: 2.3rem;
        }

        .section-title p {
                font-size: 1.1rem;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
        }

        .feature-box {
                padding: 1.8rem 1.5rem;
        }

        .feature-box h3 {
                font-size: 1.3rem;
        }

        .feature-box p {
                font-size: 0.95rem;
        }

        .comparison-section {
                padding: 70px 0;
        }

        .comparison-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
        }

        .service-area-section {
                padding: 70px 0;
        }

        .service-areas {
                grid-template-columns: repeat(2, 1fr);
        }

        .faq-section {
                padding: 70px 0;
        }

        .faq-item {
                padding: 1.5rem;
        }

        .faq-item h3 {
                font-size: 1.2rem;
        }

        .contact-section {
                padding: 70px 0;
        }

        .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
        }

        .contact-content h2 {
                font-size: 2.2rem;
                text-align: center;
        }

        .contact-content p {
                font-size: 1.05rem;
                text-align: center;
        }

        .contact-box {
                padding: 2rem 1.5rem;
        }

        .email-highlight {
                padding: 1.5rem;
        }

        .main-email {
                font-size: 1.1rem;
                word-break: break-word;
        }

        .contact-info p {
                font-size: 1rem;
        }

        .footer-content {
                flex-direction: column;
                gap: 1rem;
        }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
        .container {
                padding: 0 15px;
        }

        nav {
                padding: 0.8rem 0;
        }

        .logo-image {
                height: 35px;
        }

        .logo-text {
                font-size: 0.95rem;
        }

        .hero {
                padding: 100px 0 60px;
        }

        .hero-content {
                gap: 1.5rem;
        }

        .hero-text h1 {
                font-size: 1.9rem;
        }

        .hero-text p {
                font-size: 1rem;
        }

        .hero-features {
                gap: 0.8rem;
                justify-content: center;
        }

        .feature-tag {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
                min-width: 110px;
        }

        .btn-primary,
        .btn-secondary {
                padding: 0.9rem 1.8rem;
                font-size: 1rem;
                max-width: 100%;
        }

        .pricing-card {
                padding: 1.5rem;
        }

        .pricing-card h3 {
                font-size: 2rem;
        }

        .pricing-card .subtitle {
                font-size: 0.9rem;
        }

        .hero-bins {
                width: 280px;
                bottom: -70px;
        }

        .customer-showcase {
                padding: 60px 0;
        }

        .showcase-image {
                max-width: 300px;
        }

        .showcase-text h2 {
                font-size: 1.9rem;
        }

        .showcase-text p {
                font-size: 1rem;
        }

        .showcase-features li {
                font-size: 0.95rem;
        }

        .features-section {
                padding: 60px 0;
        }

        .section-title h2 {
                font-size: 1.9rem;
        }

        .section-title p {
                font-size: 1rem;
                padding: 0 10px;
        }

        .features-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
        }

        .feature-box {
                padding: 1.5rem 1.2rem;
        }

        .feature-box h3 {
                font-size: 1.2rem;
        }

        .feature-box p {
                font-size: 0.9rem;
        }

        .comparison-section {
                padding: 60px 0;
        }

        .comparison-card {
                padding: 1.5rem;
        }

        .comparison-card h3 {
                font-size: 1.5rem;
        }

        .service-area-section {
                padding: 60px 0;
        }

        .service-areas {
                grid-template-columns: 1fr;
        }

        .faq-section {
                padding: 60px 0;
        }

        .faq-item {
                padding: 1.2rem;
        }

        .faq-item h3 {
                font-size: 1.1rem;
        }

        .faq-item p {
                font-size: 0.95rem;
        }

        .contact-section {
                padding: 60px 0;
        }

        .contact-grid {
                gap: 2rem;
        }

        .contact-content h2 {
                font-size: 1.9rem;
        }

        .contact-content p {
                font-size: 1rem;
                line-height: 1.6;
        }

        .contact-box {
                padding: 1.5rem 1rem;
        }

        .email-highlight {
                padding: 1.2rem 0.8rem;
        }

        .email-icon {
                font-size: 1.5rem;
        }

        .main-email {
                font-size: 0.95rem;
                word-break: break-all;
                line-height: 1.4;
        }

        .contact-info p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
                line-height: 1.5;
        }

        .contact-info a {
                word-break: break-word;
        }

        footer {
                padding: 1.5rem 0;
                font-size: 0.9rem;
        }
}

/* Extra small screens */
@media (max-width: 360px) {
        .contact-content h2 {
                font-size: 1.6rem;
        }

        .contact-content p {
                font-size: 0.9rem;
        }

        .main-email {
                font-size: 0.85rem;
        }

        .contact-info p {
                font-size: 0.85rem;
        }
}

/* ===== Styles from cargo.html ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #333;
}

.logo-image {
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
}

.logo-text {
        font-size: 1.2rem;
        font-weight: 600;
}

.nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
}

.nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
}

.nav-link:hover {
        color: #FFC107;
}

.contact-btn {
        background: #FFC107;
        color: #333;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
}

.contact-btn:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.hero {
        background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
        color: white;
        padding: 120px 0 80px;
        position: relative;
        overflow: visible;
}

.hero::before {
        content: '';
        position: absolute;
        inset: 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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        z-index: 1;
}

.hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
}

.hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        line-height: 1.2;
}

.hero-content p {
        font-size: 1.3rem;
        margin-bottom: 1.6rem;
        opacity: 0.95;
        line-height: 1.6;
}

.hero-features {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2.2rem;
        flex-wrap: wrap;
}

.feature-tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
}

.btn-primary {
        background: #FFC107;
        color: #333;
        padding: 1.1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-primary:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
        background: transparent;
        color: white;
        padding: 1.1rem 2.5rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
}

.trailer-image-section {
        padding: 60px 0;
        background: white;
}

.trailer-image-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
}

.trailer-image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quick-info {
        padding: 30px 0 0;
        background: white;
}

.quick-info .bar {
        max-width: 900px;
        margin: 0 auto;
        background: #f8f9fa;
        border-radius: 16px;
        padding: 18px 20px;
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.quick-pill {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 600;
        color: #333;
}

.quick-pill strong {
        color: #FFC107;
}

.pricing-section {
        padding: 80px 0;
        background: #f8f9fa;
}

.section-title {
        text-align: center;
        margin-bottom: 3rem;
}

.section-title h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
}

.section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
}

.pricing-table-wrapper {
        overflow-x: auto;
        margin-bottom: 1.8rem;
}

.pricing-table {
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
        width: 100%;
        border-collapse: collapse;
}

.pricing-table th {
        background: #333;
        color: #FFC107;
        padding: 1.2rem;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
}

.pricing-table td {
        padding: 1.2rem;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
        color: #333;
}

.pricing-table tr:last-child td {
        border-bottom: none;
}

.pricing-table tbody tr:hover {
        background: #f8f9fa;
}

.size-column {
        font-weight: 600;
        color: #333;
}

.price-column {
        font-weight: 700;
        color: #FFC107;
        font-size: 1.1rem;
}

.notice {
        max-width: 820px;
        margin: 0 auto;
        text-align: center;
        color: #555;
        font-size: 1.05rem;
}

.features-section {
        padding: 80px 0;
        background: white;
}

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

.feature-box {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
}

.feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-box h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.8rem;
}

.feature-box p {
        color: #666;
        line-height: 1.6;
}

.areas-section {
        padding: 70px 0;
        background: #f8f9fa;
}

.areas-wrap {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 2.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.areas-title {
        text-align: center;
        margin-bottom: 1.4rem;
}

.areas-title h2 {
        font-size: 2.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
}

.areas-title p {
        color: #666;
        font-size: 1.1rem;
}

.areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.9rem;
        margin-top: 1.4rem;
}

.area-link {
        display: block;
        text-decoration: none;
        color: #333;
        background: #f8f9fa;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.9rem 1rem;
        border-radius: 14px;
        font-weight: 600;
        transition: all 0.25s ease;
        text-align: center;
}

.area-link:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 193, 7, 0.55);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bundle-cta {
        background: linear-gradient(135deg, #333 0%, #555 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
}

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

.bundle-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
}

.faq-section {
        padding: 80px 0;
        background: white;
}

.faq {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
}

.faq-item {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.4rem 1.6rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
}

.faq-item p {
        color: #666;
}

.contact-section {
        padding: 80px 0;
        background: white;
}

.contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}

.contact-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.6rem;
        color: #333;
}

.contact-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.2rem;
        line-height: 1.7;
}

.contact-box {
        background: #f8f9fa;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.email-highlight {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        border: 3px solid #FFC107;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.email-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
}

.main-email {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        text-decoration: none;
        border-bottom: 2px solid #FFC107;
}

.main-email:hover {
        color: #FFC107;
}

.contact-info p {
        margin-bottom: 0.8rem;
        color: #666;
}

.contact-info a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 600;
}

footer {
        background: #333;
        color: white;
        padding: 2rem 0;
        text-align: center;
}

.footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
}

.social-links {
        display: flex;
        gap: 1rem;
}

.social-links a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
}

.social-links a:hover {
        color: white;
}

.mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
        .container {
                padding: 0 30px;
        }

        .hero-content h1 {
                font-size: 3rem;
        }

        .hero-content p {
                font-size: 1.2rem;
        }

        .trailer-image-container {
                max-width: 750px;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
        }

        .contact-grid {
                gap: 3rem;
        }

        .pricing-table {
                max-width: 740px;
        }

        .areas-wrap {
                padding: 2rem;
        }
}

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
        .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(15px);
                padding: 1rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
        }

        .nav-menu.active {
                display: flex;
        }

        .mobile-menu-toggle {
                display: block;
        }

        .logo-image {
                height: 45px;
        }

        .logo-text {
                font-size: 1.1rem;
        }

        .hero {
                padding: 110px 0 70px;
        }

        .hero-content h1 {
                font-size: 2.5rem;
        }

        .hero-content p {
                font-size: 1.15rem;
        }

        .btn-primary,
        .btn-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
        }

        .trailer-image-section {
                padding: 50px 0;
        }

        .trailer-image-container {
                max-width: 600px;
        }

        .pricing-section {
                padding: 70px 0;
        }

        .section-title h2 {
                font-size: 2.3rem;
        }

        .section-title p {
                font-size: 1.1rem;
        }

        .pricing-table th,
        .pricing-table td {
                padding: 1rem 0.6rem;
                font-size: 0.95rem;
        }

        .pricing-table th {
                font-size: 1rem;
        }

        .price-column {
                font-size: 1rem;
        }

        .features-section {
                padding: 70px 0;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
        }

        .feature-box {
                padding: 1.8rem 1.5rem;
        }

        .feature-icon {
                font-size: 2.5rem;
        }

        .areas-section {
                padding: 60px 0;
        }

        .areas-title h2 {
                font-size: 2rem;
        }

        .bundle-cta {
                padding: 50px 0;
        }

        .bundle-cta h2 {
                font-size: 2.2rem;
        }

        .bundle-cta p {
                font-size: 1.1rem;
                padding: 0 20px;
        }

        .faq-section {
                padding: 70px 0;
        }

        .contact-section {
                padding: 70px 0;
        }

        .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
        }

        .contact-content h2 {
                font-size: 2.2rem;
                text-align: center;
        }

        .footer-content {
                flex-direction: column;
                gap: 1rem;
        }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
        .container {
                padding: 0 15px;
        }

        nav {
                padding: 0.8rem 0;
        }

        .logo-image {
                height: 35px;
        }

        .logo-text {
                font-size: 0.95rem;
        }

        .hero {
                padding: 100px 0 60px;
        }

        .hero-content h1 {
                font-size: 1.9rem;
        }

        .hero-content p {
                font-size: 1rem;
        }

        .hero-features {
                gap: 0.7rem;
        }

        .feature-tag {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
        }

        .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
        }

        .btn-primary,
        .btn-secondary {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
                width: 100%;
                max-width: 300px;
        }

        .trailer-image-section {
                padding: 40px 0;
        }

        .trailer-image-container img {
                border-radius: 15px;
        }

        .quick-info .bar {
                padding: 16px 14px;
        }

        .quick-pill {
                width: 100%;
                text-align: center;
        }

        .pricing-section {
                padding: 60px 0;
        }

        .section-title h2 {
                font-size: 1.9rem;
        }

        .section-title p {
                font-size: 1rem;
                padding: 0 10px;
        }

        .pricing-table th,
        .pricing-table td {
                padding: 0.8rem 0.4rem;
                font-size: 0.85rem;
        }

        .features-section {
                padding: 60px 0;
        }

        .features-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
        }

        .feature-box {
                padding: 1.5rem 1.2rem;
        }

        .feature-icon {
                font-size: 2.2rem;
        }

        .areas-wrap {
                padding: 1.6rem;
        }

        .areas-title h2 {
                font-size: 1.8rem;
        }

        .faq-section {
                padding: 60px 0;
        }

        .faq-item {
                padding: 1.2rem 1.2rem;
        }

        .contact-section {
                padding: 60px 0;
        }

        .contact-content h2 {
                font-size: 1.9rem;
        }

        .contact-box {
                padding: 2rem 1.5rem;
        }

        .email-highlight {
                padding: 1.5rem 1rem;
        }

        .main-email {
                font-size: 1.1rem;
                word-break: break-all;
        }

        footer {
                padding: 1.5rem 0;
                font-size: 0.9rem;
        }
}

/* ===== Styles from moving-services.html ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #333;
}

.logo-image {
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
}

.logo-text {
        font-size: 1.2rem;
        font-weight: 600;
}

.nav-menu {
        display: flex;
        list-style: none;
        gap: 1.6rem;
        align-items: center;
}

.nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        white-space: nowrap;
}

.nav-link:hover {
        color: #FFC107;
}

.contact-btn {
        background: #FFC107;
        color: #333;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
}

.contact-btn:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Services dropdown */
.nav-item {
        position: relative;
}

.dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        cursor: pointer;
}

.caret {
        font-size: 0.85rem;
        opacity: 0.75;
}

.dropdown-menu {
        position: absolute;
        top: 120%;
        right: 0;
        min-width: 220px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        padding: 0.6rem;
        display: none;
        z-index: 1100;
}

.dropdown-menu a {
        display: block;
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
        background: rgba(255, 193, 7, 0.18);
        color: #333;
}

.dropdown-menu a[aria-current="page"] {
        background: rgba(255, 193, 7, 0.28);
        font-weight: 700;
}

.dropdown-open .dropdown-menu {
        display: block;
}

.mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        padding: 0.5rem;
        transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
        color: #FFC107;
        transform: scale(1.1);
}

.mobile-menu-toggle:active {
        transform: scale(0.95);
}

/* Hero */
.hero {
        background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
        color: #fff;
        padding: 120px 0 70px;
        position: relative;
        overflow: hidden;
}

.hero::before {
        content: '';
        position: absolute;
        inset: 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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        z-index: 1;
}

.hero-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 4rem;
        align-items: center;
}

.hero h1 {
        font-size: 3.2rem;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 1rem;
}

.hero p {
        font-size: 1.2rem;
        opacity: 0.92;
        margin-bottom: 1.8rem;
        line-height: 1.7;
}

.hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-bottom: 2rem;
}

.feature-tag {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.55rem 1.1rem;
        border-radius: 999px;
        font-size: 0.95rem;
        backdrop-filter: blur(10px);
        min-width: 140px;
        text-align: center;
}

.hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        align-items: center;
}

.btn-primary {
        background: #FFC107;
        color: #333;
        padding: 1rem 2rem;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-primary:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
        background: transparent;
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.05rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
}

.info-card {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2rem;
        text-align: left;
}

.info-card h2 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 0.8rem;
}

.info-card p {
        margin-bottom: 1.1rem;
        opacity: 0.95;
}

.info-list {
        list-style: none;
}

.info-list li {
        padding: 0.55rem 0;
        opacity: 0.95;
        position: relative;
        padding-left: 1.6rem;
}

.info-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #FFC107;
        font-weight: 900;
}

/* Sections */
.section {
        padding: 80px 0;
        background: #fff;
}

.section.alt {
        background: #f8f9fa;
}

.section-title {
        text-align: center;
        margin-bottom: 3rem;
}

.section-title h2 {
        font-size: 2.6rem;
        font-weight: 800;
        color: #333;
        margin-bottom: 0.9rem;
}

.section-title p {
        font-size: 1.15rem;
        color: #666;
        max-width: 760px;
        margin: 0 auto;
}

.grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.6rem;
}

.card {
        background: #fff;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.25s ease;
        height: 100%;
}

.card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
        font-size: 1.35rem;
        font-weight: 800;
        margin-bottom: 0.75rem;
        color: #333;
}

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

/* Service areas (future link-ready) */
.areas {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 1.25rem;
        margin-top: 2.5rem;
}

.area-card {
        background: #fff;
        border-radius: 12px;
        padding: 1.25rem;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.25s ease;
        text-align: center;
}

.area-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.area-link {
        display: inline-block;
        color: #333;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.1rem;
        border-bottom: 2px solid transparent;
        padding-bottom: 2px;
        transition: border-color 0.2s ease, color 0.2s ease;
}

.area-link:hover {
        color: #333;
        border-color: rgba(255, 193, 7, 0.9);
}

.area-card p {
        color: #666;
        font-size: 0.95rem;
        margin-top: 0.4rem;
}

/* FAQ */
.faq-container {
        max-width: 900px;
        margin: 0 auto;
}

.faq-item {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 1.8rem;
        margin-bottom: 1.2rem;
        transition: all 0.25s ease;
}

.faq-item:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
        font-size: 1.22rem;
        font-weight: 800;
        margin-bottom: 0.75rem;
        color: #333;
}

.faq-item p {
        color: #666;
        line-height: 1.75;
}

/* Contact section - matching your existing style */
.contact-section {
        padding: 80px 0;
        background: #f8f9fa;
}

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

.contact-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: #333;
}

.contact-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.3rem;
        line-height: 1.7;
}

.contact-box {
        background: #fff;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.email-highlight {
        background: #FFC107;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.email-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
}

.main-email {
        font-size: 1.3rem;
        font-weight: 800;
        color: #333;
        text-decoration: none;
        border-bottom: 2px solid #333;
}

.main-email:hover {
        opacity: 0.85;
}

.contact-info p {
        margin-bottom: 0.8rem;
        color: #666;
}

.contact-info a {
        color: #4a5568;
        text-decoration: none;
        font-weight: 700;
}

.contact-info a:hover {
        color: #FFC107;
}

footer {
        background: #333;
        color: #fff;
        padding: 2rem 0;
        text-align: center;
}

.footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
}

.social-links {
        display: flex;
        gap: 1rem;
}

.social-links a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
}

.social-links a:hover {
        color: #fff;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
        .container {
                padding: 0 30px;
        }

        .hero-content {
                gap: 3rem;
                grid-template-columns: 1fr 340px;
        }

        .hero h1 {
                font-size: 2.85rem;
        }

        .grid-3 {
                grid-template-columns: repeat(2, 1fr);
        }

        .contact-grid {
                gap: 3rem;
        }
}

/* Tablet + Mobile */
@media (max-width: 768px) {
        .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(15px);
                padding: 1.5rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 0.9rem;
                animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
                from {
                        opacity: 0;
                        transform: translateY(-10px);
                }

                to {
                        opacity: 1;
                        transform: translateY(0);
                }
        }

        .nav-menu.active {
                display: flex;
        }

        .mobile-menu-toggle {
                display: block;
        }

        .nav-link {
                padding: 0.5rem 0;
                text-align: center;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-link:last-of-type {
                border-bottom: none;
        }

        .contact-btn {
                margin-top: 0.5rem;
                text-align: center;
                display: block;
        }

        /* Dropdown in mobile becomes inline list */
        .dropdown-menu {
                position: static;
                display: none;
                box-shadow: none;
                border: none;
                padding: 0.4rem 0 0.6rem;
                background: transparent;
                min-width: auto;
        }

        .dropdown-menu a {
                background: rgba(0, 0, 0, 0.03);
                margin: 0.25rem 0;
        }

        .dropdown-open .dropdown-menu {
                display: block;
        }

        .hero {
                padding: 110px 0 65px;
        }

        .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
        }

        .hero-features {
                justify-content: center;
        }

        .hero-buttons {
                justify-content: center;
        }

        .btn-primary,
        .btn-secondary {
                width: 100%;
                max-width: 320px;
        }

        .info-card {
                max-width: 520px;
                margin: 0 auto;
                text-align: left;
        }

        .grid-3 {
                grid-template-columns: 1fr;
        }

        .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
        }

        .contact-content h2,
        .contact-content p {
                text-align: center;
        }

        .footer-content {
                flex-direction: column;
                gap: 1rem;
        }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
        .container {
                padding: 0 15px;
        }

        nav {
                padding: 0.8rem 0;
        }

        .logo-image {
                height: 35px;
        }

        .logo-text {
                font-size: 0.95rem;
        }

        .hero {
                padding: 100px 0 60px;
        }

        .hero h1 {
                font-size: 2.05rem;
        }

        .hero p {
                font-size: 1.02rem;
        }

        .feature-tag {
                min-width: 135px;
                font-size: 0.88rem;
        }

        .info-card {
                padding: 1.5rem;
        }

        .section {
                padding: 65px 0;
        }

        .section-title h2 {
                font-size: 2.05rem;
        }

        .section-title p {
                font-size: 1.05rem;
                padding: 0 8px;
        }

        .contact-box {
                padding: 1.6rem 1.1rem;
        }

        .email-highlight {
                padding: 1.2rem 0.9rem;
        }

        .main-email {
                font-size: 1rem;
                word-break: break-word;
        }
}

/* ===== Styles from sherwood-park.html ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #333;
}

.logo-image {
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
}

.logo-image img {
        max-height: 100%;
        width: auto;
        display: block;
}

.logo-text {
        font-size: 1.2rem;
        font-weight: 600;
}

.nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
}

.nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
}

.nav-link:hover {
        color: #FFC107;
}

.contact-btn {
        background: #FFC107;
        color: #333;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
}

.contact-btn:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
}

.hero {
        background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
        color: white;
        padding: 120px 0 80px;
        position: relative;
        overflow: visible;
}

.hero::before {
        content: '';
        position: absolute;
        inset: 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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        z-index: 1;
}

.hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
}

.hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        line-height: 1.2;
}

.hero-content p {
        font-size: 1.3rem;
        margin-bottom: 1.6rem;
        opacity: 0.95;
        line-height: 1.7;
}

.hero-features {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2.2rem;
        flex-wrap: wrap;
}

.feature-tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
}

.btn-primary {
        background: #FFC107;
        color: #333;
        padding: 1.1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-primary:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
        background: transparent;
        color: white;
        padding: 1.1rem 2.5rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
}

.trailer-image-section {
        padding: 60px 0;
        background: white;
}

.trailer-image-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
}

.trailer-image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quick-info {
        padding: 30px 0 0;
        background: white;
}

.quick-info .bar {
        max-width: 900px;
        margin: 0 auto;
        background: #f8f9fa;
        border-radius: 16px;
        padding: 18px 20px;
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.quick-pill {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 600;
        color: #333;
}

.quick-pill strong {
        color: #FFC107;
}

.pricing-section {
        padding: 80px 0;
        background: #f8f9fa;
}

.section-title {
        text-align: center;
        margin-bottom: 3rem;
}

.section-title h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
}

.section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 760px;
        margin: 0 auto;
}

.pricing-table-wrapper {
        overflow-x: auto;
        margin-bottom: 1.8rem;
}

.pricing-table {
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
        width: 100%;
        border-collapse: collapse;
}

.pricing-table th {
        background: #333;
        color: #FFC107;
        padding: 1.2rem;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
}

.pricing-table td {
        padding: 1.2rem;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
        color: #333;
}

.pricing-table tr:last-child td {
        border-bottom: none;
}

.pricing-table tbody tr:hover {
        background: #f8f9fa;
}

.size-column {
        font-weight: 600;
        color: #333;
}

.price-column {
        font-weight: 700;
        color: #FFC107;
        font-size: 1.1rem;
}

.notice {
        max-width: 820px;
        margin: 0 auto;
        text-align: center;
        color: #555;
        font-size: 1.05rem;
}

.features-section {
        padding: 80px 0;
        background: white;
}

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

.feature-box {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
}

.feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-box h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.8rem;
}

.feature-box p {
        color: #666;
        line-height: 1.7;
}

.areas-section {
        padding: 70px 0;
        background: #f8f9fa;
}

.areas-wrap {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 2.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.areas-title {
        text-align: center;
        margin-bottom: 1.4rem;
}

.areas-title h2 {
        font-size: 2.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
}

.areas-title p {
        color: #666;
        font-size: 1.1rem;
}

.areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.9rem;
        margin-top: 1.4rem;
}

.area-link {
        display: block;
        text-decoration: none;
        color: #333;
        background: #f8f9fa;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.9rem 1rem;
        border-radius: 14px;
        font-weight: 600;
        transition: all 0.25s ease;
        text-align: center;
}

.area-link:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 193, 7, 0.55);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-section {
        padding: 80px 0;
        background: white;
}

.faq {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
}

.faq-item {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.4rem 1.6rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
}

.faq-item p {
        color: #666;
}

.contact-section {
        padding: 80px 0;
        background: white;
}

.contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}

.contact-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.6rem;
        color: #333;
}

.contact-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.2rem;
        line-height: 1.7;
}

.contact-box {
        background: #f8f9fa;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.email-highlight {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        border: 3px solid #FFC107;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.email-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
}

.main-email {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        text-decoration: none;
        border-bottom: 2px solid #FFC107;
}

.main-email:hover {
        color: #FFC107;
}

.contact-info p {
        margin-bottom: 0.8rem;
        color: #666;
}

.contact-info a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 600;
}

footer {
        background: #333;
        color: white;
        padding: 2rem 0;
        text-align: center;
}

.footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
}

.social-links {
        display: flex;
        gap: 1rem;
}

.social-links a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
}

.social-links a:hover {
        color: white;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
        .container {
                padding: 0 30px;
        }

        .hero-content h1 {
                font-size: 3rem;
        }

        .hero-content p {
                font-size: 1.2rem;
        }

        .trailer-image-container {
                max-width: 750px;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
        }

        .contact-grid {
                gap: 3rem;
        }

        .pricing-table {
                max-width: 740px;
        }

        .areas-wrap {
                padding: 2rem;
        }
}

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
        .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(15px);
                padding: 1rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
        }

        .nav-menu.active {
                display: flex;
        }

        .mobile-menu-toggle {
                display: block;
        }

        .logo-image {
                height: 45px;
        }

        .logo-text {
                font-size: 1.1rem;
        }

        .hero {
                padding: 110px 0 70px;
        }

        .hero-content h1 {
                font-size: 2.5rem;
        }

        .hero-content p {
                font-size: 1.15rem;
        }

        .btn-primary,
        .btn-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
        }

        .trailer-image-section {
                padding: 50px 0;
        }

        .trailer-image-container {
                max-width: 600px;
        }

        .pricing-section {
                padding: 70px 0;
        }

        .section-title h2 {
                font-size: 2.3rem;
        }

        .section-title p {
                font-size: 1.1rem;
        }

        .pricing-table th,
        .pricing-table td {
                padding: 1rem 0.6rem;
                font-size: 0.95rem;
        }

        .pricing-table th {
                font-size: 1rem;
        }

        .price-column {
                font-size: 1rem;
        }

        .features-section {
                padding: 70px 0;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
        }

        .feature-box {
                padding: 1.8rem 1.5rem;
        }

        .feature-icon {
                font-size: 2.5rem;
        }

        .areas-section {
                padding: 60px 0;
        }

        .areas-title h2 {
                font-size: 2rem;
        }

        .faq-section {
                padding: 70px 0;
        }

        .contact-section {
                padding: 70px 0;
        }

        .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
        }

        .contact-content h2 {
                font-size: 2.2rem;
                text-align: center;
        }

        .footer-content {
                flex-direction: column;
                gap: 1rem;
        }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
        .container {
                padding: 0 15px;
        }

        nav {
                padding: 0.8rem 0;
        }

        .logo-image {
                height: 35px;
        }

        .logo-text {
                font-size: 0.95rem;
        }

        .hero {
                padding: 100px 0 60px;
        }

        .hero-content h1 {
                font-size: 1.9rem;
        }

        .hero-content p {
                font-size: 1rem;
        }

        .hero-features {
                gap: 0.7rem;
        }

        .feature-tag {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
        }

        .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
        }

        .btn-primary,
        .btn-secondary {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
                width: 100%;
                max-width: 300px;
        }

        .trailer-image-section {
                padding: 40px 0;
        }

        .trailer-image-container img {
                border-radius: 15px;
        }

        .quick-info .bar {
                padding: 16px 14px;
        }

        .quick-pill {
                width: 100%;
                text-align: center;
        }

        .pricing-section {
                padding: 60px 0;
        }

        .section-title h2 {
                font-size: 1.9rem;
        }

        .section-title p {
                font-size: 1rem;
                padding: 0 10px;
        }

        .pricing-table th,
        .pricing-table td {
                padding: 0.8rem 0.4rem;
                font-size: 0.85rem;
        }

        .features-section {
                padding: 60px 0;
        }

        .features-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
        }

        .feature-box {
                padding: 1.5rem 1.2rem;
        }

        .feature-icon {
                font-size: 2.2rem;
        }

        .areas-wrap {
                padding: 1.6rem;
        }

        .areas-title h2 {
                font-size: 1.8rem;
        }

        .faq-section {
                padding: 60px 0;
        }

        .faq-item {
                padding: 1.2rem 1.2rem;
        }

        .contact-section {
                padding: 60px 0;
        }

        .contact-content h2 {
                font-size: 1.9rem;
        }

        .contact-box {
                padding: 2rem 1.5rem;
        }

        .email-highlight {
                padding: 1.5rem 1rem;
        }

        .main-email {
                font-size: 1.1rem;
                word-break: break-all;
        }

        footer {
                padding: 1.5rem 0;
                font-size: 0.9rem;
        }
}

/* ===== Styles from edmonton.html ===== */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        scroll-behavior: smooth;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: #333;
}

.logo-image {
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
}

.logo-text {
        font-size: 1.2rem;
        font-weight: 600;
}

.nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
}

.nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
}

.nav-link:hover {
        color: #FFC107;
}

.contact-btn {
        background: #FFC107;
        color: #333;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
}

.contact-btn:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.hero {
        background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
        color: white;
        padding: 120px 0 80px;
        position: relative;
        overflow: visible;
}

.hero::before {
        content: '';
        position: absolute;
        inset: 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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        z-index: 1;
}

.hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
}

.hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        line-height: 1.2;
}

/* Slightly smaller hero H1 on Box + Moving + Garbage pages (responsive) */
body.page-box .hero-content h1,
body.page-moving-services .hero-content h1,
body.page-garbage-removal .hero-content h1 {
        font-size: clamp(2.0rem, 3.2vw, 2.6rem);
}

.hero-content p {
        font-size: 1.3rem;
        margin-bottom: 1.6rem;
        opacity: 0.95;
        line-height: 1.6;
}

.hero-features {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2.2rem;
        flex-wrap: wrap;
}

.feature-tag {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
}

.btn-primary {
        background: #FFC107;
        color: #333;
        padding: 1.1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-primary:hover {
        background: #FFB300;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
        background: transparent;
        color: white;
        padding: 1.1rem 2.5rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
}

.trailer-image-section {
        padding: 60px 0;
        background: white;
}

.trailer-image-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
}

.trailer-image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quick-info {
        padding: 30px 0 0;
        background: white;
}

.quick-info .bar {
        max-width: 900px;
        margin: 0 auto;
        background: #f8f9fa;
        border-radius: 16px;
        padding: 18px 20px;
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.quick-pill {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 600;
        color: #333;
}

.quick-pill strong {
        color: #FFC107;
}

.pricing-section {
        padding: 80px 0;
        background: #f8f9fa;
}

.section-title {
        text-align: center;
        margin-bottom: 3rem;
}

.section-title h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
}

.section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
}

.pricing-table-wrapper {
        overflow-x: auto;
        margin-bottom: 1.8rem;
}

.pricing-table {
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
        width: 100%;
        border-collapse: collapse;
}

.pricing-table th {
        background: #333;
        color: #FFC107;
        padding: 1.2rem;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
}

.pricing-table td {
        padding: 1.2rem;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
        color: #333;
}

.pricing-table tr:last-child td {
        border-bottom: none;
}

.pricing-table tbody tr:hover {
        background: #f8f9fa;
}

.size-column {
        font-weight: 600;
        color: #333;
}

.price-column {
        font-weight: 700;
        color: #FFC107;
        font-size: 1.1rem;
}

.notice {
        max-width: 820px;
        margin: 0 auto;
        text-align: center;
        color: #555;
        font-size: 1.05rem;
}

.features-section {
        padding: 80px 0;
        background: white;
}

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

.feature-box {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
}

.feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-box h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.8rem;
}

.feature-box p {
        color: #666;
        line-height: 1.6;
}

.areas-section {
        padding: 70px 0;
        background: #f8f9fa;
}

.areas-wrap {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 2.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.areas-title {
        text-align: center;
        margin-bottom: 1.4rem;
}

.areas-title h2 {
        font-size: 2.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
}

.areas-title p {
        color: #666;
        font-size: 1.1rem;
}

.areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.9rem;
        margin-top: 1.4rem;
}

.area-link {
        display: block;
        text-decoration: none;
        color: #333;
        background: #f8f9fa;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.9rem 1rem;
        border-radius: 14px;
        font-weight: 600;
        transition: all 0.25s ease;
        text-align: center;
}

.area-link:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 193, 7, 0.55);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bundle-cta {
        background: linear-gradient(135deg, #333 0%, #555 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
}

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

.bundle-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
}

.faq-section {
        padding: 80px 0;
        background: white;
}

.faq {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
}

.faq-item {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.4rem 1.6rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
}

.faq-item p {
        color: #666;
}

.contact-section {
        padding: 80px 0;
        background: white;
}

.contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}

.contact-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.6rem;
        color: #333;
}

.contact-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.2rem;
        line-height: 1.7;
}

.contact-box {
        background: #f8f9fa;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.email-highlight {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        border: 3px solid #FFC107;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.email-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
}

.main-email {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        text-decoration: none;
        border-bottom: 2px solid #FFC107;
}

.main-email:hover {
        color: #FFC107;
}

.contact-info p {
        margin-bottom: 0.8rem;
        color: #666;
}

.contact-info a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 600;
}

footer {
        background: #333;
        color: white;
        padding: 2rem 0;
        text-align: center;
}

.footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
}

.social-links {
        display: flex;
        gap: 1rem;
}

.social-links a {
        color: #FFC107;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
}

.social-links a:hover {
        color: white;
}

.mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
        .container {
                padding: 0 30px;
        }

        .hero-content h1 {
                font-size: 3rem;
        }

        .hero-content p {
                font-size: 1.2rem;
        }

        .trailer-image-container {
                max-width: 750px;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
        }

        .contact-grid {
                gap: 3rem;
        }

        .pricing-table {
                max-width: 740px;
        }

        .areas-wrap {
                padding: 2rem;
        }
}

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
        .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(15px);
                padding: 1rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
        }

        .nav-menu.active {
                display: flex;
        }

        .mobile-menu-toggle {
                display: block;
        }

        .logo-image {
                height: 45px;
        }

        .logo-text {
                font-size: 1.1rem;
        }

        .hero {
                padding: 110px 0 70px;
        }

        .hero-content h1 {
                font-size: 2.5rem;
        }

        .hero-content p {
                font-size: 1.15rem;
        }

        .btn-primary,
        .btn-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
        }

        .trailer-image-section {
                padding: 50px 0;
        }

        .trailer-image-container {
                max-width: 600px;
        }

        .pricing-section {
                padding: 70px 0;
        }

        .section-title h2 {
                font-size: 2.3rem;
        }

        .section-title p {
                font-size: 1.1rem;
        }

        .pricing-table th,
        .pricing-table td {
                padding: 1rem 0.6rem;
                font-size: 0.95rem;
        }

        .pricing-table th {
                font-size: 1rem;
        }

        .price-column {
                font-size: 1rem;
        }

        .features-section {
                padding: 70px 0;
        }

        .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
        }

        .feature-box {
                padding: 1.8rem 1.5rem;
        }

        .feature-icon {
                font-size: 2.5rem;
        }

        .areas-section {
                padding: 60px 0;
        }

        .areas-title h2 {
                font-size: 2rem;
        }

        .bundle-cta {
                padding: 50px 0;
        }

        .bundle-cta h2 {
                font-size: 2.2rem;
        }

        .bundle-cta p {
                font-size: 1.1rem;
                padding: 0 20px;
        }

        .faq-section {
                padding: 70px 0;
        }

        .contact-section {
                padding: 70px 0;
        }

        .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
        }

        .contact-content h2 {
                font-size: 2.2rem;
                text-align: center;
        }

        .footer-content {
                flex-direction: column;
                gap: 1rem;
        }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
        .container {
                padding: 0 15px;
        }

        nav {
                padding: 0.8rem 0;
        }

        .logo-image {
                height: 35px;
        }

        .logo-text {
                font-size: 0.95rem;
        }

        .hero {
                padding: 100px 0 60px;
        }

        .hero-content h1 {
                font-size: 1.9rem;
        }

        .hero-content p {
                font-size: 1rem;
        }

        .hero-features {
                gap: 0.7rem;
        }

        .feature-tag {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
        }

        .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
        }

        .btn-primary,
        .btn-secondary {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
                width: 100%;
                max-width: 300px;
        }

        .trailer-image-section {
                padding: 40px 0;
        }

        .trailer-image-container img {
                border-radius: 15px;
        }

        .quick-info .bar {
                padding: 16px 14px;
        }

        .quick-pill {
                width: 100%;
                text-align: center;
        }

        .pricing-section {
                padding: 60px 0;
        }

        .section-title h2 {
                font-size: 1.9rem;
        }

        .section-title p {
                font-size: 1rem;
                padding: 0 10px;
        }

        .pricing-table th,
        .pricing-table td {
                padding: 0.8rem 0.4rem;
                font-size: 0.85rem;
        }

        .features-section {
                padding: 60px 0;
        }

        .features-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
        }

        .feature-box {
                padding: 1.5rem 1.2rem;
        }

        .feature-icon {
                font-size: 2.2rem;
        }

        .areas-wrap {
                padding: 1.6rem;
        }

        .areas-title h2 {
                font-size: 1.8rem;
        }

        .faq-section {
                padding: 60px 0;
        }

        .faq-item {
                padding: 1.2rem 1.2rem;
        }

        .contact-section {
                padding: 60px 0;
        }

        .contact-content h2 {
                font-size: 1.9rem;
        }

        .contact-box {
                padding: 2rem 1.5rem;
        }

        .email-highlight {
                padding: 1.5rem 1rem;
        }

        .main-email {
                font-size: 1.1rem;
                word-break: break-all;
        }

        footer {
                padding: 1.5rem 0;
                font-size: 0.9rem;
        }
}

/* ===== Shared additions ===== */
.dropdown-menu a[aria-current="page"] {
        background: rgba(255, 193, 7, 0.28);
        font-weight: 700;
}


/* ===== Banner/Hero layout fixes to match original page banners ===== */
body.page-box .hero-content {
        display: grid !important;
        grid-template-columns: 1fr 320px !important;
        gap: 4rem !important;
        align-items: center !important;
        text-align: left !important;
}

body.page-box .hero-text {
        max-width: none !important;
}

body.page-box .pricing-card {
        max-width: 420px;
}

@media (max-width: 900px) {
        body.page-box .hero-content {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
                text-align: center !important;
        }

        body.page-box .pricing-card {
                margin: 0 auto;
        }

        body.page-box .hero-buttons {
                justify-content: center;
        }
}

body.page-moving-services .hero-content,
body.page-garbage-removal .hero-content {
        display: grid !important;
        grid-template-columns: 1fr 360px !important;
        gap: 4rem !important;
        align-items: center !important;
        text-align: left !important;
}

@media (max-width: 900px) {

        body.page-moving-services .hero-content,
        body.page-garbage-removal .hero-content {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
                text-align: center !important;
        }

        body.page-moving-services .hero-buttons,
        body.page-garbage-removal .hero-buttons {
                justify-content: center;
        }

}

/* =========================
   HERO/BANNER LOCKDOWN
   Ensure each page's hero matches the original per-page layouts.
   ========================= */

/* Homepage hero: split headline + supporting copy (desktop), stack on mobile */
body.page-home .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: center;
        text-align: left;
        max-width: 900px;
}

body.page-home .hero-content h1 {
        margin-bottom: 0;
        text-align: center;
}

body.page-home .hero-content p {
        margin: 0;
        text-align: center;
}

body.page-home .hero-buttons {
        grid-column: 1 / -1;
        margin-top: 2.25rem;
        justify-content: center;
}

@media (max-width: 768px) {
        body.page-home .hero-content {
                grid-template-columns: 1fr;
                gap: 1.75rem;
                text-align: center;
                max-width: 900px;
        }

        body.page-home .hero-content h1,
        body.page-home .hero-content p {
                text-align: center;
        }
}

/* Cargo + City pages hero: centered banner (original style) */
body.page-cargo .hero-content,
body.page-edmonton .hero-content,
body.page-sherwood-park .hero-content,
body.page-st-albert .hero-content,
body.page-fort-saskatchewan .hero-content,
body.page-leduc .hero-content,
body.page-spruce-grove .hero-content,
body.page-beaumont .hero-content,
body.page-stony-plain .hero-content {
        display: block;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
}

/* Keep feature tags/buttons centered for those pages */
body.page-cargo .hero-features,
body.page-edmonton .hero-features,
body.page-sherwood-park .hero-features,
body.page-st-albert .hero-features,
body.page-fort-saskatchewan .hero-features,
body.page-leduc .hero-features,
body.page-spruce-grove .hero-features,
body.page-beaumont .hero-features,
body.page-stony-plain .hero-features {
        justify-content: center;
}

body.page-cargo .hero-buttons,
body.page-edmonton .hero-buttons,
body.page-sherwood-park .hero-buttons,
body.page-st-albert .hero-buttons,
body.page-fort-saskatchewan .hero-buttons,
body.page-leduc .hero-buttons,
body.page-spruce-grove .hero-buttons,
body.page-beaumont .hero-buttons,
body.page-stony-plain .hero-buttons {
        justify-content: center;
}

/* ================= ABOUT PAGE ================= */

.about-hero {
  position: relative;
  background: url("images/about-hero-bg.jpg") center / cover no-repeat;
  padding: 5rem 1.5rem;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
  color: #fff;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(55, 65, 81, 0.75);
}

.about-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.about-hero-text p {
  font-size: 1.1rem;
  max-width: 520px;
}

.about-hero-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* About content */

.about-content {
  padding: 4rem 1.5rem;
}

.about-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  margin-top: 2.5rem;
}

.about-list {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.about-list li {
  margin-bottom: 0.6rem;
}

.about-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile */

@media (max-width: 768px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-image img {
    margin: 0 auto;
  }

  .about-hero-text p {
    margin: 0 auto;
  }

  .about-cta {
    justify-content: center;
  }
}
