* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #081830;
    line-height: 1.6;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* Background Photo System */

.scroll-backgrounds {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #081830;
    pointer-events: none;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 1.4s ease;
}

.bg-image.active {
    opacity: 1;
    transform: scale(1);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 16, 31, 0.44),
        rgba(8, 24, 48, 0.24),
        rgba(6, 16, 31, 0.5)
    );
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 2;
}

/* Glass Panels */

.glass-panel {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 45px rgba(8, 24, 48, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark-panel {
    background: rgba(8, 24, 48, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.dark-glass-panel {
    padding: 28px;
    border-radius: 18px;
    background: rgba(8, 24, 48, 0.62);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 45px rgba(8, 24, 48, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        linear-gradient(90deg, rgba(5, 18, 39, 0.96), rgba(8, 31, 61, 0.94));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.site-header .container {
    width: 100%;
    padding-left: 12px;
    padding-right: 32px;
}

.nav-container {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

/* Header Logo */

.logo,
.company-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.company-logo {
    height: 86px;
    padding: 8px 14px;
    flex-shrink: 0;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(245, 166, 35, 0.2),
        inset 0 0 18px rgba(8, 24, 48, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.company-logo-img {
    display: block;
    height: 68px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter:
        drop-shadow(0 4px 8px rgba(8, 24, 48, 0.26))
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.company-logo:hover {
    transform: translateY(-2px);
    background:
        linear-gradient(135deg, #ffffff, #eef4ff);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.42),
        0 0 0 2px rgba(245, 166, 35, 0.5),
        0 0 24px rgba(245, 166, 35, 0.18);
}

.company-logo:hover .company-logo-img {
    transform: scale(1.035);
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    position: relative;
    color: #d8e4f5;
    font-size: 0.96rem;
    font-weight: 700;
    padding: 10px 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 0;
    height: 3px;
    background: #f5a623;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width 0.28s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 8px;
    height: 8px;
    background: #f5a623;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    box-shadow: 0 0 18px rgba(245, 166, 35, 0.9);
    transition: transform 0.28s ease;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    transform: translateX(-50%) scale(1);
}

/* Wow Button */

.wow-button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    color: #07182f;
    font-weight: 900;
    border-radius: 999px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        transform 0.18s ease,
        box-shadow 0.25s ease;
    box-shadow:
        0 12px 30px rgba(245, 166, 35, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.button-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(135deg, #f5a623, #ffcc66);
}

.button-glow {
    position: absolute;
    left: -45%;
    top: 0;
    z-index: -2;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    opacity: 0;
    transform: skewX(-18deg);
}

.wow-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    z-index: -1;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );
    transform: skewX(-20deg);
}

.wow-button:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 18px 44px rgba(245, 166, 35, 0.42),
        0 0 34px rgba(245, 166, 35, 0.22);
}

.wow-button:hover .button-glow {
    opacity: 1;
    animation: loadingBarSweep 1.15s ease-in-out infinite;
}

.wow-button:hover::before {
    animation: shineSweep 0.85s ease;
}

.button-text,
.button-arrow {
    position: relative;
    z-index: 2;
}

.flagger-icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 30px;
    display: inline-block;
    flex: 0 0 auto;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.flagger-head {
    position: absolute;
    left: 10px;
    top: 3px;
    width: 8px;
    height: 8px;
    background: #07182f;
    border-radius: 50%;
}

.flagger-hardhat {
    position: absolute;
    left: 8px;
    top: 0;
    width: 12px;
    height: 6px;
    background: #ffffff;
    border: 2px solid #07182f;
    border-bottom: 0;
    border-radius: 10px 10px 2px 2px;
}

.flagger-hardhat::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -2px;
    width: 12px;
    height: 2px;
    background: #07182f;
    border-radius: 999px;
}

.flagger-body {
    position: absolute;
    left: 11px;
    top: 11px;
    width: 5px;
    height: 11px;
    background: #07182f;
    border-radius: 999px;
}

.flagger-arm {
    position: absolute;
    height: 3px;
    background: #07182f;
    border-radius: 999px;
    transform-origin: left center;
    transition: all 0.25s ease;
}

.arm-left {
    left: 11px;
    top: 13px;
    width: 8px;
    transform: rotate(145deg);
}

.arm-right {
    left: 14px;
    top: 13px;
    width: 8px;
    transform: rotate(35deg);
}

.flagger-leg {
    position: absolute;
    top: 21px;
    width: 3px;
    height: 9px;
    background: #07182f;
    border-radius: 999px;
}

.leg-left {
    left: 10px;
    transform: rotate(10deg);
}

.leg-right {
    left: 15px;
    transform: rotate(-10deg);
}

.wow-button:hover .flagger-icon {
    transform: translateX(6px);
}

.wow-button:hover .arm-right {
    left: 14px;
    top: 12px;
    width: 12px;
    transform: rotate(-6deg);
}

.ripple {
    display: none;
}

/* Mobile Menu */

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    margin: 5px 0;
    background: #f5a623;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #f5a623;
    color: #081830;
    box-shadow: 0 10px 28px rgba(245, 166, 35, 0.28);
}

.btn-primary:hover {
    background: #ffb837;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Hero */

.hero {
    min-height: 780px;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    padding: 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: center;
}

.hero-text {
    position: relative;
    overflow: hidden;
}

.eyebrow {
    margin: 0 0 14px;
    color: #f5a623;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.9rem, 6vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -3px;
}

.hero-description {
    max-width: 680px;
    margin: 28px 0 0;
    color: #d9e7f7;
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero-trust-row span {
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.28);
}

/* Professional Logo / Schedule Panel */

.hero-brand-panel {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(235, 241, 250, 0.72));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(245, 166, 35, 0.18);
}

.hero-brand-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.22), transparent 36%),
        linear-gradient(135deg, rgba(8, 24, 48, 0.04), transparent 55%);
    pointer-events: none;
}

.hero-watermark-logo {
    position: absolute;
    right: -70px;
    top: 20px;
    width: min(540px, 92%);
    opacity: 0.2;
    filter: grayscale(0.08);
    pointer-events: none;
}

.hero-panel-content {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
}

.panel-label {
    width: fit-content;
    margin: 0 0 16px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(8, 24, 48, 0.88);
    color: #f5a623;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.hero-panel-content h2 {
    max-width: 520px;
    margin: 0;
    color: #081830;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.mini-schedule {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(8, 24, 48, 0.88);
    box-shadow: 0 18px 38px rgba(8, 24, 48, 0.22);
}

.mini-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
}

.mini-row span {
    color: #d8e4f5;
    font-size: 0.84rem;
    font-weight: 800;
}

.mini-row div {
    height: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.mini-row i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f5a623, #ffcf73);
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.35);
}

.hero-panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.hero-panel-stats div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border-left: 4px solid #f5a623;
}

.hero-panel-stats strong {
    display: block;
    color: #081830;
    font-size: 1.08rem;
}

.hero-panel-stats span {
    display: block;
    color: #516078;
    font-size: 0.78rem;
    font-weight: 700;
}

/* General Sections */

.section {
    padding: 94px 0;
    background: rgba(255, 255, 255, 0.1);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.centered-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.about-text h2,
.contact-info h2,
.schedule-animation-text h2 {
    margin: 0;
    color: #081830;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.dark-glass-panel h2 {
    color: #ffffff;
}

.section-heading p:not(.eyebrow),
.about-text p,
.contact-info p,
.schedule-animation-text p:not(.eyebrow) {
    color: #516078;
    font-size: 1.05rem;
}

/* Scheduling Animation */

.schedule-animation-section {
    padding: 95px 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(1px);
    overflow: hidden;
}

.schedule-animation-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
    align-items: center;
}

.schedule-animation-text p:not(.eyebrow) {
    max-width: 540px;
    margin: 20px 0 28px;
}

.schedule-machine {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: rgba(8, 24, 48, 0.9);
    backdrop-filter: blur(6px);
    box-shadow:
        0 28px 70px rgba(8, 24, 48, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    color: #ffffff;
    font-weight: 900;
}

.schedule-header span:last-child {
    color: #f5a623;
}

.crane-track {
    position: relative;
    height: 74px;
    margin-bottom: 18px;
    border-top: 3px solid rgba(245, 166, 35, 0.75);
}

.crane-hook {
    position: absolute;
    top: -4px;
    left: 0;
    width: 36px;
    height: 64px;
    animation: craneMove 7s ease-in-out infinite;
}

.crane-hook::before {
    content: "";
    position: absolute;
    top: 0;
    left: 17px;
    width: 3px;
    height: 48px;
    background: #f5a623;
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.6);
}

.crane-hook::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 0;
    width: 20px;
    height: 18px;
    border: 3px solid #f5a623;
    border-top: none;
    border-radius: 0 0 14px 14px;
    transform: rotate(-12deg);
}

