@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bg-dark: #070A10;
    --bg-dark-section: #0B0F19;
    --bg-card-dark: #121826;
    --bg-card-light: #ffffff;
    --bg-light: #FAFAFC;
    --primary-gold: #c5a880;
    --primary-gold-gradient: linear-gradient(135deg, #b88a44 0%, #ecd093 50%, #b88a44 100%);
    --accent-gold: #D4AF37;
    --accent-gold-hover: #bda230;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --glass-bg: rgba(11, 15, 25, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Global Reset & Layout Fixes */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body) !important;
    background-color: #f8fafc !important;
    color: var(--text-dark) !important;
    line-height: 1.6 !important;
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.form-group {
    width: 100% !important;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
}

.section {
    padding: 55px 0 !important;
    background-color: #f8fafc !important;
    position: relative;
    z-index: 1;
}

.bg-gray {
    background-color: rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0 !important;
    }
}

.section-title-sm {
    color: var(--accent-gold);
    font-family: var(--font-headings);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.section-title-main {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
    color: #0f172a;
    text-transform: uppercase;
}

.text-center .section-title-main::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: var(--accent-gold);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .section-title-main {
        font-size: 1.7rem !important;
        margin-bottom: 25px;
    }
}

/* Light / Dark Background Theme */
.bg-dark-theme {
    background-color: #0d131f !important;
    color: #ffffff !important;
}

.bg-dark-theme .section-title-main {
    color: #ffffff !important;
}

/* Floating Sidebar Actions (Desktop) */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sidebar-item {
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    color: #ffffff;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 76px;
    text-align: center;
    border-radius: 6px 0 0 6px;
}

