/* Base Variables */
:root {
    /* Color Palette */
    --color-navy: #1a1a24;
    /* Deeper, richer foundation */
    --color-navy-light: #2a2a35;
    --color-navy-dark: #121218;
    --color-orange: #F37F31;
    --color-orange-hover: #D96A22;
    --color-white: #FFFFFF;
    --color-grey-light: #F4F5F7;
    --color-grey: #9AA0A6;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing & Transitions */
    --transition-smooth: all 0.3s ease-in-out;
    --glow-shadow: 0 0 15px rgba(243, 127, 49, 0.6);
    --section-padding: 100px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top right, #2a2a35 0%, #1a1a24 40%, #121218 100%);
    background-attachment: fixed;
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: var(--section-padding);
}

.accent-color {
    color: var(--color-orange);
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff5e00 100%);
    color: var(--color-navy-dark);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(243, 127, 49, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5e00 0%, var(--color-orange) 100%);
    color: var(--color-navy-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(243, 127, 49, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Main Call to Action */
.btn-cta {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-orange) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: pulsateOrange 2s infinite alternate !important;
    transition: all 0.3s ease !important;
}

.btn-cta:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05) translateY(-2px) !important;
    animation: none !important;
    box-shadow: 0 0 25px rgba(243, 127, 49, 0.8), 0 0 10px rgba(243, 127, 49, 0.5) !important;
}

@keyframes pulsateOrange {
    0% {
        box-shadow: 0 0 8px rgba(243, 127, 49, 0.3);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 20px rgba(243, 127, 49, 0.6), 0 0 10px rgba(243, 127, 49, 0.4);
        transform: scale(1.03);
    }
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-orange);
    color: var(--color-orange);
    box-shadow: inset 0 0 0 0 var(--color-orange);
}

.btn-outline:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(243, 127, 49, 0.4);
}

/* Scroll Animation Classes */
.hidden-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg-hover);
    padding: 15px 0;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
    /* 
     * The logo has dark grey text and an orange accent. 
     * Invert makes dark grey -> light grey. 
     * Brightness pushes it to white. 
     * Hue-rotate preserves the orange-ish color as much as possible after inversion.
     */
    filter: invert(1) brightness(1.5) hue-rotate(180deg);
}

.logo:hover .logo-img {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover:not(.btn) {
    color: var(--color-orange);
    text-shadow: 0 0 8px rgba(243, 127, 49, 0.6);
}

.nav-links .btn {
    margin-left: 1rem;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Animated Hero Background Image */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: slowPan 25s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes slowPan {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-1%, -1%);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark linear gradient overlay for text contrast */
    background: linear-gradient(to bottom,
            rgba(18, 18, 24, 0.75),
            rgba(18, 18, 24, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-grey-light);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-white);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(18, 18, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 40px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* =========================================
   Section Headers
   ========================================= */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--color-grey);
    font-size: 1.1rem;
}

.bg-light {
    background-color: var(--color-navy-light);
}

/* =========================================
   About Section
   ========================================= */
.about {
    background-color: var(--color-navy);
    /* Match the main dark background instead of the light-grey card color */
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-content p {
    color: var(--color-grey-light);
    /* Better contrast than grey */
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-image {
        min-height: 300px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .about-stat h3 {
        font-size: 1.8rem !important;
    }
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--glass-bg-hover);
    border-color: rgba(243, 127, 49, 0.3);
    box-shadow: var(--glow-shadow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-orange);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-grey);
    font-size: 0.95rem;
}

/* =========================================
   Gallery Section (Horizontal Scroll & Lightbox)
   ========================================= */
.gallery-wrapper {
    position: relative;
    width: 100%;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-nav-btn:hover {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
    box-shadow: 0 6px 20px rgba(243, 127, 49, 0.4);
}

.gallery-nav-btn.btn-prev {
    left: -25px;
}

.gallery-nav-btn.btn-next {
    right: -25px;
}

.project-swiper {
    width: 100%;
    padding: 20px 10px 60px !important;
    /* Extra bottom padding for pagination dots */
    overflow: hidden;
}

.swiper-slide.project-card {
    width: calc(33.333% - 20px);
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Premium Hover Effect on Cards */
.swiper-slide.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(243, 127, 49, 0.15);
}

.swiper-slide.project-card:hover img {
    transform: scale(1.08);
}

.swiper-slide.project-card:active {
    cursor: grabbing;
}

/* Custom Pagination styles */
.swiper-pagination-bullet {
    background: var(--color-white) !important;
    opacity: 0.3 !important;
    transition: var(--transition-smooth);
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-orange) !important;
    opacity: 1 !important;
    box-shadow: var(--glow-shadow) !important;
    transform: scale(1.3);
}

/* Position Swiper Navigation inside the wrapper neatly */
.gallery-wrapper .gallery-nav-btn {
    top: 45%;
    margin-top: -25px;
    z-index: 10;
}

.gallery-wrapper .btn-prev {
    left: 15px;
}

.gallery-wrapper .btn-next {
    right: 15px;
}

/* Hide Swiper default arrows */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

@media (max-width: 992px) {
    .swiper-slide.project-card {
        width: calc(50% - 15px);
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-wrapper .gallery-nav-btn {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .swiper-slide.project-card {
        width: 85%;
        height: 350px;
    }
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 24, 0.95) 0%, rgba(18, 18, 24, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.view-project-btn {
    display: inline-block;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.project-card:hover .project-overlay h4 {
    transform: translateY(0);
}

.project-card:hover .view-project-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Close button */
.lightbox-close {
    color: var(--color-white);
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-orange);
    text-shadow: 0 0 15px rgba(243, 127, 49, 0.8);
    text-decoration: none;
    cursor: pointer;
}

/* Next & previous buttons */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    padding: 16px;
    margin-top: -25px;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--glow-shadow);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--color-grey-light);
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Animation */
.lightbox-content,
#lightbox-caption {
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================================
   Stats Section
   ========================================= */
.stats {
    background-color: var(--color-navy-dark);
    /* Very dark charcoal/black matching image */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    color: var(--color-white);
    margin-bottom: 20px;
}

.stat-icon svg {
    /* To mimic the bold solid white icons in the image */
    fill: var(--color-white);
    stroke: var(--color-white);
    stroke-width: 1;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-grey-light);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stat-number {
        font-size: 4rem;
    }
}

/* =========================================
   Clients Section
   ========================================= */
.clients {
    background-color: var(--color-navy-dark);
    /* Match stats section background */
    overflow: hidden;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Optional edge fade effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: scroll_clients 30s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll_clients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }

    /* 50% translates exactly one half of the duplicated set plus half the gap */
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 180px;
    padding: 15px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    /* Subtle glow for clients */
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .clients-grid {
        gap: 20px;
    }

    .client-logo {
        width: 140px;
        height: 70px;
    }
}

