/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --accent: #ff6b00;
    --bg: #f7f9fc;
    --text: #0b1733
}

body {
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem
}

.header-bar {
    background: #fff;
    box-shadow: 0 12px 36px rgba(11, 23, 51, 0.12);
    border-radius: 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 12px 20px;
    max-width: 1100px;
    margin: 18px auto;
    position: relative;
    z-index: 60;
    backdrop-filter: blur(4px);
}

.brand {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.brand .logo {
    height: 42px;
    width: auto;
    display: block;
    border-radius: 4px
}

.brand h1 {
    font-size: 1.05rem;
    margin-bottom: 0
}

.brand .tag {
    font-size: 0.85rem;
    color: #355070
}

.main-nav {
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    padding: 0.4rem 0.6rem;
    border-radius: 4px
}

.main-nav a:hover {
    background: rgba(11, 23, 51, 0.04)
}

/* Active nav link styling */
.main-nav a.active {
    color: var(--accent);
    font-weight: 700;
    background: rgba(255, 107, 0, 0.06);
    box-shadow: 0 6px 18px rgba(11, 23, 51, 0.04);
}

.site-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(180deg, #e9f3ff 0%, #ffffff 100%)
}

.hero {
    min-height: 720px;
    position: relative;
    padding: 0;
    overflow: hidden
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 18s infinite linear
}

.hero .slide:nth-child(1) {
    animation-delay: 0s
}

.hero .slide:nth-child(2) {
    animation-delay: 6s
}

.hero .slide:nth-child(3) {
    animation-delay: 12s
}

.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 36, 62, 0.25), rgba(255, 255, 255, 0.08));
    z-index: 10
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 20
}

@keyframes heroFade {
    0% {
        opacity: 0
    }

    5% {
        opacity: 1
    }

    30% {
        opacity: 1
    }

    35% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.hero-copy h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(4, 18, 34, 0.45);
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(4, 18, 34, 0.32);
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    text-decoration: none
}

.btn-tracking {
    background: #1fa8ff
}

.services {
    padding: 2.25rem 0
}

.services h3 {
    margin-bottom: 1rem
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(11, 23, 51, 0.04)
}

.about {
    padding: 2rem 0
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --accent: #ff6b00;
    --accent-2: #1fa8ff;
    --bg: #f7f9fc;
    --text: #0b1733;
}

body {
    font-family: Inter, system-ui, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem
}

/* Header */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 200;
}

.header-bar {
    background: #fff;
    box-shadow: 0 10px 30px rgba(11, 23, 51, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 18px;
    max-width: 1100px;
    margin: 0 auto
}

.left-controls {
    width: 40px
}

/* Layout tweak: use a 3-column grid so nav centers between brand and actions */
.header-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    position: relative
}

.brand {
    position: static;
    left: auto;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: .75rem
}

.brand .logo {
    height: 44px
}

.actions {
    position: static;
    right: auto;
    z-index: 50
}

.left-controls {
    display: none;
    width: 0
}

@media(max-width:780px) {
    .header-bar {
        grid-template-columns: auto 1fr auto
    }

    .main-nav {
        display: none
    }

    .header-bar.open .main-nav {
        display: block;
        grid-column: 1/-1;
        margin-top: 8px
    }

    .actions {
        position: static
    }

    .brand {
        position: static
    }
}

.menu-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer
}

.brand {
    display: flex;
    gap: 0.75rem;
    align-items: center
}

.brand .logo {
    height: 42px;
    width: auto;
    display: block
}

.brand h1 {
    font-size: 1.05rem;
    margin: 0
}

.brand .tag {
    font-size: 0.85rem;
    color: #355070
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    padding: 0.4rem 0.6rem;
    border-radius: 6px
}

.main-nav a:hover {
    background: rgba(11, 23, 51, 0.04)
}

.actions {
    display: flex;
    justify-content: flex-end;
}

/* Footer styles */
.site-footer {
    background: #072b45;
    color: #ffffff;
    padding: 48px 0 18px;
}

