@media (max-width: 900px) {
    .nav-menu.nav-open a {
        color: #111 !important;
        font-size: 1.25rem;
        font-weight: 700;
        padding: 18px 0;
        width: 100%;
        display: block;
        border-radius: 0;
        background: none;
        text-align: left;
    }
}
/* Mobile Navigation Overlay and Toggle */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    transition: opacity 0.3s;
    opacity: 0;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}
/* Default: nav always visible on desktop */
.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}
.nav-menu.nav-open {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px 24px 24px;
}
body.no-scroll {
    overflow: hidden;
}
@media (min-width: 901px) {
    .nav-overlay { display: none !important; }
    .nav-menu.nav-open {
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
        padding: 0;
        background: none;
        z-index: auto;
        transform: none;
    }
}
.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    margin-right: 8px;
}
/* Footer Section Styles */
.site-footer {
    width: 100%;
    margin-top: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-top {
    background: #111;
    color: #fff;
    padding: 48px 0 0 0;
}
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}
.footer-logo-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.footer-logo-icon {
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 900;
}
.footer-logo-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.footer-emergency-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
}
.footer-emergency-label {
    font-size: 0.85rem;
    color: #bbb;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.footer-emergency-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 22px;
}
.footer-emergency-icon {
    font-size: 1.3rem;
    color: #111;
}
.footer-emergency-number {
    font-size: 1.3rem;
    color: #111;
    font-weight: 700;
}
.footer-divider {
    border: none;
    border-top: 1.5px solid #222;
    margin: 32px 0 32px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.footer-locations-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 32px 48px;
    gap: 32px;
}
.footer-location {
    flex: 1 1 0;
    min-width: 220px;
    max-width: 400px;
}
.footer-location-label {
    font-size: 0.85rem;
    color: #bbb;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-location-address {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}
.footer-location-phone {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-location-phone-icon {
    font-size: 1.2rem;
    color: var(--accent);
}
.footer-bottom {
    background: #f9f7f4;
    color: #111;
    padding: 48px 0 0 0;
    border-radius: 18px 18px 0 0;
    margin-top: 0;
}
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 0 48px;
    gap: 32px;
}
.footer-contact-block {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}
.footer-contact-text {
    font-size: 1.18rem;
    color: #222;
    font-weight: 400;
    margin-bottom: 12px;
}
.footer-contact-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact-btn:hover {
    background: var(--accent);
    color: #111;
}
.footer-contact-btn-icon {
    color: var(--accent);
    font-size: 1.3rem;
}
.footer-links-col {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.footer-links-label {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-links-col a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 2px;
    transition: color 0.2s;
}
.footer-links-col a:hover {
    color: var(--accent);
}
.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px 48px 18px 48px;
    font-size: 1rem;
    color: #222;
    gap: 18px;
}
.footer-copyright-left {
    flex: 1 1 0;
    color: #222;
    font-size: 0.98rem;
}
.footer-copyright-center a {
    color: #222;
    text-decoration: none;
    font-size: 0.98rem;
    margin: 0 8px;
    transition: color 0.2s;
}
.footer-copyright-center a:hover {
    color: var(--accent);
}
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-social-icon {
    font-size: 1.25rem;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social-icon:hover {
    color: var(--accent);
}
@media (max-width: 1100px) {
    .footer-top-row, .footer-locations-row, .footer-bottom-row, .footer-copyright-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 18px 0 18px;
    }
    .footer-bottom-row {
        gap: 32px;
    }
}
/* Animation for Hero CTA Section */
.hero-cta-container {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpHeroCTA 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}

@keyframes fadeInUpHeroCTA {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hero CTA Section Styles */
.hero-cta-section {
    background: #f9f7f4;
    padding: 120px 0 120px 0;
    width: 100%;
}
.hero-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-cta-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 32px;
}
.hero-cta-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: 1px;
    line-height: 1.1;
}
.hero-cta-highlight {
    color: var(--accent);
    font-size: 1.1em;
    font-weight: 900;
    letter-spacing: 1px;
}
.hero-cta-subtitle {
    font-size: 1.15rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}