.sidebar-item i {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.sidebar-item span {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-item:hover {
    background: var(--primary-gold-gradient);
    transform: translateX(-4px);
}

.sidebar-item:hover i,
.sidebar-item:hover span {
    color: #000000 !important;
}

/* Navigation Header */
.navbar-default {
    background: black !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    padding: 10px 0 !important;
    transition: all 0.4s ease !important;
}

.navbar-logo-img {
    width: 210px;
    max-width: 100%;
    height: auto;
    transition: width 0.3s ease;
}

.navbar-default .navbar-nav>li>a {
    color: var(--text-light) !important;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 15px !important;
    margin: 5px 2px !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: var(--accent-gold) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.navbar-quote-btn {
    background: var(--primary-gold-gradient) !important;
    color: #000000 !important;
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
    margin-left: 15px;
    display: inline-block;
    cursor: pointer;
}

.navbar-quote-btn:hover {
    box-shadow: 0 4px 15px rgba(184, 138, 68, 0.4) !important;
    transform: translateY(-1px);
}

.navbar-toggle {
    border-color: rgba(255, 255, 255, 0.15) !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.navbar-toggle .icon-bar {
    background-color: var(--accent-gold) !important;
}

/* Mobile Navbar Collapse Menu Styling */
@media (max-width: 767px) {
    .navbar-collapse {
        background: rgba(11, 15, 25, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-default .navbar-nav {
        margin: 0 !important;
        padding-top: 0 !important;
    }

    .navbar-default .navbar-nav>li>a {
        padding: 12px 15px !important;
        margin: 4px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 15px !important;
    }

    .navbar-quote-btn {
        margin-left: 0 !important;
        margin-top: 12px !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
    }

    .navbar-logo-img {
        width: 160px !important;
        margin-top: 4px;
    }
}

/* Hero Section */
#home-area {
    background: linear-gradient(135deg, rgba(7, 10, 16, 0.94) 0%, rgba(11, 15, 25, 0.8) 1%), url('../img/hero_elevator_circular.png') no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 110px !important;
}

.hero-wrap {
    padding-top: 40px;
    padding-bottom: 50px;
}

.home-content h1 {
    font-size: 4.6rem !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -2px;
    color: #ffffff !important;
    margin-bottom: 25px;
}

.home-content h1 span.gold-text {
    background: var(--primary-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: block;
}

.home-content p {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    color: rgba(248, 250, 252, 0.8) !important;
    margin-bottom: 35px !important;
    max-width: 580px;
}

.hero-btn-filled {
    background: var(--primary-gold-gradient) !important;
    color: #000000 !important;
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 32px !important;
    border-radius: 4px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(184, 138, 68, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    margin-right: 15px;
    text-decoration: none !important;
    cursor: pointer;
}

.hero-btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 138, 68, 0.4) !important;
    color: #000000 !important;
}

.hero-btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 14px 30px !important;
    border-radius: 4px !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none !important;
}

.hero-btn-outline i {
    margin-left: 8px;
    font-size: 12px;
}

.hero-btn-outline:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .home-content h1 {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 767px) {
    #home-area {
        min-height: auto;
        padding-top: 90px !important;
        padding-bottom: 30px !important;
    }

    .home-content {
        text-align: center !important;
        padding-top: 10px !important;
    }

    .home-content h1 {
        font-size: 2.5rem !important;
        letter-spacing: -1px;
    }

    .home-content p {
        font-size: 1.05rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-btn-filled {
        margin-right: 0 !important;
        margin-bottom: 12px !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero-btn-outline {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 2.1rem !important;
    }
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: rgba(11, 15, 25, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 20px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 24px;
    color: var(--accent-gold);
    margin-right: 15px;
}

.stat-number {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

@media (max-width: 767px) {
    .hero-stats-bar {
        padding: 15px 0;
    }

    .stat-item {
        justify-content: flex-start;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-bottom: 10px;
    }
}

/* Our Solutions (5-Column Responsive Grid) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card-col {
    width: 100%;
}

.solution-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.solution-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.solution-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-img-wrap img {
    transform: scale(1.06);
}

.solution-icon-wrap {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.solution-icon-wrap i {
    color: var(--accent-gold);
    font-size: 18px;
}

.solution-content {
    padding: 35px 20px 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-content h3 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-top: 0;
    margin-bottom: 10px;
}

.solution-content p {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solution-link {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
}

.solution-link:hover {
    color: var(--text-dark) !important;
}

/* AI Lift Advisor */
.ai-advisor-row {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 45px 40px !important;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 767px) {
    .ai-advisor-row {
        padding: 24px 16px !important;
    }

    .ai-advisor-info h3 {
        font-size: 1.5rem !important;
    }
}

.ai-advisor-info h3 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-top: 0;
    margin-bottom: 10px;
    color: #0f172a !important;
}

.ai-advisor-info p {
    font-size: 0.95rem !important;
    color: #64748b !important;
    line-height: 1.6;
    margin-bottom: 25px;
}

.advisor-form-group {
    margin-bottom: 18px;
    width: 100% !important;
}

.advisor-form-group label {
    font-size: 12px;
    color: #475569 !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.advisor-select {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    height: 48px !important;
    border-radius: 8px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    width: 100% !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.advisor-select option {
    background: #ffffff !important;
    color: #0f172a !important;
}

.advisor-select:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3) !important;
    outline: none;
}

/* Recommended Lift Card */
.recommendation-card {
    background: #fdfbf7 !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 12px !important;
    padding: 32px 28px !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .recommendation-card {
        margin-top: 25px;
    }
}

.recommendation-label {
    font-size: 11px;
    color: #b88a44 !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.recommendation-card h3 {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    margin-top: 0;
    margin-bottom: 4px;
    color: #0f172a !important;
    text-transform: uppercase;
}

.recommendation-capacity {
    font-size: 13px;
    color: #64748b !important;
    margin-bottom: 20px;
    display: block;
}

.recommendation-specs {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.recommendation-specs li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #334155 !important;
}

.recommendation-specs li::before {
    content: "✓";
    font-family: var(--font-body);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-size: 15px;
}

.recommendation-btn {
    background: var(--accent-gold) !important;
    color: #000000 !important;
    font-family: var(--font-headings);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    align-self: flex-start;
    z-index: 5;
    transition: all 0.3s ease;
}

.recommendation-btn:hover {
    box-shadow: 0 4px 12px rgba(184, 138, 68, 0.3);
}

/* Engineered For Excellence Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem !important;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-dark) !important;
}

.feature-card p {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    line-height: 1.6;
    margin: 0;
}

/* Featured Projects Section */
.projects-header-cta {
    text-align: right;
    padding-top: 30px;
}

@media (max-width: 991px) {
    .projects-header-cta {
        text-align: left !important;
        padding-top: 10px !important;
        margin-bottom: 20px;
    }
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 360px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .project-card {
        height: 280px;
    }
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(11, 15, 25, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
    color: #ffffff;
}

.project-overlay h3 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 1.2rem !important;
    color: #ffffff !important;
}

.project-location {
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.project-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.view-all-projects-btn {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    background: transparent;
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
}

.view-all-projects-btn:hover {
    background: var(--accent-gold);
    color: #000000 !important;
}

/* Project Carousel Nav Buttons */
.project-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    background: var(--accent-gold);
    color: #000000;
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.project-nav-btn.prev-btn {
    left: -22px;
}

.project-nav-btn.next-btn {
    right: -22px;
}

@media (max-width: 991px) {
    .project-nav-btn {
        display: none;
    }
}

/* Modernization Section & Before/After Slider */
.modernization-right-col {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .modernization-right-col {
        padding-left: 15px !important;
        margin-top: 40px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.06);
    touch-action: none;
    user-select: none;
}

@media (max-width: 767px) {
    .slider-container {
        height: 270px;
    }
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-after {
    z-index: 2;
    width: 50%;
    border-right: 3px solid var(--accent-gold);
}

.slider-label {
    position: absolute;
    bottom: 15px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 5;
}

.slider-label.label-before {
    left: 15px;
}

.slider-label.label-after {
    right: 15px;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    color: #000000;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: ew-resize;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transition: transform 0.2s ease;
    touch-action: none;
    user-select: none;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Service Support Grid */
.support-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .support-service-grid {
        grid-template-columns: 1fr;
    }
}

.support-service-item {
    background: #ffffff !important;
    border: 1px solid ffffff;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.support-service-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(248, 248, 248, 0.25);
}

.support-service-icon {
    font-size: 22px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.support-service-item h4 {
    font-size: 1.1rem !important;
    margin-top: 0;
    margin-bottom: 5px;
    color: black !important;
}

.support-service-item p {
    font-size: 13px !important;
    color: black !important;
    margin: 0 !important;
}

/* Founders Row */
.founders-row {
    margin-top: 35px;
}

.founder-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.founder-card h3 {
    margin-top: 0;
    margin-bottom: 4px;
    color: var(--text-dark) !important;
    font-size: 1.35rem !important;
}

.founder-role {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

/* What Our Clients Say */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
}

.testimonial-quote {
    font-size: 28px;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: var(--text-dark) !important;
    margin-bottom: 25px !important;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.author-name {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    display: block;
}

.author-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Banner Section */
.project-cta-banner {
    background: linear-gradient(135deg, #0B0F19 0%, #151F33 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 55px 0 !important;
}

.project-cta-banner h2 {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    margin-top: 0;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .project-cta-banner h2 {
        font-size: 1.8rem !important;
    }
}

.project-cta-banner p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
}

.cta-banner-btn-wrap {
    text-align: right;
    padding-top: 15px;
}

@media (max-width: 991px) {
    .cta-banner-btn-wrap {
        text-align: left !important;
        margin-top: 20px;
        padding-top: 0 !important;
    }
}

@media (max-width: 767px) {
    .cta-expert-btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 10px;
    }
}

.cta-expert-btn {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
    color: #ffffff !important;
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 14px 28px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-decoration: none !important;
}

.cta-expert-btn i {
    margin-left: 8px;
}

.cta-expert-btn:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Modal Popup Redesign */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    background: rgba(7, 10, 16, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-modal.modal-open {
    display: flex;
    opacity: 1;
}

.modal-content-wrap {
    background: var(--bg-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 30px;
    max-width: 520px;
    width: 92%;
    position: relative;
    box-shadow: var(--shadow-xl);
    color: #ffffff;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 575px) {
    .modal-content-wrap {
        padding: 25px 20px;
        width: 95%;
    }
}

.quote-modal.modal-open .modal-content-wrap {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.close-modal-btn:hover {
    color: #ffffff;
}

.modal-content-wrap h3 {
    font-size: 1.7rem !important;
    margin-top: 0;
    margin-bottom: 6px;
    color: #ffffff !important;
}

.modal-content-wrap p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
}

.modal-content-wrap .form-group {
    width: 100% !important;
    margin-bottom: 16px !important;
}

.modal-content-wrap .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    height: 48px !important;
    border-radius: 6px !important;
    padding: 10px 15px !important;
    width: 100% !important;
    font-size: 14px !important;
}

.modal-content-wrap textarea.form-control {
    height: 100px !important;
    resize: vertical;
}

.modal-content-wrap .form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3) !important;
}

.modal-content-wrap .send-button {
    width: 100% !important;
    text-align: center;
    border-radius: 6px !important;
    background: var(--primary-gold-gradient) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 14px !important;
    font-size: 14px !important;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.modal-content-wrap .send-button:hover {
    box-shadow: 0 4px 15px rgba(184, 138, 68, 0.4);
}

.modal-content-wrap .form-group span {
    color: #f87171 !important;
    margin-top: 4px !important;
    display: block;
    font-size: 12px;
}

/* Footer Section */
footer {
    background: var(--bg-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 60px 0 35px 0 !important;
}

.footer-logo-wrap img {
    margin-bottom: 18px;
}

.footer-logo-wrap p {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: #000000 !important;
    border-color: transparent;
}

.footer-links-col h4 {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links-col li {
    margin-bottom: 10px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-links-col a:hover {
    color: var(--accent-gold) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 45px;
    padding-top: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px !important;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold) !important;
}

/* WhatsApp Badge */
.whatsapp-badge {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 767px) {
    .whatsapp-badge {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

/* Responsive Fixes Breakdown */
@media (max-width: 991px) {
    .floating-sidebar {
        display: none;
    }

    .footer-links-col {
        margin-top: 30px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center !important;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* WhatsApp Icon Fix & Definition */
.fa-whatsapp {
    font-family: 'FontAwesome', sans-serif;
}

.fa-whatsapp:before {
    content: "\f232";
}

/* Product Detail Modal Styling */
.product-modal-wrap {
    max-width: 780px !important;
    width: 94% !important;
    padding: 35px 35px 30px 35px !important;
}

.product-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.modal-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px !important;
    margin-bottom: 0 !important;
}

.product-modal-body {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.product-intro-box p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.modal-spec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 22px 0;
}

.modal-spec-card h3 {
    font-size: 1.1rem !important;
    color: var(--accent-gold) !important;
    margin-top: 0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-val {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 2px;
}

.modal-benefits-section {
    margin: 22px 0;
}

.modal-benefits-section h3,
.modal-types-section h3 {
    font-size: 1.1rem !important;
    color: var(--accent-gold) !important;
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-gold);
    font-size: 14px;
}

.modal-notice-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 6px 6px 0;
    padding: 14px 18px;
    margin: 22px 0;
}

.modal-notice-box p {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.modal-notice-box p i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.elevator-type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 18px 20px;
    margin-top: 14px;
    transition: border-color 0.3s ease;
}

.elevator-type-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.elevator-type-card h4 {
    font-size: 1rem !important;
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.elevator-type-card h4 i {
    color: var(--accent-gold);
}

.elevator-type-card p {
    margin-bottom: 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.product-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 25px;
    text-align: right;
}

@media (max-width: 575px) {
    .product-modal-wrap {
        padding: 25px 20px !important;
    }
    .spec-item {
        width: 100% !important;
        margin-bottom: 10px;
    }
    .product-modal-footer {
        text-align: center;
    }
    .product-modal-footer .hero-btn-filled {
        width: 100%;
    }
}