.site-footer .container.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.site-footer .footer-col h4 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 16px;
}

.site-footer .about p {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    display: block;
    margin: 6px 0;
    text-decoration: none;
}

.footer-contact .contact-line {
    color: #ffffff;
    margin: 6px 0;
    font-size: 14px;
}

.footer-newsletter form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.footer-newsletter input[type="email"] {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.footer-newsletter button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 13px;
}

/* Ensure links and icons inside the footer are white */
.site-footer a {
    color: #ffffff;
}

.site-footer .footer-social a {
    color: #ffffff;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px
}

.footer-payments img {
    height: 26px;
    margin-right: 8px;
    opacity: .95
}

@media (max-width: 900px) {
    .site-footer .container.footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .site-footer .container.footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

.btn-tracking {
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(11, 23, 51, 0.08);
}

.btn-tracking::after {
    content: '➜';
    margin-left: 10px
}

/* Hero */
.hero {
    min-height: 720px;
    position: relative;
    padding: 0;
    overflow: hidden
}

/* Featured Services (moved from inline) */
.featured-services {
    position: relative;
    background-image: url('../images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 84px 0;
    font-family: inherit
}

.featured-services .overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 99, 164, 0.6)
}

.featured-services .fs-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.featured-services .eyebrow {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: 14px;
    margin-bottom: 6px
}

.featured-services h2 {
    font-size: 64px;
    text-align: center;
    margin: 0 0 34px;
    color: #fff;
    letter-spacing: 1px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start
}

.services-col {
    display: flex;
    flex-direction: column;
    gap: 26px
}

.service {
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.service .icon {
    flex: 0 0 56px;
    height: 56px;
    background: transparent;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center
}

.service h4 {
    margin: 0;
    font-size: 20px;
    color: #fff
}

.service p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6
}

@media (max-width:980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .featured-services h2 {
        font-size: 48px
    }
}

@media (max-width:640px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .featured-services {
        padding: 56px 0
    }

    .featured-services h2 {
        font-size: 36px
    }
}

/* Header dropdowns and responsive header adjustments */
.main-nav li {
    position: relative
}

.main-nav .submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 8px 20px rgba(3, 15, 30, .08);
    display: none;
    min-width: 220px;
    z-index: 60
}

.main-nav li:hover>.submenu,
.main-nav li:focus-within>.submenu {
    display: block
}

.main-nav .submenu li a {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    white-space: nowrap
}

.main-nav .submenu li a:hover {
    background: #f1f7ff
}

/* Mobile: collapse nav into menu toggle */
@media(max-width:780px) {
    .main-nav {
        display: none
    }

    .header-bar.open .main-nav {
        display: block;
        position: absolute;
        left: 18px;
        right: 18px;
        top: 64px;
        background: #fff;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(11, 23, 51, .08)
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px
    }

    .actions {
        display: none
    }
}

/* Remove global top padding so header can overlay the hero */
body {
    padding-top: 0
}

/* Helpful utility: show header when menu toggled via JS */
.header-bar.open {
    box-shadow: 0 12px 36px rgba(11, 23, 51, .12)
}

/* Solutions section (two-column feature list + contact card) */
.solutions-section {
    padding: 64px 0;
    background: #fff;
    color: #22303f
}

.solutions-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.solutions-left {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid #eef2f6
}

.feature-item .feat-icon {
    flex: 0 0 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fa8ff
}

.feature-item h4 {
    font-size: 22px;
    margin: 6px 0;
    color: #222
}

.feature-item p {
    color: #8b97a8;
    margin: 0;
    max-width: 520px
}

.solutions-right .eyebrow {
    color: var(--accent-2);
    font-size: 13px;
    margin-bottom: 8px
}

.solutions-right h2 {
    font-size: 48px;
    line-height: 1.02;
    margin: 0 0 18px;
    color: #0b1733
}

.solutions-right p.lead {
    color: #6f7b85;
    line-height: 1.8
}