.hero-cta-btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-cta-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 22px 54px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 0 80px 0 rgba(var(--accent-rgb), 0.33), 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-cta-btn:hover {
    background: var(--accent);
    color: #111;
    box-shadow: 0 0 120px 0 rgba(var(--accent-rgb), 0.60), 0 2px 16px rgba(0,0,0,0.12);
}
.hero-cta-btn-icon {
    color: var(--accent);
    font-size: 1.5rem;
}
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-menu.nav-open {
        display: flex;
    }
    .hero-cta-title {
        font-size: 2.1rem;
    }
    .hero-cta-section {
        padding: 60px 0 60px 0;
    }
    .hero-cta-btn {
        padding: 18px 28px;
        font-size: 1.08rem;
        min-height: 54px;
        border-radius: 14px;
    }
    .hero-cta-btn-row {
        flex-direction: column;
        gap: 18px;
    }
    .hero-cta-subtitle {
        font-size: 1.08rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
    body, html {
        font-size: 17px;
    }
    .container {
        width: 98%;
        padding: 0 2vw;
    }
    .main-header {
        padding: 12px 0 0 0;
    }
    .header-flex.nav-balance {
        min-height: 56px;
        padding: 0 6px;
    }
    .logo {
        margin-right: 10px;
    }
    .nav-menu.nav-open {
        width: 96vw;
        max-width: none;
        padding: 32px 10px 18px 10px;
    }
    .footer-top-row, .footer-locations-row, .footer-bottom-row, .footer-copyright-row {
        padding: 0 6px 0 6px;
        gap: 12px;
    }
    .footer-logo-row {
        font-size: 1.2rem;
        gap: 8px;
    }
    .footer-logo-icon {
        font-size: 1.5rem;
    }
    .footer-logo-text {
        font-size: 1.1rem;
    }
    .footer-emergency-contact {
        font-size: 1.1rem;
        padding: 10px 12px;
        border-radius: 12px;
        min-height: 48px;
    }
    .footer-emergency-icon {
        font-size: 1.1rem;
    }
    .footer-emergency-number {
        font-size: 1.1rem;
    }
    .footer-location-label, .footer-emergency-label, .footer-links-label {
        font-size: 0.95rem;
    }
    .footer-location-address {
        font-size: 1rem;
    }
    .footer-location-phone {
        font-size: 1rem;
        gap: 6px;
    }
    .footer-location-phone-icon {
        font-size: 1rem;
    }
    .footer-contact-btn, .footer-contact-block .footer-contact-btn {
        padding: 16px 18px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
    }
    .footer-links-col a {
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding-left: 2px;
    }
    .footer-copyright-row {
        font-size: 0.95rem;
        padding: 18px 6px 10px 6px;
    }
    .footer-social-row {
        gap: 10px;
    }
    .footer-social-icon {
        font-size: 1.1rem;
    }
    .footer-divider {
        margin: 18px 0 18px 0;
    }
    .footer-location {
        min-width: 0;
        max-width: 100vw;
    }
    .footer-contact-block {
        min-width: 0;
        max-width: 100vw;
        gap: 12px;
    }
}
/* Animation for Schedule a Service Section */
.schedule-image-card, .schedule-form-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpSchedule 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}