.gantt-chart {
    display: grid;
    gap: 13px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.gantt-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 34px;
}

.task-name {
    color: #d8e4f5;
    font-size: 0.88rem;
    font-weight: 800;
}

.task-bar {
    position: relative;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.task-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #4f8fcf, #8ec5ff);
    animation: fillSchedule 7s ease-in-out infinite;
}

.task-bar.critical::before {
    background: linear-gradient(90deg, #f5a623, #ffcf73);
    box-shadow: 0 0 18px rgba(245, 166, 35, 0.45);
}

.bar-1 {
    width: 36%;
    margin-left: 0;
}

.bar-2 {
    width: 54%;
    margin-left: 14%;
}

.bar-3 {
    width: 48%;
    margin-left: 29%;
}

.bar-4 {
    width: 43%;
    margin-left: 45%;
}

.bar-5 {
    width: 38%;
    margin-left: 58%;
}

.bar-1::before {
    animation-delay: 0s;
}

.bar-2::before {
    animation-delay: 0.5s;
}

.bar-3::before {
    animation-delay: 1s;
}

.bar-4::before {
    animation-delay: 1.5s;
}

.bar-5::before {
    animation-delay: 2s;
}

.milestone-dot {
    width: 24px;
    height: 24px;
    margin-left: 78%;
    background: #f5a623;
    border-radius: 50%;
    box-shadow:
        0 0 0 0 rgba(245, 166, 35, 0.55),
        0 0 24px rgba(245, 166, 35, 0.75);
    animation: pulseMilestone 1.8s ease-out infinite;
}

.schedule-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.schedule-footer div {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #f5a623;
}

.schedule-footer strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
}