.contact-box {
    margin-top: 28px;
    border: 4px solid rgba(249, 210, 213, 0.35);
    padding: 26px 28px;
    background: #fff;
    position: relative
}

.contact-box::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 44px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 4px solid rgba(249, 210, 213, 0.35);
    transform: rotate(45deg)
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 22px
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(31, 168, 255, 0.12);
    color: var(--accent-2)
}

.contact-meta {
    flex: 1
}

.contact-meta small {
    display: block;
    color: #8b97a8
}

.contact-meta .phone {
    font-size: 32px;
    color: var(--accent-2);
    font-weight: 700;
    margin-top: 6px
}

@media (max-width:980px) {
    .solutions-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .solutions-right h2 {
        font-size: 36px
    }
}

@media (max-width:640px) {
    .feature-item {
        gap: 12px
    }

    .feature-item .feat-icon {
        flex: 0 0 52px;
        height: 52px
    }

    .contact-box {
        padding: 18px
    }

    .contact-meta .phone {
        font-size: 24px
    }
}

/* How We Work section */
.how-work {
    padding: 76px 0;
    background: #f8fbfc
}

.how-work .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.how-work .eyebrow {
    color: var(--accent-2);
    text-align: center;
    font-size: 13px;
    margin-bottom: 12px
}

.how-work h2 {
    font-size: 48px;
    text-align: center;
    margin: 0 0 34px;
    color: #0b1733
}

.hw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.hw-item {
    display: flex;
    gap: 0;
    background: transparent;
    align-items: stretch
}

.hw-image {
    flex: 0 0 320px;
    background-size: cover;
    background-position: center
}

.hw-content {
    flex: 1;
    padding: 34px 36px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hw-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0b1733
}

.hw-content p {
    margin: 0;
    color: #6f7b85;
    line-height: 1.8
}

.hw-item.alt {
    flex-direction: row-reverse
}

@media (max-width:980px) {
    .hw-grid {
        grid-template-columns: 1fr
    }

    .hw-image {
        flex: 0 0 200px
    }

    .how-work h2 {
        font-size: 36px
    }
}

@media (max-width:640px) {
    .hw-item {
        flex-direction: column
    }

    .hw-image {
        width: 100%;
        height: 180px
    }

    .hw-content {
        padding: 20px
    }
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 18s infinite linear
}

.hero .slide:nth-child(1) {
    animation-delay: 0s
}

.hero .slide:nth-child(2) {
    animation-delay: 6s
}

.hero .slide:nth-child(3) {
    animation-delay: 12s
}

.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 36, 62, 0.22), rgba(255, 255, 255, 0.04));
    z-index: 10
}

/* allow clicks to pass through decorative overlays */
.hero-overlay {
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 20
}

.hero-copy h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem
}

.hero-copy p {
    color: #23314b;
    margin-bottom: 1rem
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    text-decoration: none
}

@keyframes heroFade {
    0% {
        opacity: 0
    }

    5% {
        opacity: 1
    }

    30% {
        opacity: 1
    }

    35% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

/* Sections */
.services {
    padding: 2.25rem 0
}

.services h3 {
    margin-bottom: 1rem
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(11, 23, 51, 0.04)
}

.about-company {
    padding: 3rem 0
}

.about-grid {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 3rem;
    align-items: center
}

.about-left {
    position: relative
}

.about-image {
    width: 100%;
    display: block;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(11, 23, 51, 0.08)
}

.stat-card {
    position: absolute;
    left: -40px;
    bottom: -40px;
    background: var(--accent);
    color: #fff;
    width: 260px;
    height: 260px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(11, 23, 51, 0.12)
}

.profile-card {
    position: absolute;
    right: 30px;
    top: -40px;
    background: #fff;
    padding: 14px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(11, 23, 51, 0.10);
    display: flex;
    align-items: center;
    gap: 12px
}

.profile-img {
    width: 84px;
    height: 84px;
    border-radius: 6px;
    object-fit: cover;
    border: 4px solid #fff
}

.about-content .eyebrow {
    letter-spacing: 3px;
    color: var(--accent-2);
    font-weight: 700;
    margin-bottom: 12px
}

.about-content h3 {
    font-size: 3.25rem;
    margin: 0 0 18px
}

.about-content p {
    color: #556077;
    line-height: 1.7;
    margin-bottom: 22px
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #111;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 700
}

.btn-ghost::before {
    content: '';
    width: 48px;
    height: 48px;
    background: rgba(17, 17, 17, 0.06);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px
}

/* Quote / Calculator Section */
.quote-section {
    background: linear-gradient(180deg, #fbfdff, #f6f9ff);
    padding: 64px 0
}

.quote-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 28px
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

.quote-illustration img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block
}

.quote-form-wrap {
    padding: 6px 6px
}

.quote-title {
    font-size: 1.4rem;
    margin: 0 0 6px;
    color: #0b1733
}

.quote-sub {
    color: #6b7b95;
    margin-bottom: 18px
}

.quote-form .group {
    margin-bottom: 26px
}

.group-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent-2);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.78rem
}