@keyframes fadeInUpSchedule {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Schedule a Service Section */
.schedule-section {
    background: #111;
    padding: 0 0 100px 0;
    margin-top: 48px;
}
.schedule-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}
.schedule-image-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.schedule-image-card {
    width: 520px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #eee;
}
.schedule-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.schedule-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 16px 18px 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.schedule-badge-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}
.schedule-badge-text {
    font-size: 1rem;
    color: #222;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}
.schedule-form-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.schedule-form-card {
    background: #222;
    border-radius: 18px 48px 18px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 48px 38px 38px 38px;
    width: 100%;
    max-width: 520px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.schedule-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.schedule-desc {
    font-size: 1.08rem;
    color: #eee;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 520px;
}
.schedule-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.schedule-form-row {
    display: flex;
    gap: 18px;
    width: 100%;
}
.schedule-form-group {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.schedule-form-group label {
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.schedule-form-group input,
.schedule-form-group textarea {
    background: #181818;
    color: #fff;
    border: 1.5px solid #333;
    border-radius: 7px;
    padding: 16px 18px;
    font-size: 1.08rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 0;
    outline: none;
    transition: box-shadow 0.2s, border 0.2s;
    width: 100%;
}
.schedule-form-group input:focus,
.schedule-form-group textarea:focus {
    box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.26);
    border: 1.5px solid var(--accent);
}
.schedule-form-message {
    width: 100%;
}
@media (max-width: 700px) {
    .schedule-form-row {
        flex-direction: column;
        gap: 8px;
    }
    .schedule-form-group {
        width: 100%;
    }
}
.schedule-form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.schedule-submit-btn {
    background: var(--accent);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 16px 38px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.schedule-submit-btn:hover {
    background: #fff;
    color: #111;
    border: 2px solid var(--accent);
}
.schedule-submit-icon {
    color: var(--accent);
    font-size: 1.3rem;
}
@media (max-width: 1100px) {
    .schedule-container {
        flex-direction: column;
        gap: 32px;
    }
    .schedule-image-col, .schedule-form-col {
        max-width: 100vw;
        min-width: 0;
        padding-top: 0;
    }
    .schedule-image-card {
        width: 100vw;
        max-width: 520px;
        height: 320px;
    }
    .schedule-form-card {
        max-width: 100vw;
        padding: 32px 18px 18px 18px;
    }
    .schedule-title {
        font-size: 1.5rem;
    }
}
/* FAQ Section Styles */
.faq-section {
    background: #fff;
    padding: 0 0 100px 0;
    margin-top: 0;
}
.faq-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-left-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
}
.faq-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.faq-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #111;
    line-height: 1.08;
}
.faq-desc {
    font-size: 1rem;
    color: #444;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 520px;
}
.faq-contact-link {
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
.faq-card {
    background: #f7f5f3;
    border-radius: 18px 48px 18px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 38px 38px 38px;
    min-width: 320px;
    max-width: 420px;
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
    margin-bottom: 32px;
}
.faq-card-icon {
    font-size: 2.5rem;
    color: #111;
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    border: 2px solid #eee;
}
.faq-card-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.faq-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}
.faq-card-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
}
.faq-card-btn:hover {
    background: var(--accent);
    color: #111;
}
.faq-card-corner {
    position: absolute;
    top: -18px;
    right: -18px;
    background: var(--accent);
    color: #111;
    font-size: 2rem;
    border-radius: 0 18px 0 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.faq-right-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
}
.faq-accordion {
    width: 100%;
}
.faq-item {
    border-bottom: 1.5px solid #eee;
    margin-bottom: 0;
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    padding: 32px 0 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-arrow {
    background: #f5f3f1;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #222;
    margin-left: 18px;
    transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.active .faq-arrow {
    background: var(--accent);
    color: #111;
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    font-size: 0.98rem;
    color: #444;
    padding: 0 0 32px 0;
    line-height: 1.6;
    max-width: 90%;
}
.faq-item.active .faq-answer {
    display: block;
}
@media (max-width: 1100px) {
    .faq-container {
        flex-direction: column;
        gap: 32px;
    }
    .faq-left-col, .faq-right-col {
        max-width: 100vw;
        min-width: 0;
        padding-top: 0;
    }
    .faq-title {
        font-size: 2.1rem;
    }
    .faq-question {
        font-size: 1.2rem;
        padding: 18px 0 18px 0;
    }
}
.modern-u-frame {
    /* ...existing styles... */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpUCard 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}

@keyframes fadeInUpUCard {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Modern U-shaped Image Frame */
.modern-u-frame {
        width: 520px;
        height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        position: relative;
        margin: 0 auto;
}
.modern-u-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        /* U-shape using clip-path */
        clip-path: path('M 0 0 H 100% V 65% C 100% 90% 80% 100% 50% 100% C 20% 100% 0 90% 0 65% Z M 15% 0 A 15% 15% 0 0 1 15% 30% V 65% C 15% 80% 30% 90% 50% 90% C 70% 90% 85% 80% 85% 65% V 30% A 15% 15% 0 0 1 85% 0 Z');
        /* Fallback for browsers that don't support path() */
        /* Large U with rounded bottom and top cutouts */
        /*clip-path: ellipse(48% 45% at 50% 60%);*/
        background: #fff;
        box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}
@supports not (clip-path: path('')) {
    .modern-u-img {
        clip-path: ellipse(48% 45% at 50% 60%);
    }
}
@media (max-width: 1100px) {
        .modern-u-frame {
                width: 90vw;
                max-width: 520px;
                height: 260px;
        }
}
/* Careers Section */
.careers-section {
    background: #fff;
    padding: 0 0 100px 0;
}
.careers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}
.careers-uimage-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.careers-uimage-card {
    width: 520px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.careers-uimage-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.careers-content-col {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
}
.careers-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.careers-title {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #111;
    line-height: 1.08;
}
.careers-title-accent {
    color: var(--accent);
}
.careers-desc {
    font-size: 1.15rem;
    color: #444;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 520px;
}
.careers-divider {
    border: none;
    border-top: 1.5px solid #eee;
    margin: 24px 0 24px 0;
    width: 100%;
}
.careers-award-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.careers-award-icon {
    color: var(--accent);
    font-size: 2rem;
    margin-right: 2px;
}
.careers-award-title {
    font-weight: 700;
    font-size: 1.08rem;
    color: #222;
}
.careers-award-sub {
    font-size: 0.98rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.careers-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 38px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
}
.careers-btn:hover {
    background: var(--accent);
    color: #111;
}
@media (max-width: 1100px) {
    .careers-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .careers-uimage-col, .careers-content-col {
        max-width: 100vw;
        min-width: 0;
        padding-top: 0;
    }
    .careers-uimage-card {
        width: 90vw;
        max-width: 520px;
        height: 260px;
    }
}
/* Testimonials Section */
.testimonials-section {
    background: #f7f5f3;
    padding: 0 0 120px 0;
}
.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}
.testimonials-left {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 600px;
    padding-top: 60px;
}
.testimonials-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.testimonials-title {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #111;
    line-height: 1.08;
}
.testimonials-title-accent {
    color: var(--accent);
}
.testimonials-divider {
    border: none;
    border-top: 1.5px solid #ccc;
    margin: 32px 0 24px 0;
}
.testimonials-rating-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 38px;
}
.testimonials-rating-score {
    font-size: 2.7rem;
    font-weight: 800;
    color: #111;
}
.testimonials-rating-stars {
    color: #111;
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.testimonials-rating-reviews {
    color: #444;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.testimonials-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 38px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    margin-top: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
}
.testimonials-btn:hover {
    background: var(--accent);
    color: #111;
}
.testimonials-right {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 30px;
}
.testimonials-card {
    background: #fff;
    border-radius: 22px 60px 22px 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 54px 48px 38px 48px;
    min-width: 420px;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.testimonials-card-corner {
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 60px;
    background: var(--accent);
    border-radius: 0 22px 0 0;
    z-index: 1;
}
.testimonials-quote-icon {
    color: var(--accent);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    line-height: 1;
}
.testimonials-text {
    font-size: 1.25rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}
.testimonials-user-row {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.testimonials-user-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.testimonials-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.testimonials-user-name {
    font-weight: 700;
    font-size: 1.08rem;
    color: #111;
}
.testimonials-user-location {
    font-size: 0.98rem;
    color: #444;
}
.testimonials-arrows {
    margin-left: auto;
    display: flex;
    gap: 12px;
}
.testimonials-arrow {
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 1.5rem;
    color: #222;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
}
.testimonials-arrow:hover {
    border: 1.5px solid var(--accent);
    background: #f7f5f3;
}
@media (max-width: 1100px) {
    .testimonials-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .testimonials-right, .testimonials-left {
        max-width: 100vw;
        min-width: 0;
        padding-top: 0;
    }
    .testimonials-card {
        min-width: 0;
        max-width: 100vw;
        padding: 32px 18px 18px 18px;
    }
}
/* Project Card Hover Overlay Animation */
.project-hover-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17,17,17,0.92) 70%, rgba(17,17,17,0.0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
    border-radius: 24px;
    z-index: 3;
}
.project-card:hover .project-hover-overlay {
    opacity: 1;
    pointer-events: auto;
}
.project-hover-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 32px;
    background: var(--accent);
    padding: 10px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    opacity: 0;
    transform: translateY(30px);
    animation: projectTitleIn 0.5s cubic-bezier(.4,0,.2,1) 0.1s forwards;
}
.project-card:hover .project-hover-title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s, transform 0.4s;
}
@keyframes projectTitleIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Featured Projects Section */
.projects-section {
    background: #111;
    color: #fff;
    padding: 80px 0 120px 0;
}
.projects-header {
    text-align: center;
    margin-bottom: 48px;
}
.projects-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.projects-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #fff;
}
.projects-sub {
    font-size: 1.08rem;
    color: #e0e0e0;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.projects-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #fff;
    transition: background 0.3s, color 0.3s, border 0.3s;
    margin-bottom: 10px;
}
.projects-btn:hover {
    background: var(--accent);
    color: #111;
    border: 2px solid var(--accent);
}
.projects-cards-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.project-card {
    background: #222;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    width: 340px;
    height: 340px;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}
