/* Global styles */
:root {
    color-scheme: dark;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #222;
    background: #f8f9fa;
    --site-logo-height: 128px;
    --navbar-offset: calc(var(--site-logo-height) + 0.1875rem);
    --navbar-brand-font-size: 3.375rem;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding-top: var(--navbar-offset);
    background: #f8f9fa;
}
img {
    max-width: 100%;
    height: auto;
}
.navbar-brand span {
    font-weight: 800;
    letter-spacing: .03em;
    font-size: var(--navbar-brand-font-size);
    color: #ff8c00;
}
.site-logo {
    height: var(--site-logo-height);
    width: auto;
}
.navbar > .container {
    padding-top: 0;
    padding-bottom: 0;
}
.navbar {
    --bs-navbar-padding-y: 0.0625rem;
}
.navbar-brand .site-logo {
    margin-right: 0.125rem;
}
.input-group-contact-phone .contact-cc-select {
    flex: 0 0 30%;
    width: 30%;
    max-width: 30%;
    min-width: 0;
}
.input-group-contact-phone > .form-control {
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
    min-width: 0;
}
.section-label {
    display: inline-block;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .9rem;
    margin-bottom: 1rem;
}
.home_page .page_name_text {
    font-size: 2.25rem;
}
.section-title {
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 700;
}
.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-offset));
    overflow: hidden;
    background: #000;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.45);
}
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 30, 71, .65), rgba(0, 0, 0, .75));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.hero .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: #fcc346;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 1.7rem;
}
.hero h1 {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: 1.05;
}
.hero-card {
    background: rgba(255, 255, 255, .95);
}
.feature-card, .service-card, .contact-info, .contact-actions-card, form {
    transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover, .service-card:hover, .contact-info:hover, .contact-actions-card:hover, form:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, .08);
}
.service-icon,
.tech-icon {
    max-height: 72px;
}
.service-card h5,
.feature-card h5 {
    font-weight: 700;
    margin-bottom: .75rem;
}
.contact-info,
.contact-actions-card {
    border: 1px solid rgba(0,0,0,.05);
}
@media (min-width: 992px) {
    .contact-two-col .contact-info {
        padding: 1.25rem 1.35rem !important;
    }
    .contact-two-col .contact-info-thumb {
        max-height: 7.5rem;
        width: 100%;
        object-fit: cover;
        object-position: center 30%;
    }
}
.btn.email-button {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.btn.email-button:hover,
.btn.email-button:focus-visible {
    background-color: #e67e00;
    border-color: #e67e00;
    color: #fff;
}
.btn.email-button:link,
.btn.email-button:visited {
    color: #fff;
}
.btn.email-button svg {
    pointer-events: none;
}
.btn.email-button:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.4);
}
.quick-contact-email svg {
    pointer-events: none;
}
footer {
    background: #050608;
}
.quick-contact-float {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.28);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quick-contact-btn:hover {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
}
.quick-contact-call {
    background: #0d6efd;
}
.quick-contact-wa {
    background: #25d366;
}
.quick-contact-email {
    background: #ff8c00;
}
.quick-contact-email:hover {
    background: #e67e00;
}
.navbar-scrolled {
    background: rgba(13, 110, 253, .95) !important;
    transition: background .3s ease;
}
.price-display {
    display: inline-block;
    padding: 1.5rem 1.75rem;
    border-radius: 1.5rem;
    background: rgba(13, 110, 253, .08);
}
@media (max-width: 991px) {
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .service-card,
    .feature-card,
    .contact-info,
    .contact-actions-card,
    form {
        padding: 2rem;
    }
}
@media (max-width: 767px) {
    .hero {
        min-height: 70vh;
    }
    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }
    .hero .eyebrow {
        font-size: 1.5rem;
    }
    .hero-card {
        margin-top: 2rem;
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .section-label {
        letter-spacing: .15em;
    }
    .service-card,
    .feature-card,
    .contact-info,
    .contact-actions-card,
    form {
        padding: 1.75rem;
    }
    .service-icon,
    .tech-icon {
        max-height: 58px;
    }
    .price-display {
        padding: 1.25rem 1.5rem;
    }
}
@media (max-width: 575px) {
    :root {
        --site-logo-height: 80px;
        --navbar-offset: calc(var(--site-logo-height) + 0.1875rem);
    }
    .hero {
        min-height: 65vh;
    }
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero-card {
        display: none;
    }
    .navbar-brand span {
        font-size: 1.6875rem;
    }
    .section-label {
        font-size: .75rem;
        margin-bottom: .85rem;
    }
    .home_page .page_name_text {
        font-size: 2.25rem;
    }
    .price-display {
        width: 100%;
    }
}