.field-row {
    display: flex;
    gap: 18px
}

.field-row.two-cols label {
    flex: 1
}

.input-icon {
    position: relative;
    display: block
}

.input-icon svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9
}

.input-icon input,
.input-icon select {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    background: #fff
}

.input-icon select {
    appearance: none
}

.input-icon input:focus,
.input-icon select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(31, 168, 255, 0.08);
    border-color: var(--accent-2)
}

.estimator {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 8px
}

.est-box {
    flex: 1;
    background: linear-gradient(90deg, #ffffff, #f7fbff);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(14, 36, 73, 0.04);
    display: flex;
    flex-direction: column
}

.est-label {
    font-size: 0.85rem;
    color: #6b7b95
}

.est-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0b1733;
    margin-top: 6px
}

.btn-primary {
    background: var(--accent-2);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(31, 168, 255, 0.14);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(31, 168, 255, 0.18)
}

/* Responsive */
@media (max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .main-nav ul {
        display: none
    }

    .header-bar {
        margin: 12px;
        max-width: calc(100% - 24px)
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .stat-card {
        position: relative;
        left: 0;
        bottom: 0;
        width: 220px;
        height: 220px;
        margin-top: -90px
    }

    .profile-card {
        position: relative;
        right: 0;
        top: 0;
        margin-top: -60px
    }

    .quote-grid {
        grid-template-columns: 1fr
    }

    .quote-illustration img {
        max-height: 240px;
        object-fit: cover
    }

    .field-row {
        flex-direction: column
    }

    .estimator {
        flex-direction: column
    }

    .btn-primary {
        width: 100%
    }
}

@media (max-width:480px) {
    .brand .logo {
        height: 28px
    }

    .about-content h3 {
        font-size: 1.75rem
    }
}

/* Minimal styles for SYS International homepage */
:root {
    --accent: #0d6fb3;
    --muted: #6b7c8a;
    --bg: #f7fbff;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
    margin: 0;
    color: #0b2740;
    background: #fff
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e6eef9
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.logo a {
    font-weight: 700;
    color: var(--accent);
    text-decoration: none
}

.main-nav a {
    margin-left: 16px;
    color: #145388;
    text-decoration: none
}

.main-nav .link-like {
    background: none;
    border: none;
    color: #145388;
    cursor: pointer
}

.hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center
}

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: brightness(.55)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 41, 66, .25), rgba(13, 111, 179, .25))
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 40px
}

.hero-copy {
    max-width: 600px;
    color: #fff
}

.hero-copy h2 {
    font-size: 34px;
    margin: 0 0 12px
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px
}

.services {
    padding: 48px 0;
    background: #f7fbff
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(3, 15, 30, .04)
}

.about {
    padding: 48px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: center
}

.about-image {
    width: 100%;
    border-radius: 8px
}

.stat-card {
    background: var(--accent);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px
}

.profile-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover
}

.quote-section {
    padding: 40px 0
}

.quote-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(2, 41, 66, .06)
}