.project-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.20);
    border: 4px solid var(--accent);
    z-index: 2;
    transition: border 0.3s, box-shadow 0.3s, transform 0.25s cubic-bezier(.4,0,.2,1);
}
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-card-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(17,17,17,0.92) 70%, rgba(17,17,17,0.0) 100%);
    padding: 0 0 28px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
    min-height: 90px;
}
.project-card-info {
    padding-left: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.project-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.project-card-location {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 400;
}
.project-card-iconbox {
    background: var(--accent);
    border-radius: 0 0 0 18px;
    padding: 10px 18px 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    margin-bottom: -6px;
}
.project-card-icon {
    color: #fff;
    font-size: 1.5rem;
}
@media (max-width: 1200px) {
    .projects-cards-row {
        gap: 24px;
    }
    .project-card {
        width: 270px;
        height: 270px;
    }
}
@media (max-width: 900px) {
    .projects-header {
        margin-bottom: 24px;
    }
    .projects-title {
        font-size: 1.5rem;
    }
    .project-card {
        width: 90vw;
        max-width: 340px;
        height: 200px;
    }
}
.chooseus-feature-block {
    /* ...existing styles... */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpChooseUs 1.1s cubic-bezier(.4,0,.2,1) 0.6s forwards;
}

@keyframes fadeInUpChooseUs {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.chooseus-card {
    /* ...existing styles... */
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInChooseUs 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}

@keyframes slideInChooseUs {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Why Choose Us Section */
.chooseus-section {
    background: #fff;
    padding: 0 0 80px 0;
}
.chooseus-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.chooseus-card {
    background: var(--accent);
    color: #111;
    border-radius: 18px 38px 18px 18px;
    min-width: 370px;
    max-width: 470px;
    padding: 48px 38px 38px 38px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.chooseus-card::before {
    content: '';
    position: absolute;
    top: -32px;
    right: -38px;
    width: 110px;
    height: 70px;
    background: var(--accent);
    border-radius: 0 38px 0 0;
    transform: rotate(22deg);
    z-index: 1;
}
.chooseus-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 28px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.chooseus-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #111;
    position: relative;
    z-index: 2;
    line-height: 1.08;
}
.chooseus-sub {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 28px;
    color: #111;
    position: relative;
    z-index: 2;
}
.chooseus-badges-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.chooseus-badge {
    background: #fff;
    color: #111;
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 0.92rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.chooseus-badge-icon {
    color: #111;
    font-size: 1.1rem;
}
.chooseus-features {
    display: flex;
    gap: 60px;
    flex: 1 1 0;
    width: 100%;
    justify-content: space-between;
}
.chooseus-features-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1 1 0;
    min-width: 260px;
}
.chooseus-feature-block {
    margin-bottom: 0;
}
.chooseus-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.chooseus-feature-desc {
    font-size: 0.98rem;
    color: #444;
    font-weight: 400;
    line-height: 1.5;
}
.chooseus-divider {
    border-bottom: 1.5px solid #eee;
    margin: 32px 0;
}
.chooseus-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.chooseus-cta-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
}
.chooseus-cta-btn:hover {
    background: var(--accent);
    color: #111;
}
.chooseus-cta-btn-icon {
    color: var(--accent);
    font-size: 1.3rem;
}
@media (max-width: 1100px) {
    .chooseus-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .chooseus-features {
        flex-direction: column;
        gap: 32px;
    }
    .chooseus-features-col {
        flex-direction: row;
        gap: 32px;
        min-width: 0;
    }
    .chooseus-feature-block {
        flex: 1 1 0;
    }
}
@media (max-width: 800px) {
    .chooseus-card {
        min-width: 0;
        max-width: 100vw;
        padding: 28px 12px 18px 12px;
    }
    .chooseus-title {
        font-size: 1.5rem;
    }
    .chooseus-features-col {
        flex-direction: column;
        gap: 18px;
    }
    .chooseus-feature-title {
        font-size: 1.1rem;
    }
    .chooseus-feature-desc {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .chooseus-badges-row {
        flex-wrap: wrap;
    }
    .chooseus-badge {
        font-size: 0.88rem;
    }
}
/* Animation for Consultation Card */
.consultation-card {
    /* ...existing styles... */
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInConsultation 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}

@keyframes slideInConsultation {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Free Consultation Section */
.consultation-section {
    background: #fff;
    padding: 0 0 60px 0;
}
.consultation-bg {
    background: url('need.jpeg') center center/cover no-repeat;
    border-radius: 20px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0 8px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    overflow: hidden;
}
.consultation-card {
    background: #fff;
    border-radius: 18px 18px 18px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 48px 38px 38px 38px;
    max-width: 420px;
    margin-left: 60px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.consultation-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: var(--accent);
    border-radius: 0 18px 0 0;
    z-index: 1;
}
.consultation-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
    line-height: 1.15;
}
.consultation-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
    z-index: 2;
}
.consultation-btn:hover {
    background: var(--accent);
    color: #111;
}
.consultation-btn-icon {
    color: var(--accent);
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .consultation-bg {
        min-height: 320px;
    }
    .consultation-card {
        margin-left: 24px;
        padding: 32px 18px 28px 18px;
        max-width: 90vw;
    }
    .consultation-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .consultation-bg {
        min-height: 220px;
    }
    .consultation-card {
        margin-left: 0;
        margin-right: 0;
        margin-top: 18px;
        margin-bottom: 18px;
        padding: 18px 8px 18px 8px;
        border-radius: 12px 12px 12px 28px;
    }
    .consultation-title {
        font-size: 1.05rem;
    }
}
/* How We Work Section */
.how-we-work-section {
    background: #fff;
    color: #222;
    padding: 90px 0 70px 0;
    text-align: center;
}
.hww-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.hww-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 48px;
    color: #111;
}
.hww-cards-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hww-card {
    background: #f5f3f1;
    border-radius: 22px 22px 22px 60px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 38px 32px 38px 32px;
    min-width: 270px;
    max-width: 320px;
    flex: 1 1 270px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}
.hww-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.16);
}
.hww-card-corner {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
}
.hww-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}
.hww-card-desc {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 32px;
    min-height: 60px;
}
.hww-card-icon {
    color: #d1cfcf;
    font-size: 1.5rem;
    position: absolute;
    bottom: 18px;
    right: 28px;
}
.hww-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.hww-quote-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 38px;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
}
.hww-quote-btn:hover {
    background: var(--accent);
    color: #111;
}
.hww-btn-icon {
    color: var(--accent);
    font-size: 1.3rem;
}
.hww-or {
    color: #888;
    font-size: 1.08rem;
    font-weight: 500;
}
.hww-call-box {
    background: #f5f3f1;
    color: #222;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hww-call-icon {
    color: var(--accent);
    font-size: 1.3rem;
}
@media (max-width: 1100px) {
    .hww-cards-row {
        gap: 18px;
    }
    .hww-card {
        min-width: 220px;
        max-width: 100%;
        padding: 28px 18px 28px 18px;
    }
}
@media (max-width: 800px) {
    .how-we-work-section {
        padding: 60px 0 40px 0;
    }
    .hww-title {
        font-size: 2.1rem;
    }
    .hww-cards-row {
        flex-direction: column;
        align-items: center;
    }
    .hww-card {
        width: 100%;
        min-width: 0;
        margin-bottom: 18px;
    }
    .hww-actions-row {
        flex-direction: column;
        gap: 10px;
    }
}
/* style.css - Volt Edge Responsive Website */