/* =========================================
   Contact/Quote Section
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    border-color: rgba(243, 127, 49, 0.3);
    box-shadow: var(--glow-shadow);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-right: 20px;
    background: rgba(243, 127, 49, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--color-grey);
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: var(--color-grey);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-orange);
    text-shadow: 0 0 8px rgba(243, 127, 49, 0.6);
}

.quote-form {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.quote-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
    border-color: rgba(243, 127, 49, 0.4);
}

.quote-form h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    background-color: rgba(255, 255, 255, 0.1);
}

.quote-form .btn {
    width: 100%;
    text-align: center;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--color-navy-dark);
    padding: 80px 0 20px;
}

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

.footer-logo,
.footer-services,
.footer-socials {
    flex: 1;
}

.footer-logo {
    max-width: 300px;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services ul li {
    margin-bottom: 12px;
}

.footer-services ul li a {
    color: var(--color-grey-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-content h4 {
    color: var(--color-orange);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-services ul li a:hover {
    color: var(--color-orange);
    text-shadow: 0 0 20px rgba(243, 127, 49, 1), 0 0 10px rgba(243, 127, 49, 0.6);
    transform: translateX(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 15px;
    display: block;
    filter: invert(1) brightness(1.5) hue-rotate(180deg);
}

.footer-logo p {
    color: var(--color-grey);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-socials {
    display: block;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.footer-socials a:hover {
    color: var(--color-orange);
    background: rgba(243, 127, 49, 0.1);
    border-color: rgba(243, 127, 49, 0.3);
    box-shadow: 0 0 15px rgba(243, 127, 49, 0.4);
    transform: translateY(-3px);
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    color: var(--color-grey);
    font-size: 0.85rem;
    padding-top: 40px;
}

.developer-credit {
    margin-top: 5px;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.developer-credit a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
}

.developer-credit:hover {
    opacity: 1;
}

/* =========================================
   Industry Credentials
   ========================================= */
.credentials {
    padding-bottom: 60px;
}

.credentials-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.credential-logo {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.credential-logo:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    border-color: rgba(243, 127, 49, 0.3);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.credential-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}


.invert-img {
    filter: brightness(0) invert(1);
}

/* =========================================
   Mobile Sticky CTA
   ========================================= */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-orange);
    color: var(--color-white);
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    /* Extra padding at bottom for iPhone safe area */
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    transition: var(--transition-smooth);
}

.mobile-sticky-cta:hover {
    background-color: var(--color-orange-hover);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .social-icons {
        justify-content: center;
    }

    .footer-socials a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    /* Add padding to body so content isn't hidden behind the sticky button */
    body {
        padding-bottom: 60px;
    }
}