.quote-grid {
    display: flex;
    gap: 20px;
    align-items: center
}

.quote-illustration img {
    width: 260px
}

.quote-form-wrap {
    flex: 1
}

.group {
    margin-bottom: 12px
}

.group-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px
}

.field-row {
    display: flex;
    gap: 10px
}

.field-row.two-cols .input-icon {
    flex: 1
}

.input-icon input,
.input-icon select,
.input-icon textarea {
    width: 100%;
    padding: 10px 12px 10px 42px;
    /* keep left padding so icon does not overlap */
    border: 1px solid #e6eef9;
    border-radius: 6px
}

.estimator {
    display: flex;
    align-items: center;
    gap: 12px
}

.est-box {
    background: #f1f8ff;
    padding: 10px;
    border-radius: 8px
}

.est-price {
    font-weight: 800
}

.featured-services {
    padding: 64px 0;
    background: linear-gradient(180deg, #0d6fb3 0, #0d6fb3 100%);
    color: #fff
}

.fs-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.service .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.how-work {
    padding: 56px 0;
    background: #fff
}

.hw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.hw-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden
}

.hw-image {
    height: 160px;
    background-size: cover;
    background-position: center
}

.google-reviews,
.clients,
.instagram,
.blog {
    padding: 48px 0
}

.site-footer {
    background: #072b45;
    color: #dfeefc;
    padding: 40px 0
}

.site-footer .container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.footer-col {
    flex: 1 1 220px
}

@media(max-width:900px) {
    .grid {
        grid-template-columns: 1fr
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .hw-grid {
        grid-template-columns: 1fr
    }
}

/* simple slide animation */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(1.02)
    }

    10% {
        opacity: 1;
        transform: scale(1)
    }

    33% {
        opacity: 1
    }

    66% {
        opacity: 0;
        transform: scale(0.98)
    }

    100% {
        opacity: 0
    }
}

.slide {
    opacity: 0;
    animation: fadeSlide 18s infinite
}

.slide:nth-child(1) {
    animation-delay: 0s
}

.slide:nth-child(2) {
    animation-delay: 6s
}

.slide:nth-child(3) {
    animation-delay: 12s
}

/* Quote form redesign */
.quote-section {
    padding: 54px 0;
    background: #f6fbff
}

.quote-split {
    gap: 28px
}

.quote-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(11, 23, 51, 0.06)
}

.quote-card .group-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 8px
}

.quote-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.quote-form .field-row.two-cols {
    grid-template-columns: 1fr 1fr
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 10px;
    border: 1px solid #e6eef8;
    border-radius: 8px;
    background: #fbfdff
}

.quote-form textarea {
    min-height: 88px
}

.quote-form .form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px
}

.quote-form .btn-primary {
    background: var(--accent);
    border: none;
    padding: 12px 18px;
    border-radius: 10px
}

.quote-split img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px
}

@media(max-width:768px) {
    .quote-form .field-row {
        grid-template-columns: 1fr
    }

    .col-md-6.d-none.d-md-block {
        display: none !important
    }

    .quote-card {
        padding: 16px
    }
}

/* Input icon alignment */
.input-icon {
    position: relative;
    display: block
}

.input-icon svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 18px;
    height: 18px;
    color: #9aaedb
}

.input-icon input,
.input-icon select,
.input-icon textarea {
    padding-left: 44px
}

/* Enforce exact half-split on larger screens and full-height image */
@media(min-width:769px) {
    .quote-split {
        display: flex;
        align-items: stretch
    }

    .quote-split>div {
        flex: 0 0 50%;
        max-width: 50%
    }

    .quote-split img {
        height: 100%;
        border-radius: 12px 0 0 12px
    }

    .quote-card {
        border-radius: 0 12px 12px 0;
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%
    }
}

/* Ensure hero subheading and description are white for legibility */
.hero-copy h2,
.hero-copy p,
.hero-copy .subheading,
.hero-copy .lead,
.hero .hero-copy h2,
.hero .hero-copy p {
    color: #ffffff !important;
}