:root {
    --primary: #f4c400;
    --dark: #111;
    --light: #fff;
    --accent: #f4c400;
    --accent-rgb: 244, 196, 0;
    --header-bg: #0E0F11;
    --btn-bg: #111;
    --btn-hover: #f4c400;
    --btn-light: #fff;
    --btn-light-hover: #f2f2f2;
    --iso-bg: #fff;
    --iso-accent: #f4c400;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--light);
    background: var(--dark);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.main-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    background: var(--header-bg);
    padding: 24px 0 0 0;
}

/* Refactored header flex for balanced nav */
.header-flex.nav-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: 70px;
    position: relative;
}
.logo {
    flex: 0 0 auto;
    margin-right: 24px;
}
.nav-menu.nav-centered {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    position: relative;
    z-index: 2;
}
.nav-menu.nav-centered a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 8px 18px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}
.nav-menu.nav-centered a:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.07);
}
.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 24px;
}

.logo {

    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    /* Overridden by .nav-centered for balanced nav */
    display: none;
}
.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color var(--transition);
    position: relative;
}
.nav-menu a:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.call-box {
    display: flex;
    align-items: center;
    background: var(--light);
    color: var(--dark);
    border-radius: 8px 8px 8px 8px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-right: 8px;
    transition: box-shadow var(--transition);
}
.call-box:hover {
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.14);
}
.call-icon {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 8px;
}

