.site-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

#nav.scrolled .site-logo {
    height: 45px;
}

.hero-carousel {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    min-height: calc(100vh - 72px);
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding-top: 100px;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(7, 24, 40, 0.45) 0%,
            rgba(7, 24, 40, 0.72) 50%,
            rgba(7, 24, 40, 0.97) 85%);
    z-index: 1;
}

.hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--orange);
    z-index: 2;
}

.hero-slide .hero-body {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    width: 100%;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    cursor: pointer;
}

.hero-carousel .owl-nav button.owl-prev {
    left: 32px;
}

.hero-carousel .owl-nav button.owl-next {
    right: 32px;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(232, 93, 32, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.hero-carousel .owl-dots .owl-dot.active span {
    background: var(--orange);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(232, 93, 32, 0.6);
}

@media (max-width: 768px) {
    .hero-carousel .owl-nav {
        display: none !important;
    }

    .hero-carousel,
    .hero-slide {
        min-height: 100vh;
    }

    .hero-slide .hero-body {
        padding: 10px 20px 80px;
    }

    .hero-carousel .owl-dots {
        bottom: 25px;
    }
}

.hero-carousel .animated {
    animation-duration: 1000ms !important;
}

.hero-slide {
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 72px);
    z-index: 0;
    animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08) translate(1%, -1%);
    }
}

/* Custom Service Card Icon Image Styling */
.srv-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

/* ===== FOOTER TOP CTA SECTION ===== */
.footer-top-cta {
    position: relative;
    padding: 120px 24px;
    text-align: center;
    color: #ffffff;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: kenBurns 18s ease-in-out infinite alternate;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 24, 40, 0.9) 0%, rgba(7, 24, 40, 0.72) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

/* Eyebrow Frame styling */
.cta-eyebrow {
    display: inline-block;
    border: 1px solid var(--orange);
    padding: 6px 18px;
    margin-bottom: 28px;
    border-radius: 2px;
}

.cta-eyebrow span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange2);
    display: block;
}

.cta-title {
    font-family: "Barlow Condensed", "Inter", sans-serif;
    font-size: clamp(34px, 5.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(20px, 3.2vw, 34px);
    color: var(--orange);
    margin-bottom: 32px;
    font-weight: 400;
}

.cta-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Consultation Form */
.cta-form {
    display: flex;
    max-width: 520px;
    width: 100%;
    margin: 0 auto 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(7, 24, 40, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 24px;
    color: #ffffff;
    font-size: 14.5px;
    outline: none;
    font-family: "Inter", sans-serif;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-form button {
    background: #d19c4c;
    color: #071828;
    border: none;
    padding: 18px 32px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.cta-form button:hover {
    background: #e2ae5d;
    color: #000000;
}

/* Bottom Contact details */
.cta-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-phone-btn {
    background: #d19c4c;
    color: #071828 !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(209, 156, 76, 0.2);
}

.cta-phone-btn:hover {
    background: #e2ae5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 156, 76, 0.35);
}

.cta-email-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-email-wrap::after {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    display: inline-block;
}

.cta-email {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.cta-email:hover {
    color: #d19c4c;
}

/* Responsiveness refinement */
@media (max-width: 768px) {
    .footer-top-cta {
        padding: 80px 20px;
        min-height: auto;
    }

    .cta-form {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 12px;
    }

    .cta-form input {
        background: rgba(7, 24, 40, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        padding: 16px 20px;
        width: 100%;
    }

    .cta-form button {
        border-radius: 4px;
        padding: 16px;
        width: 100%;
    }

    .cta-contact-row {
        gap: 20px;
        flex-direction: column;
    }

    .cta-email-wrap::after {
        display: none;
    }
}

/* ===== CONTACT FORM MESSAGES & LOADERS ===== */
.form-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
}

.form-message.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* Spinner Keyframes & Animation */
.spinner {
    animation: rotate 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* ===== HERO SLIDER CONTENT ANIMATIONS ===== */
.hero-slide .hero-eyebrow,
.hero-slide h1,
.hero-slide .hero-desc,
.hero-slide .hero-btns,
.hero-slide .hero-stats {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.owl-item.active .hero-slide .hero-eyebrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.owl-item.active .hero-slide h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.owl-item.active .hero-slide .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.owl-item.active .hero-slide .hero-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.owl-item.active .hero-slide .hero-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
}


@media (max-width: 768px) {
    .hero-desc {
        font-size: 14px;
    }

    .hero-btns {
        flex-wrap: nowrap;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 8px;
        font-size: 11px;
    }

    .band-cell {
        padding: 10px 28px;
    }

    .band-n {
        font-size: 26px;
    }

    .about-img-inner {
        height: 270px;
    }

    .about-img-inner img {
        height: 100%;
    }

    .about-text p {
        font-size: 12px;
    }

    .sec-title {
        font-size: 20px;
    }

    .btn-dark {
        font-size: 11px;

    }

    .sec-desc {
        font-size: 14px;
    }

    .srv-card h3 {
        font-size: 18px;
    }

    .srv-card p {
        font-size: 13.5px;
    }

    .cap-desc {
        font-size: 12px;
    }
}