.schedule-footer span {
    color: #c8d7ea;
    font-size: 0.82rem;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 30px;
    background: rgba(247, 249, 252, 0.78);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(226, 232, 240, 0.75);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.7);
    box-shadow: 0 18px 45px rgba(8, 24, 48, 0.16);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #081830;
    border-radius: 14px;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: #081830;
    font-size: 1.25rem;
}

.service-card p {
    margin: 0;
    color: #516078;
}

/* Construction Band */

.construction-band {
    padding: 58px 0;
    background: rgba(8, 24, 48, 0.68);
    backdrop-filter: blur(3px);
}

.band-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.band-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.band-content p {
    max-width: 720px;
    color: #d8e4f5;
    margin: 12px 0 0;
}

/* Process */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    padding: 28px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(7px);
    border-radius: 16px;
    border-top: 5px solid #f5a623;
    box-shadow: 0 12px 34px rgba(8, 24, 48, 0.12);
}

.process-step span {
    color: #f5a623;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 900;
}

.process-step h3 {
    margin: 16px 0 10px;
    color: #081830;
}

.process-step p {
    margin: 0;
    color: #516078;
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-card {
    min-height: 480px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(8, 24, 48, 0.16), rgba(8, 24, 48, 0.35)),
        url("images/construction-2.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    box-shadow: 0 22px 60px rgba(8, 24, 48, 0.18);
}

.about-badge {
    width: 100%;
    padding: 26px;
    border-radius: 18px;
    background: rgba(8, 24, 48, 0.78);
    backdrop-filter: blur(8px);
    border-left: 5px solid #f5a623;
}

.about-badge span {
    color: #f5a623;
    font-weight: 900;
    letter-spacing: 2px;
}

.about-badge strong {
    display: block;
    color: #ffffff;
    font-size: 1.55rem;
    margin-top: 6px;
}

.about-text p {
    margin-bottom: 18px;
}

.about-highlights {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.about-highlights div {
    padding: 18px;
    background: rgba(244, 247, 251, 0.88);
    border-left: 5px solid #f5a623;
    border-radius: 10px;
}

.about-highlights strong {
    display: block;
    color: #081830;
}

.about-highlights span {
    color: #516078;
}

/* Industries */

.industries-section {
    background: rgba(8, 24, 48, 0.42);
    backdrop-filter: blur(2px);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
    gap: 16px;
}

.industries-grid div {
    width: 100%;
    padding: 22px;
    background: rgba(8, 24, 48, 0.62);
    backdrop-filter: blur(6px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.industries-grid div:hover {
    transform: translateY(-4px);
    background: rgba(245, 166, 35, 0.28);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.75);
}

.contact-details p {
    margin: 8px 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(8, 24, 48, 0.16);
    border: 1px solid rgba(226, 232, 240, 0.75);
}

.contact-form label {
    display: block;
    color: #081830;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #172033;
    background: rgba(248, 250, 252, 0.9);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(245, 166, 35, 0.24);
    border-color: #f5a623;
}

.form-button {
    width: 100%;
    font-size: 1rem;
}

.form-message {
    margin: 16px 0 0;
    color: #0f6b3f;
    font-weight: 800;
}

/* Footer */

.site-footer {
    background: rgba(6, 16, 31, 0.94);
    color: #d8e4f5;
    padding: 28px 0;
}

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

.footer-content p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #d8e4f5;
}

.footer-links a:hover {
    color: #f5a623;
}

/* Animations */

@keyframes loadingBarSweep {
    0% {
        left: -45%;
    }

    55% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes shineSweep {
    from {
        left: -90%;
    }

    to {
        left: 130%;
    }
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fillSchedule {
    0% {
        width: 0;
    }

    45% {
        width: 100%;
    }

    75% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes craneMove {
    0% {
        left: 0;
    }

    45% {
        left: calc(100% - 36px);
    }

    55% {
        left: calc(100% - 36px);
    }

    100% {
        left: 0;
    }
}

@keyframes pulseMilestone {
    0% {
        transform: scale(0.9);
        box-shadow:
            0 0 0 0 rgba(245, 166, 35, 0.55),
            0 0 24px rgba(245, 166, 35, 0.75);
    }

    70% {
        transform: scale(1);
        box-shadow:
            0 0 0 18px rgba(245, 166, 35, 0),
            0 0 24px rgba(245, 166, 35, 0.75);
    }

    100% {
        transform: scale(0.9);
        box-shadow:
            0 0 0 0 rgba(245, 166, 35, 0),
            0 0 24px rgba(245, 166, 35, 0.75);
    }
}

/* Responsive */

@media (max-width: 1080px) {
    .main-nav {
        gap: 18px;
    }

    .nav-container {
        min-height: 100px;
    }

    .company-logo {
        height: 80px;
        padding: 8px 12px;
    }

    .company-logo-img {
        height: 62px;
        max-width: 250px;
    }
}

@media (max-width: 980px) {
    .hero-content,
    .schedule-animation-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-brand-panel {
        min-height: 480px;
    }

    .hero-panel-content {
        min-height: 480px;
    }

    .hero-watermark-logo {
        right: -40px;
        top: 20px;
        width: min(500px, 90%);
    }

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

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

    .band-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .nav-container {
        min-height: 88px;
    }

    .site-header .container {
        padding-left: 10px;
        padding-right: 18px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 18px;
        background: rgba(8, 24, 48, 0.96);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(245, 166, 35, 0.18);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 16px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link::before,
    .nav-link::after {
        display: none;
    }

    .wow-button {
        margin-top: 18px;
        justify-content: center;
        width: 100%;
    }

    .company-logo {
        height: 72px;
        padding: 7px 10px;
        border-radius: 18px;
    }

    .company-logo-img {
        height: 54px;
        max-width: 210px;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: auto;
        padding: 56px 0 76px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
        letter-spacing: -1.5px;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .schedule-animation-section {
        padding: 72px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .schedule-machine {
        padding: 18px;
    }

    .schedule-header {
        flex-direction: column;
    }

    .gantt-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .task-bar {
        height: 16px;
    }

    .schedule-footer {
        grid-template-columns: 1fr;
    }

    .company-logo {
        height: 62px;
        padding: 6px 8px;
        border-radius: 15px;
    }

    .company-logo-img {
        height: 46px;
        max-width: 170px;
    }

    .hero-brand-panel {
        min-height: 430px;
        border-radius: 24px;
    }

    .hero-panel-content {
        min-height: 430px;
        padding: 28px;
    }

    .hero-watermark-logo {
        right: -58px;
        top: 28px;
        width: 390px;
        opacity: 0.16;
    }

    .mini-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .hero-panel-stats {
        grid-template-columns: 1fr;
    }

    .glass-panel,
    .dark-glass-panel {
        padding: 22px;
    }
}