.contact-btn {
    background: var(--btn-bg);
    color: var(--light);
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: backgroundvar(--transition), color var(--transition);
}
.contact-btn:hover {
    background: var(--btn-hover);
    color: var(--dark);
}
.contact-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 1200;
}
.menu-btn .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 22px;
    position: relative;
}
.menu-btn .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #222;
    border-radius: 2px;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.menu-btn[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}
.menu-btn[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 901px) {
    .menu-btn {
        display: none;
    }
}
@media (max-width: 900px) {
    .nav-menu {
        display: none !important;
    }
    .nav-menu.nav-open {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 82vw;
        max-width: 320px;
        position: fixed;
        top: 14px;
        right: 14px;
        height: calc(100vh - 36px);
        background: #fff;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18), -2px 0 16px rgba(0,0,0,0.10);
        z-index: 1100;
        padding: 38px 22px 28px 22px;
        border-radius: 18px 0 18px 18px;
        animation: navSlideIn 0.35s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
    }
    @keyframes navSlideIn {
        from { transform: translateX(120px) scale(0.98); opacity: 0; }
        to { transform: translateX(0) scale(1); opacity: 1; }
    }
    .nav-menu.nav-open a {
        color: #111 !important;
        font-size: 1.18rem;
        font-weight: 700;
        padding: 14px 0 14px 0;
        width: 100%;
        display: block;
        border-radius: 8px;
        background: none;
        text-align: left;
        margin-bottom: 6px;
        transition: background 0.2s, color 0.2s;
    }
    .nav-menu.nav-open a:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
        background: #f7f7f7;
    }
    .nav-menu.nav-open a:hover {
        background: #f7f7f7;
        color: var(--accent) !important;
    }
    .menu-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        touch-action: manipulation;
    }
    .menu-btn[aria-expanded="true"] {
        position: fixed;
        top: 28px;
        right: 32px;
        z-index: 1201;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .menu-btn[aria-expanded="true"] .bar {
        background: #111;
    }
}

@media (max-width: 600px) {
    .how-we-work-section {
        padding: 54px 0 34px 0;
    }
    .hww-title {
        font-size: 1.75rem;
        margin-bottom: 26px;
    }
    .hww-card {
        padding: 24px 18px 26px 18px;
        border-radius: 18px 18px 18px 50px;
    }
    .hww-card-title {
        font-size: 1.25rem;
    }
    .hww-card-desc {
        font-size: 1rem;
        margin-bottom: 26px;
        min-height: 0;
    }
    .hww-quote-btn {
        width: min(92vw, 380px);
        justify-content: center;
        padding: 16px 22px;
    }
    .hww-call-box {
        width: min(92vw, 380px);
        justify-content: center;
        padding: 12px 18px;
    }
}
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transform-origin: center;
    animation: heroSlowZoom 22s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroSlowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg {
        animation: none;
        transform: none;
    }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 70%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 700px;
    padding-top: 120px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 36px;
}
.hero-buttons {
    display: flex;
    gap: 18px;
}
.hero-btn {
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-btn.primary {
    background: var(--btn-bg);
    color: var(--light);
}
.hero-btn.primary:hover {
    background: var(--btn-hover);
    color: var(--light);
}
.hero-btn.secondary {
    background: var(--btn-light);
    color: var(--dark);
    border: 2px solid var(--btn-light);
}
.hero-btn.secondary:hover {
    background: var(--btn-light-hover);
    color: var(--dark);
}
.btn-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.iso-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: var(--iso-bg);
    color: var(--dark);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    z-index: 4;
    min-width: 220px;
}
.iso-content {
    padding: 18px 24px 18px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.iso-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.iso-sub {
    display: none;
}
.iso-accent {
    width: 24px;
    background: var(--iso-accent);
    border-radius: 0 0 18px 0;
}

/* Responsive Styles */

/* Features and About Section */

/* Services Section */
.services-section {
    background: #0E0F11;
    color: #fff;
    padding: 0 0 80px 0;
}
.services-header {
    text-align: center;
    margin-bottom: 36px;
    padding-top: 60px;
}
.services-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.services-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}
.service-card {
    background: #fff;
    color: #111;
    border-radius: 18px 18px 18px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 260px;
    position: relative;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.16);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    background: #eee;
}
.service-caption {
    font-size: 1.13rem;
    font-weight: 600;
    padding: 18px 18px 16px 18px;
    border-radius: 0 0 18px 18px;
    background: #fff;
    color: #111;
    margin-top: auto;
    text-align: left;
}

/* Highlight 24/7 Card */
.highlight-card {
    background: #fff;
    color: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    border-radius: 18px 18px 18px 40px;
    min-height: 260px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 0 0 0 0;
    overflow: hidden;
}
.service-icon-box {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.14);
    font-size: 1.6rem;
    color: #111;
    z-index: 2;
}
.highlight-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 48px; height: 48px;
    background: var(--accent);
    border-radius: 0 18px 0 0;
    z-index: 1;
}
.service-24-7 {
    position: relative;
    z-index: 2;
    padding: 60px 0 0 24px;
    margin-bottom: 24px;
}
.service-24-7-main {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}
.service-24-7-sub {
    font-size: 1.13rem;
    color: #222;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
    }
}
@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 8vw;
    }
    .service-card, .highlight-card {
        min-height: 180px;
    }
    .service-img {
        height: 120px;
    }
    .service-24-7 {
        padding: 36px 0 0 18px;
        margin-bottom: 18px;
    }
    .service-24-7-main {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 0 0 54px 0;
    }
    .services-header {
        padding-top: 38px;
        margin-bottom: 22px;
    }
    .services-title {
        font-size: 1.55rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 0 4vw;
    }
    .service-card, .highlight-card {
        min-height: 0;
        border-radius: 16px 16px 16px 34px;
    }
    .service-img {
        height: 96px;
        border-radius: 16px 16px 0 0;
    }
    .service-caption {
        font-size: 0.98rem;
        padding: 12px 12px 12px 12px;
    }
    .service-icon-box {
        top: 14px;
        left: 14px;
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }
    .service-24-7 {
        padding: 44px 0 0 14px;
        margin-bottom: 16px;
    }
    .service-24-7-main {
        font-size: 1.45rem;
        margin-bottom: 6px;
    }
    .service-24-7-sub {
        font-size: 0.98rem;
    }
}

@media (max-width: 420px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 4vw;
    }
    .service-img {
        height: 118px;
    }
}

@media (max-width: 500px) {
    .services-header {
        padding-top: 30px;
    }
    .services-title {
        font-size: 1.1rem;
    }
    .services-grid {
        padding: 0 2vw;
    }
}
.features-about-section {
    background: #fff;
    color: #111;
    padding: 0 0 60px 0;
}
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid #eee;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 40px 0;
}
.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    text-align: center;
    min-height: 90px;
}
.feature-icon {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #111;
}
.feature-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 2px;
}
.feature-desc {
    font-size: 1rem;
    color: #444;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 0 0;
    align-items: center;
}
.about-image-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0 30px;
}
.about-image-card {
    background: #fff;
    border-radius: 20px 20px 20px 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 340px;
    width: 100%;
    position: relative;
    margin-bottom: 18px;
}
.about-img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.about-caption {
    background: #fff;
    border-radius: 0 0 18px 18px;
    padding: 18px 18px 12px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
    margin-top: -8px;
}
.about-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.about-role {
    font-size: 0.98rem;
    color: #444;
}
.about-content-col {
    padding: 0 40px 0 60px;
}
.about-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
}
.about-desc {
    font-size: 1.13rem;
    color: #222;
    margin-bottom: 36px;
    line-height: 1.6;
}
.about-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.about-btn:hover {
    background: var(--accent);
    color: #111;
}

@media (max-width: 1024px) {
    .features-row, .about-row {
        max-width: 98vw;
    }
    .about-content-col {
        padding: 0 20px 0 20px;
    }
    .about-title {
        font-size: 1.7rem;
    }
}
@media (max-width: 900px) {
    .features-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
        border-bottom: none;
    }
    .about-row {
        grid-template-columns: 1fr;
        padding: 40px 0 0 0;
    }
    .about-image-col {
        justify-content: center;
        padding: 0;
        margin-bottom: 18px;
    }
    .about-content-col {
        padding: 0 10vw;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .features-row {
        grid-template-columns: 1fr;
        row-gap: 24px;
        padding: 36px 0 18px 0;
    }
    .about-row {
        padding: 24px 0 0 0;
    }
    .about-content-col {
        padding: 0 4vw;
    }
    .about-title {
        font-size: 1.1rem;
    }
}
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.7rem;
    }
    .iso-badge {
        bottom: 18px;
        right: 18px;
        min-width: 170px;
    }
    .iso-content {
        padding: 12px 16px 12px 16px;
    }
    .header-flex.nav-balance {
        flex-direction: row;
        gap: 0;
    }
    .nav-menu.nav-centered {
        gap: 24px;
    }
    .logo {
        margin-right: 12px;
    }
    .header-actions {
        margin-left: 12px;
    }
}
@media (max-width: 768px) {
    .main-header {
        padding-top: 12px;
    }
    .header-flex.nav-balance {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .nav-menu.nav-centered {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        margin: 8px 0;
    }
    .logo {
        margin: 0 auto 0 0;
    }
    .header-actions {
        margin: 0 0 0 auto;
    }
    .hero-content {
        padding-top: 80px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .iso-badge {
        bottom: 10px;
        right: 10px;
        min-width: 120px;
    }
}
@media (max-width: 600px) {
    .container {
        width: 98%;
    }
    .main-header {
        padding-top: 6px;
    }
    .header-flex.nav-balance {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .nav-menu.nav-centered {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin: 6px 0;
    }
    .logo {
        margin: 0 auto 0 0;
    }
    .header-actions {
        margin: 0 0 0 auto;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .call-box {
        padding: 6px 12px;
        font-size: 0.95rem;
        margin-right: 0;
    }
    .contact-btn {
        padding: 9px 16px;
        font-size: 0.95rem;
    }
    .hero-content {
        padding-top: 60px;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .iso-badge {
        position: static;
        margin: 18px auto 0 auto;
        min-width: 100px;
    }
}

/* Utility classes */
::-webkit-scrollbar {
    width: 8px;
    background: #222;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 8px;
}

/* Comments for organization */
/*
- Header: .main-header, .header-flex, .logo, .nav-menu, .header-actions
- Hero: .hero-section, .hero-bg, .hero-overlay, .hero-content, .hero-buttons
- ISO Badge: .iso-badge, .iso-content, .iso-accent
- Responsive: @media queries
*/
