:root {
    --primary-color: #00ca72;
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 0, 202, 114;
    --secondary-color: #1a1a1a;
    --dark-bg: #101820;
    --light-bg: #f0f2f5;
    --text-dark: #333333;
    --text-light: #ffffff;
    --accent-color: #00e676;
    --border-color: #e2e5e9;
    --shadow-premium: 0 10px 40px rgba(0,0,0,0.06);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Utils */
.btn{
    --bs-btn-font-weight: 600;
    --bs-btn-border-radius: 8px;
    --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: #00b365;
    --bs-btn-hover-border-color: #00b365;
    --bs-btn-active-bg: #00b365;
    --bs-btn-active-border-color: #00b365;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
}

.btn-secondary {
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: #1a1a1a;
    --bs-btn-hover-border-color: #1a1a1a;
    --bs-btn-active-bg: #1a1a1a;
    --bs-btn-active-border-color: #1a1a1a;
}

.btn-outline-secondary {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(0, 202, 114, 0.3);
}
.btn-outline-primary:hover {
    box-shadow: 0 5px 15px rgba(0, 202, 114, 0.3);
}
.btn-secondary:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.text-primary {
    color: var(--primary-color) !important;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-right: 15px;
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 7px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 4px;
    white-space: nowrap;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(rgba(16, 24, 32, 0.8), rgba(16, 24, 32, 0.8)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.quote-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    color: var(--text-dark);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.quote-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
}

/* Quote card form inputs */
.quote-card .form-control,
.quote-card .form-select {
    background-color: #f5f7fa;
    border: 1.5px solid #e8ecf0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    padding: 10px 12px;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 202, 114, 0.12);
}

.quote-card .form-control::placeholder {
    color: #aab0b8;
    font-size: 13px;
}

/* Dimension input group */
.dim-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f5f7fa;
    border: 1.5px solid #e8ecf0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dim-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 202, 114, 0.12);
    background: #fff;
}

.dim-field {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 13px !important;
    padding: 10px 12px !important;
}

.dim-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #aab0b8;
    background: #edf0f3;
    align-self: stretch;
    border-left: 1.5px solid #e8ecf0;
    border-right: 1.5px solid #e8ecf0;
}

@media (min-width: 992px) {
    .navbar {
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px !important;
    }
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text .badge-custom {
    background-color: rgba(0, 202, 114, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* Features Bar */
.features-bar {
    background-color: #1c2732;
    padding: 30px 0;
    color: white;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 202, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

/* Process Section */
.process-section {
    padding: 70px 0;
    background: #fff;
}

.ordering-steps {
    position: relative;
    padding: 0;
}

/* Connecting line for Desktop (992px+) */
@media (min-width: 992px) {
    .ordering-steps::before {
        content: '';
        position: absolute;
        top: 65px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg, #e4e7ec 0px, #e4e7ec 8px, transparent 8px, transparent 16px);
        z-index: 0;
    }
}

.order-step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card-body {
    padding: 20px 10px;
}

.step-badge {
    display: inline-block;
    padding: 2px 12px;
    background: #f8f9fa;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #667085;
    margin-bottom: 25px; /* Offset for line */
    transition: all 0.3s;
}

.step-badge.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1.5px solid #e4e7ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #667085;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.step-icon.active, .order-step-card:hover .step-icon {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 202, 114, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 202, 114, 0.12);
}

.step-info h6 {
    font-size: 15px;
    color: #1d2939;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 12px;
    color: #667085;
    line-height: 1.4;
}

/* Premium Vertical Stepper for Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .ordering-steps {
        padding: 10px 0;
    }
    
    /* Solid Vertical Connector */
    .ordering-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 28px;
        width: 2px;
        background: #e4e7ec;
        z-index: 0;
    }
    
    .order-step-card {
        text-align: left;
        margin-bottom: 12px;
    }
    
    .order-step-card:last-child {
        margin-bottom: 0;
    }
    
    .step-card-body {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 18px 18px 18px 55px; /* Leave room for line/badge */
        background: #fff;
        border: 1px solid #f2f4f7;
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    
    .order-step-card:hover .step-card-body {
        border-color: rgba(0, 202, 114, 0.2);
        background: rgba(0, 202, 114, 0.02);
    }

    .step-badge {
        position: absolute;
        left: 14px;
        top: 28px;
        z-index: 2;
        width: 30px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0;
        font-size: 12px;
        box-shadow: 0 0 0 4px #fff;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-info {
        flex: 1;
    }
    
    .step-info h6 {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .step-info p {
        font-size: 12px;
        opacity: 0.8;
    }
}

/* Featured Service */
.featured-service {
    padding: 70px 0;
    background-color: var(--light-bg);
}

.service-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Info Cards */
.info-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
}

/* Service Swiper Specific Matching Heights */
.service-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.service-swiper .info-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-bg);
    padding: 70px 0;
    color: white;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
}

.stats-section .stat-item p {
    color: rgba(255,255,255,0.6) !important;
}

/* Projects Section */
.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.project-card img {
    height: 200px;
    object-fit: cover;
}

/* Reviews */
.review-card {
    background: #1c2732;
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.review-card.featured {
    background: var(--primary-color);
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

/* Mega Dropdown */
.mega-dropdown {
    min-width: 560px;
    margin-top: 8px !important;
}

.mega-dd-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 202, 114, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.mega-dropdown .dropdown-item {
    white-space: normal;
    transition: background 0.2s;
}

.mega-dropdown .dropdown-item:hover {
    background-color: rgba(0, 202, 114, 0.07);
}

.mega-dropdown .dropdown-item:hover .mega-dd-icon {
    background: var(--primary-color);
    color: white;
}

.mega-dropdown .dropdown-item.active {
    background-color: rgba(0, 202, 114, 0.12);
    color: var(--primary-color);
}

.mega-dropdown .dropdown-item.active .mega-dd-icon {
    background: var(--primary-color);
    color: white;
}

.mega-dropdown .dropdown-item.active .fw-bold {
    color: var(--primary-color) !important;
}

.mega-dropdown .dropdown-item.active .text-muted {
    color: rgba(0, 202, 114, 0.7) !important;
}

/* Offcanvas mobile */
.offcanvas-link:hover {
    background-color: rgba(0, 202, 114, 0.08);
    color: var(--primary-color) !important;
}

.offcanvas {
    max-width: 300px;
}

/* Responsive Padding & Spacing */
@media (max-width: 991px) {
    .hero-section, .process-section, .featured-service, .stats-section, footer {
        padding: 60px 0;
    }
    .hero-text h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
    .stats-section {
        padding: 40px 0;
    }
    .info-card {
        padding: 20px;
    }
}

/* ============================================
   AUTH PAGES (login.html / register.html)
   ============================================ */
.auth-section {
    min-height: calc(100vh - 110px);
    background: linear-gradient(135deg, rgba(16,24,32,0.97) 0%, rgba(16,24,32,0.92) 100%),
                url('../img/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Left branding panel */
.auth-brand-panel {
    color: white;
    padding: 20px 40px 20px 0;
}

.auth-brand-panel .brand-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    display: inline-block;
    text-decoration: none;
    color: white;
}

.auth-brand-panel .brand-logo span {
    color: var(--primary-color);
}

.auth-brand-panel h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.auth-brand-panel h1 .highlight {
    color: var(--primary-color);
}

.auth-brand-panel p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    line-height: 1.7;
}

.auth-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.auth-benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.auth-benefit-list li .bi {
    width: 30px;
    height: 30px;
    background: rgba(0,202,114,0.15);
    border: 1px solid rgba(0,202,114,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 13px;
    flex-shrink: 0;
}

.auth-stat-row {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.auth-stat-row .stat-item h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.auth-stat-row .stat-item p {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Auth Card */
.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.auth-card .auth-card-header {
    margin-bottom: 28px;
}

.auth-card .auth-card-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.auth-card .auth-card-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Auth form inputs (inherit quote-card style) */
.auth-card .form-control,
.auth-card .form-select {
    background-color: #f5f7fa;
    border: 1.5px solid #e8ecf0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    padding: 10px 12px;
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 202, 114, 0.12);
}

.auth-card .form-control::placeholder {
    color: #aab0b8;
    font-size: 13px;
}

/* Input with icon */
.auth-input-wrap {
    position: relative;
}

.auth-input-wrap .input-icon {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    color: #aab0b8;
    font-size: 15px;
    pointer-events: none;
    z-index: 5;
}

.auth-input-wrap .form-control {
    padding-left: 38px !important;
}

.auth-input-wrap .toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aab0b8;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    z-index: 5;
    transition: color 0.2s;
}

.auth-input-wrap .toggle-password:hover {
    color: var(--primary-color);
}

/* Social login */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #ccc;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8ecf0;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid #e8ecf0;
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-social:hover {
    border-color: var(--primary-color);
    background: rgba(0,202,114,0.04);
    color: #333;
}

.btn-social img {
    width: 18px;
    height: 18px;
}

/* Checkbox custom */
.auth-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-card .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 202, 114, 0.12);
    border-color: var(--primary-color);
}

.auth-footer-link {
    font-size: 14px;
    text-align: center;
    color: #888;
    margin-top: 20px;
}

.auth-footer-link a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

/* Password strength */
.password-strength {
    margin-top: 6px;
}

.strength-bar {
    height: 3px;
    border-radius: 2px;
    background: #e8ecf0;
    margin-bottom: 4px;
    overflow: hidden;
}

.strength-bar .fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
    width: 0%;
}

.strength-text {
    font-size: 11px;
    color: #aab0b8;
}

/* Step progress for register */
.reg-step-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 2px solid #e8ecf0;
    padding-bottom: 0;
}

.reg-step-tabs .step-tab {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #aab0b8;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: default;
}

.reg-step-tabs .step-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.reg-step-tabs .step-tab.done {
    color: var(--primary-color);
}

/* Mobile auth */
@media (max-width: 991px) {
    .auth-brand-panel {
        padding: 0 0 32px 0;
        text-align: center;
    }

    .auth-brand-panel h1 {
        font-size: 26px;
    }

    .auth-stat-row {
        justify-content: center;
    }

    .auth-benefit-list {
        display: none;
    }

    .auth-card {
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .auth-section {
        padding: 30px 0;
        min-height: auto;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-card {
        border-radius: 16px;
        padding: 24px 18px;
    }
}

/* ============================================
   INNER PAGE HERO (faq, contact, etc.)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, rgba(16,24,32,0.96) 0%, rgba(16,24,32,0.88) 100%),
                url('../img/hero-bg.png') center/cover no-repeat;
    padding: 70px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.page-hero .page-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,202,114,0.12);
    border: 1px solid rgba(0,202,114,0.35);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0;
}

.page-breadcrumb .breadcrumb-item, .breadcrumb-light .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}
.page-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.page-breadcrumb .breadcrumb-item a:hover { color: var(--primary-color); }
.page-breadcrumb .breadcrumb-item.active { color: white; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Breadcrumb Light (for light sections like project details) */
.breadcrumb-light .breadcrumb-item a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-light .breadcrumb-item a:hover { color: var(--primary-color); }
.breadcrumb-light .breadcrumb-item.active { color: #1a1a1a; }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }

@media (max-width: 768px) {
    .page-hero { padding: 50px 0 40px; }
    .page-hero h1 { font-size: 32px; }
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-search-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.faq-search-wrap .bi-search {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #aab0b8;
    font-size: 16px;
    pointer-events: none;
}

.faq-search-wrap input {
    padding-left: 44px !important;
    padding-right: 130px !important;
    border-radius: 50px !important;
    border: 1.5px solid #e8ecf0 !important;
    background: #fff !important;
    font-size: 14px;
    height: 52px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-search-wrap input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0,202,114,0.12), 0 4px 20px rgba(0,0,0,0.06) !important;
    outline: none;
}

.faq-search-wrap .search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 40px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
}

/* FAQ Category Pills */
.faq-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.faq-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid #e8ecf0;
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.faq-cat-pill:hover,
.faq-cat-pill.active {
    border-color: var(--primary-color);
    background: rgba(0,202,114,0.07);
    color: var(--primary-color);
}

.faq-cat-pill .bi {
    font-size: 15px;
    color: var(--primary-color);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 1.5px solid #eef0f4;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    background: #fff;
    padding: 18px 22px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(0,202,114,0.04);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ca72'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    padding: 4px 22px 20px;
    background: rgba(0,202,114,0.03);
}

/* FAQ Still have questions CTA */
.faq-cta-card {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1c2732 100%);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(0,202,114,0.08);
    border-radius: 50%;
}

.faq-cta-card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 150px; height: 150px;
    background: rgba(0,202,114,0.05);
    border-radius: 50%;
}

.faq-cta-card h3 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.faq-cta-card p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 28px; }

.faq-contact-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: white;
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,202,114,0.1);
    transform: translateY(-3px);
}

.contact-info-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(0,202,114,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.contact-info-card:hover .icon-wrap {
    background: var(--primary-color);
    color: white;
}

.contact-info-card h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.contact-info-card small {
    font-size: 12px;
    color: #aaa;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border: 1.5px solid #eef0f4;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background-color: #f5f7fa;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    padding: 12px 14px;
    transition: all 0.2s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,202,114,0.12);
}

.contact-form-card .form-control::placeholder { color: #aab0b8; font-size: 13px; }

.contact-form-card textarea.form-control { resize: none; }

/* Subject tags */
.subject-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.subject-tag {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid #e8ecf0;
    background: #f5f7fa;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.subject-tag:hover,
.subject-tag.selected {
    border-color: var(--primary-color);
    background: rgba(0,202,114,0.08);
    color: var(--primary-color);
}

/* Map */
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #eef0f4;
    height: 280px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Business hours table */
.hours-table { width: 100%; font-size: 13px; }
.hours-table tr td:first-child { color: #888; padding: 5px 0; }
.hours-table tr td:last-child { color: var(--text-dark); font-weight: 600; text-align: right; }
.hours-table tr.today td { color: var(--primary-color) !important; }

/* Social row */
.contact-social a {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 17px;
    transition: all 0.2s;
    text-decoration: none;
}

.contact-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-form-card { padding: 24px 18px; }
    .faq-cta-card { padding: 36px 20px; }
}

/* ============================================
   SERVICE PAGES (cnc, 3d-printing, laser, etc.)
   ============================================ */

/* Highlight strip below hero */
.service-highlights {
    background: var(--dark-bg);
    padding: 28px 0;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
}

.highlight-item .h-icon {
    width: 46px; height: 46px;
    background: rgba(0,202,114,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-item h6 { font-size: 14px; font-weight: 700; margin-bottom: 1px; }
.highlight-item small { color: rgba(255,255,255,0.45); font-size: 12px; }

/* Capability cards */
.capability-card {
    border: 1.5px solid #eef0f4;
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    transition: all 0.3s;
    background: #fff;
}

.capability-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,202,114,0.1);
    transform: translateY(-4px);
}

.capability-card .cap-icon {
    width: 48px; height: 48px;
    background: rgba(0,202,114,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 14px;
    transition: all 0.3s;
}

.capability-card:hover .cap-icon {
    background: var(--primary-color);
    color: white;
}

.capability-card h6 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.capability-card p  { font-size: 13px; color: #777; margin: 0; line-height: 1.6; }

/* Spec table */
.spec-table { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
.spec-table tr td {
    padding: 10px 14px;
    font-size: 13px;
    background: #f8f9fb;
    border: none;
}
.spec-table tr td:first-child {
    color: #888;
    font-weight: 600;
    border-radius: 8px 0 0 8px;
    width: 45%;
}
.spec-table tr td:last-child {
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 0 8px 8px 0;
}

/* Material chips */
.material-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.material-chip {
    padding: 6px 14px;
    border-radius: 50px;
    background: #f5f7fa;
    border: 1.5px solid #e8ecf0;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
    cursor: default;
}
.material-chip:hover,
.material-chip.active {
    background: rgba(0,202,114,0.08);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Service process steps (Timeline Style) */
.svc-steps { 
    counter-reset: step; 
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}
/* Vertical connecting line */
.svc-steps::after {
    content: "";
    position: absolute;
    left: 28px; 
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #dde2e6 0, #dde2e6 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.svc-step {
    position: relative;
    padding-left: 85px;
    padding-bottom: 40px;
    margin-bottom: 0;
    z-index: 1; 
}
.svc-step:last-child {
    padding-bottom: 0;
}
.svc-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 6px; 
    top: 0;
    width: 46px; 
    height: 46px;
    background: #fff;
    border: 2.5px solid #eef0f4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800;
    color: #a0a6b1;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 5px #fff; /* to clear the line */
}
.svc-step:hover::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 5px #fff, 0 8px 20px rgba(0,202,114,0.3);
    transform: scale(1.1);
}
.svc-step h6 { 
    font-size: 18px; 
    font-weight: 800; 
    margin-bottom: 8px; 
    color: #1a1a1a;
    padding-top: 10px; /* Align text vertically with the circle */
    transition: color 0.3s ease;
}
.svc-step:hover h6 { 
    color: var(--primary-color); 
}
.svc-step p { 
    font-size: 15px; 
    color: #666; 
    margin: 0; 
    line-height: 1.7; 
}

/* Quote CTA banner */
.quote-cta-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1c2732 100%);
    border-radius: 20px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    color: white;
}
.quote-cta-banner::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 280px; height: 280px;
    background: rgba(0,202,114,0.06);
    border-radius: 50%;
}
.quote-cta-banner::after {
    content: '';
    position: absolute;
    left: 40%; bottom: -60px;
    width: 180px; height: 180px;
    background: rgba(0,202,114,0.04);
    border-radius: 50%;
}
.quote-cta-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.quote-cta-banner p  { color: rgba(255,255,255,0.6); margin-bottom: 28px; font-size: 15px; }

/* ============================================
   WHY US PAGE
   ============================================ */
.why-stat-card {
    background: white;
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}
.why-stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,202,114,0.1);
    transform: translateY(-4px);
}
.why-stat-card h3,
.why-stat-card .stat-num { font-size: 36px; font-weight: 800; color: var(--primary-color); margin-bottom: 4px; }
.why-stat-card p,
.why-stat-card .stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: #888; margin: 0; }

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: #fff;
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.cert-badge:hover {
    border-color: rgba(0,202,114,0.4);
    box-shadow: 0 12px 30px rgba(0,202,114,0.08);
    transform: translateY(-4px);
}
.cert-badge .cert-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,202,114,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px; /* HTML has an mt-2 on the next element so keeping this small */
    transition: all 0.3s;
}
.cert-badge:hover .cert-icon {
    background: var(--primary-color);
}
.cert-badge .cert-icon i {
    color: var(--primary-color) !important;
    font-size: 24px;
    transition: color 0.3s;
}
.cert-badge:hover .cert-icon i {
    color: #fff !important;
}
.cert-badge .fw-bold {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.cert-badge .text-muted {
    font-size: 13px;
    line-height: 1.4;
}

/* Facility card */
.facility-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #eef0f4;
    transition: all 0.3s;
}
.facility-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.facility-card img { width: 100%; height: 200px; object-fit: cover; }
.facility-card .p-3 h6 { font-weight: 700; margin-bottom: 4px; }
.facility-card .p-3 p  { font-size: 13px; color: #777; margin: 0; }

/* Team card */
.team-card {
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    background: white;
}
.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,202,114,0.1);
}
.team-card img { width: 100%; height: 180px; object-fit: cover; }
.team-card .tc-body { padding: 16px; }
.team-card .tc-body h6 { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.team-card .tc-body small { color: var(--primary-color); font-weight: 600; font-size: 12px; }

/* ============================================
   SHARED PROJECTS PAGE
   ============================================ */
.projects-filter-bar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eef0f4;
    position: sticky;
    top: 85px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.proj-filter-pill {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid #e8ecf0;
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.proj-filter-pill:hover,
.proj-filter-pill.active {
    border-color: var(--primary-color);
    background: rgba(0,202,114,0.08);
    color: var(--primary-color);
}

.proj-card {
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.proj-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.proj-card .proj-img-wrap { position: relative; overflow: hidden; height: 200px; }
.proj-card .proj-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.proj-card:hover .proj-img-wrap img { transform: scale(1.05); }
.proj-card .proj-category {
    position: absolute; top: 12px; left: 12px;
    background: rgba(16,24,32,0.75);
    color: white;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.proj-card .proj-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.proj-card .proj-body h6 { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.proj-card .proj-body p  { font-size: 13px; color: #777; line-height: 1.5; flex: 1; margin-bottom: 12px; }
.proj-card .proj-footer {
    padding: 12px 18px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.proj-author { display: flex; align-items: center; gap: 8px; }
.proj-author img { width: 28px; height: 28px; border-radius: 50%; }
.proj-author span { font-size: 12px; font-weight: 600; color: #555; }
.proj-stats { display: flex; gap: 12px; font-size: 12px; color: #aaa; }
.proj-stats span { display: flex; align-items: center; gap: 4px; }

/* Tag chips (inside proj cards) */
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.proj-tag {
    font-size: 11px; font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(0,202,114,0.08);
    border: 1px solid rgba(0,202,114,0.2);
    color: var(--primary-color);
}

/* Upload project CTA */
.upload-proj-cta {
    border: 2px dashed #d0d5dd;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    background: #fafbfc;
    transition: all 0.2s;
    cursor: pointer;
}
.upload-proj-cta:hover {
    border-color: var(--primary-color);
    background: rgba(0,202,114,0.04);
}

@media (max-width: 768px) {
    .service-highlights .highlight-item { padding: 8px 0; }
    .quote-cta-banner { padding: 36px 24px; }
    .quote-cta-banner h2 { font-size: 24px; }
}

/* ============================================
   UTILITY / SHARED CLASSES (replaces inline styles)
   ============================================ */

/* ── Navbar mega-dropdown ── */
.mega-dd-left        { background: #f8f9fa; }
.mega-dd-section     { font-size: 11px; color: #aaa; letter-spacing: 1px; }
.dd-item-name        { font-size: 14px; font-weight: 700; }
.dd-item-desc        { font-size: 12px; }
.new-svc-promo       { background: rgba(0,202,114,0.08); border: 1px solid rgba(0,202,114,0.25); border-radius: 8px; padding: 8px 12px; }
.new-svc-label       { font-size: 12px; }
.navbar-search-input { min-width: 160px; }

/* ── Page hero background variants ── */
.page-hero--sheet  { background-image: linear-gradient(135deg,rgba(16,24,32,.96) 0%,rgba(16,24,32,.88) 100%), url('../img/project-2.png'); background-size: cover; background-position: center; }
.page-hero--laser  { background-image: linear-gradient(135deg,rgba(16,24,32,.96) 0%,rgba(16,24,32,.88) 100%), url('../img/project-1.png'); background-size: cover; background-position: center; }
.page-hero--wire   { background-image: linear-gradient(135deg,rgba(16,24,32,.96) 0%,rgba(16,24,32,.88) 100%), url('../img/project-3.png'); background-size: cover; background-position: center; }
.page-hero--why    { background-image: linear-gradient(135deg,rgba(16,24,32,.96) 0%,rgba(16,24,32,.88) 100%), url('../img/project-1.png'); background-size: cover; background-position: center; }
.page-hero--shared { background-image: linear-gradient(135deg,rgba(16,24,32,.96) 0%,rgba(16,24,32,.88) 100%), url('../img/project-3.png'); background-size: cover; background-position: center; }

/* ── Service pages ── */
.svc-img-wrap  { aspect-ratio: 4/3; background: #f5f7fa; display: flex; align-items: center; justify-content: center; }
.svc-hero-img  { object-fit: cover; height: 420px; }
.cta-inner-row { position: relative; z-index: 1; }

/* ── 3D Printing featured capability card ── */
.cap-card-featured            { border-color: var(--primary-color) !important; }
.cap-card-featured .cap-icon  { background: var(--primary-color) !important; color: white !important; }

/* ── Why Us page ── */
.timeline-year { font-size: 2rem; min-width: 60px; text-align: center; }

/* ── FAQ page ── */
.faq-icon-badge  { width: 28px; height: 28px; background: rgba(0,202,114,0.1); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.faq-icon-sm     { font-size: 13px; }
.sticky-sidebar  { position: sticky; top: 80px; }
.sidebar-link    { font-size: 13px; }
.info-card-dark  { background: linear-gradient(135deg,var(--dark-bg),#1c2732) !important; border: none !important; color: white !important; }
.info-card-dark .card-sub { color: rgba(255,255,255,0.6); }

/* ── Contact page ── */
.text-transform-none { text-transform: none !important; }
.file-drop-zone      { border-style: dashed !important; border-color: #d0d5dd !important; background: #fafbfc; cursor: pointer; }
.file-formats-note   { font-size: 11px; }
.alert-success-custom { background: rgba(0,202,114,0.1); border: 1.5px solid rgba(0,202,114,0.3); color: #00874c; }

/* ── Project Details Page ── */
.proj-gallery-main { width: 100%; height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.proj-gallery-thumb { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.proj-gallery-thumb:hover, .proj-gallery-thumb.active { border-color: var(--primary-color); opacity: 0.8; }
.proj-spec-table th { color: #888; font-weight: 500; padding-bottom: 12px; }
.proj-spec-table td { font-weight: 700; color: #1a1a1a; padding-bottom: 12px; }
.author-card { background: #fff; border: 1px solid #eef0f4; border-radius: 12px; padding: 24px; text-align: center; }
.author-card img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 16px; }
.proj-card-img-top { width: 100%; height: 180px; object-fit: cover; border-radius: 12px 12px 0 0; }
.badge-xs            { font-size: 10px; }

/* ── User Profile Page ── */
.profile-hero { 
    background: linear-gradient(135deg, rgba(16,24,32,0.98) 0%, rgba(16,24,32,0.9) 100%), url('../img/hero-bg.png') center/cover no-repeat;
    padding: 80px 0 60px;
    color: white;
}
.profile-avatar-xl { 
    width: 140px; 
    height: 140px; 
    border-radius: 50%; 
    border: 4px solid #fff; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: -70px;
    background: #fff;
}
.author-stats-bar { 
    background: white; 
    border-bottom: 1px solid #eef0f4; 
    padding: 20px 0; 
}
.stat-item { text-align: center; }
.stat-value { font-size: 20px; font-weight: 800; color: #1a1a1a; display: block; }
.stat-label { font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* Sidebar Premium Cards */
.sidebar-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.sidebar-card:hover { border-color: var(--primary-color); box-shadow: 0 5px 20px rgba(0,202,114,0.05); }

.sidebar-card h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    padding-left: 12px;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 20px;
}

.skill-badge { 
    display: inline-block; 
    padding: 7px 15px; 
    background: #f5f7fa; 
    color: #555; 
    border: 1px solid #eef0f4;
    border-radius: 50px; 
    font-size: 12px; 
    font-weight: 600; 
    margin: 0 8px 10px 0;
    transition: all 0.2s;
}
.skill-badge:hover { 
    background: var(--primary-color); 
    border-color: var(--primary-color);
    color: white; 
    transform: scale(1.05);
}

.impact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}
.impact-row:last-child { border-bottom: none; }
.impact-row .label { font-size: 13px; color: #777; font-weight: 500; }
.impact-row .value { font-size: 14px; font-weight: 700; color: #1a1a1a; }

.profile-social-group {
    display: flex;
    gap: 12px;
}
.profile-social-group a {
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.profile-social-group a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 202, 114, 0.2);
}

.profile-tab { 
    padding: 12px 0; 
    margin-right: 40px; 
    font-weight: 700; 
    font-size: 15px;
    color: #888; 
    text-decoration: none !important; 
    border-bottom: 3px solid transparent; 
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.profile-tab:hover { color: #1a1a1a; }

.profile-tab.active { 
    color: var(--primary-color); 
    border-bottom-color: var(--primary-color); 
}

.profile-tab .count {
    font-size: 11px;
    background: #f0f2f5;
    color: #777;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.profile-tab.active .count {
    background: rgba(0, 202, 114, 0.1);
    color: var(--primary-color);
}

/* ── Auth pages ── */
.link-sm             { font-size: 12px; font-weight: 600; }
.form-check-sm       { font-size: 13px; }

/* ── Shared projects ── */
.icon-upload-xl  { font-size: 2.2rem; }
.icon-3xl        { font-size: 3rem; }

/* ── Index hero CTA section ── */
.index-cta-section { background: linear-gradient(135deg,rgba(10,18,28,.95) 0%,rgba(10,18,28,.90) 100%), url('../img/hero-bg.png') center/cover no-repeat; }

/* ── CNC Quote page ── */
.page-title-lg        { font-size: 22px; }
.page-subtitle-sm     { font-size: 13.5px; }
.cursor-pointer       { cursor: pointer; }
.custom-material-input { max-width: 320px; }
.mat-sub-label        { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #aaa; margin-bottom: 8px; }
.text-muted-light     { color: #aaa; }
.upload-notice-warning { background: rgba(255,193,7,.07) !important; border-color: rgba(255,193,7,.3) !important; color: #856404 !important; }
.text-warning-icon    { color: #e6a817; }
.radio-opt-wide       { flex: 1; min-width: 200px; }
.badge-warning-xs     { color: #e67e22; font-size: 10px; }
.radio-group-col      { flex-direction: column !important; gap: 8px !important; }
.select-md            { max-width: 340px; }
.price-parts-count    { font-size: 11px; color: #ccc; }
.lead-time-inactive   { border-color: #e0e6ed !important; background: #fafbfc !important; }
.sidebar-label        { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #aaa; }
.sidebar-count        { font-size: 12px; color: #aaa; }
.parts-placeholder    { text-align: center; padding: 24px 0; color: #ccc; font-size: 13px; }
.trust-list           { font-size: 12px; color: #888; }

/* Modal shared overrides */
.modal-rounded .modal-content { border-radius: 14px !important; overflow: hidden; }
.modal-header-light  { background: #fafbfc !important; border-bottom: 1px solid #f0f2f5 !important; }
.modal-footer-light  { background: #fafbfc !important; border-top:    1px solid #f0f2f5 !important; }
.modal-body-min      { min-height: 420px; }
.modal-sidebar       { border-right: 1px solid #f0f2f5; background: #fafbfc; }
.modal-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #aaa; margin-bottom: 10px; }
.modal-desc          { font-size: 13px; }
.upload-zone-sm      { padding: 28px !important; }
.upload-icon-sm      { width: 44px !important; height: 44px !important; font-size: 20px !important; }
.modal-upload-title  { font-size: 14px; }

/* Finish modal category pill override */
.opt-pill-cat { font-size: 12px !important; justify-content: flex-start !important; }

        /* ── Quote Page Layout ───────────────────────────────── */
        .quote-page-wrapper {
            background: #f4f6f9;
            min-height: calc(100vh - 60px);
            padding: 32px 0 60px;
        }

        /* ── Service Type Tabs ───────────────────────────────── */
        .service-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .svc-tab {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: #fff;
            border: 2px solid #e0e6ed;
            border-radius: 12px;
            cursor: pointer;
            transition: all .2s;
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 14px;
            min-width: 160px;
        }
        .svc-tab .svc-tab-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #f4f6f9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #888;
            transition: all .2s;
        }
        .svc-tab:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        .svc-tab:hover .svc-tab-icon { background: rgba(0,202,114,.1); color: var(--primary-color); }
        .svc-tab.active {
            border-color: var(--primary-color);
            background: rgba(0,202,114,.06);
            color: var(--primary-color);
        }
        .svc-tab.active .svc-tab-icon { background: rgba(0,202,114,.15); color: var(--primary-color); }
        .svc-tab-label { line-height: 1.2; }
        .svc-tab-label small { font-weight: 400; color: #aaa; font-size: 11px; display: block; }
        .svc-tab.active .svc-tab-label small { color: rgba(0,202,114,.7); }

        /* ── Page Sub-tabs ───────────────────────────────── */
        .page-subtabs {
            display: flex;
            gap: 4px;
            margin-bottom: 22px;
            border-bottom: 2px solid #e0e6ed;
            padding-bottom: 0;
            overflow-x: auto;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .page-subtabs::-webkit-scrollbar { display: none; }
        .page-subtab {
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 600;
            color: #888;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all .2s;
            text-decoration: none;
            flex-shrink: 0;
        }
        .page-subtab:hover { color: var(--primary-color); }
        .page-subtab.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }

        /* ── Main form card ───────────────────────────────── */
        .quote-form-card {
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e0e6ed;
            overflow: hidden;
            margin-bottom: 16px;
        }
        .quote-form-header {
            padding: 18px 24px;
            border-bottom: 1px solid #f0f2f5;
            background: #fafbfc;
        }
        .quote-form-header h6 {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            color: #222;
        }
        .quote-form-header p {
            margin: 4px 0 0;
            font-size: 12.5px;
            color: #999;
        }
        .quote-form-body { padding: 24px; }

        /* ── Upload Zone ───────────────────────────────── */
        .upload-zone {
            border: 2px dashed #c8d0da;
            border-radius: 12px;
            padding: 36px 24px;
            text-align: center;
            background: #fafcff;
            transition: all .2s;
            cursor: pointer;
            position: relative;
        }
        .upload-zone:hover, .upload-zone.dragover {
            border-color: var(--primary-color);
            background: rgba(0,202,114,.04);
        }
        .upload-zone input[type=file] {
            position: absolute; inset: 0; opacity: 0; cursor: pointer;
        }
        .upload-icon {
            width: 56px; height: 56px;
            border-radius: 14px;
            background: rgba(0,202,114,.1);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 14px;
            font-size: 26px;
            color: var(--primary-color);
        }
        .upload-zone h6 { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 6px; }
        .upload-zone p { font-size: 12.5px; color: #999; margin: 0; }
        .upload-formats {
            display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px;
        }
        .fmt-badge {
            background: #f0f2f5;
            border-radius: 5px;
            padding: 2px 8px;
            font-size: 11px;
            font-weight: 600;
            color: #666;
        }
        .upload-notice {
            margin-top: 14px;
            padding: 10px 14px;
            background: rgba(0,202,114,.07);
            border: 1px solid rgba(0,202,114,.2);
            border-radius: 8px;
            font-size: 12px;
            color: #4a7c5f;
            text-align: left;
        }
        .upload-notice i { margin-right: 6px; }

        /* ── Form Row ───────────────────────────────── */
        .form-row {
            display: grid;
            grid-template-columns: 200px 1fr;
            align-items: start;
            gap: 12px 20px;
            padding: 14px 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .form-row:last-child { border-bottom: none; padding-bottom: 0; }
        .form-row-label {
            font-size: 13px;
            font-weight: 600;
            color: #444;
            padding-top: 8px;
        }
        .form-row-label .req { color: #e74c3c; margin-left: 2px; }
        .form-row-label .hint {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: #bbb;
            margin-top: 3px;
            line-height: 1.4;
        }
        .form-row-control {}

        /* ── Option Pills ───────────────────────────────── */
        .pill-group { display: flex; flex-wrap: wrap; gap: 7px; }
        .opt-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            min-width: 120px;
            padding: 6px 14px;
            border: 1.5px solid #dde1e8;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: #555;
            cursor: pointer;
            transition: all .15s;
            background: #fff;
            user-select: none;
            text-align: center;
            box-sizing: border-box;
        }
        .opt-pill:hover { border-color: var(--primary-color); color: var(--primary-color); background: rgba(0,202,114,.04); }
        .opt-pill.active {
            border-color: var(--primary-color);
            background: rgba(0,202,114,.08);
            color: var(--primary-color);
            font-weight: 600;
        }
        .opt-pill.active .pill-check { display: inline-flex; }
        .pill-check {
            display: none;
            width: 16px; height: 16px;
            background: var(--primary-color);
            border-radius: 50%;
            align-items: center; justify-content: center;
            font-size: 9px; color: #fff;
        }

        /* ── Radio Group ───────────────────────────────── */
        .radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
        .radio-opt {
            display: flex; align-items: flex-start; gap: 8px;
            padding: 10px 14px;
            border: 1.5px solid #dde1e8;
            border-radius: 8px;
            cursor: pointer;
            transition: all .15s;
            background: #fff;
            min-width: 120px;
        }
        .radio-opt:hover { border-color: var(--primary-color); }
        .radio-opt.active { border-color: var(--primary-color); background: rgba(0,202,114,.06); }
        .radio-opt input[type=radio] { accent-color: var(--primary-color); margin-top: 2px; flex-shrink: 0; }
        .radio-opt-body { line-height: 1.3; }
        .radio-opt-body strong { font-size: 13px; color: #222; display: block; }
        .radio-opt-body span { font-size: 11.5px; color: #999; }
        .radio-opt.active .radio-opt-body strong { color: var(--primary-color); }

        /* ── Checkbox Group ───────────────────────────────── */
        .check-group { display: flex; flex-wrap: wrap; gap: 8px; }
        .check-opt {
            display: flex; align-items: center; gap: 8px;
            padding: 8px 14px;
            border: 1.5px solid #dde1e8;
            border-radius: 8px;
            cursor: pointer;
            transition: all .15s;
            font-size: 13px; font-weight: 500; color: #555;
        }
        .check-opt:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .check-opt input[type=checkbox] { accent-color: var(--primary-color); }
        .check-opt.active { border-color: var(--primary-color); background: rgba(0,202,114,.06); color: var(--primary-color); }

        /* ── Material sub-section ───────────────────────────────── */
        .material-info-row {
            display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; margin-top: 12px;
        }
        .mat-info-card {
            flex: 1; min-width: 180px;
            background: #f8fafc;
            border: 1px solid #e8ecf1;
            border-radius: 10px;
            padding: 12px 14px;
            display: flex; gap: 12px; align-items: center;
        }
        .mat-thumb {
            width: 44px; height: 44px; border-radius: 8px;
            object-fit: cover; background: #e0e6ed;
            flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: #aaa;
        }
        .mat-info-body { flex: 1; }
        .mat-info-body .mat-name { font-size: 13px; font-weight: 700; color: var(--primary-color); }
        .mat-info-body .mat-rating { font-size: 11px; color: #f5a623; margin-top: 2px; }
        .mat-info-body a { font-size: 11px; color: #aaa; }

        .finish-select-btn {
            display: flex; align-items: center; gap: 10px;
            padding: 9px 16px;
            border: 1.5px solid #dde1e8;
            border-radius: 8px;
            background: #fff;
            font-size: 13px;
            color: #444;
            cursor: pointer;
            transition: all .15s;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
        }
        .finish-select-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .finish-select-btn .finish-icon {
            width: 28px; height: 28px; border-radius: 6px;
            background: linear-gradient(135deg,#c8c8c8,#e8e8e8);
            flex-shrink: 0;
        }

        /* ── Qty input ───────────────────────────────── */
        .qty-input-wrap {
            display: inline-flex; align-items: stretch;
            width: 160px;
            border: 1.5px solid #dde1e8;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            transition: border-color .2s, box-shadow .2s;
        }
        .qty-input-wrap:focus-within { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0,202,114,.12); }
        .qty-btn {
            width: 44px;
            border: none;
            background: #f4f6f9;
            font-size: 20px;
            font-weight: 400;
            color: #666;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: background .15s, color .15s;
            padding: 0;
            line-height: 1;
        }
        #qtyMinus { border-right: 1.5px solid #e8ecf1; }
        #qtyPlus  { border-left:  1.5px solid #e8ecf1; }
        .qty-btn:hover { background: #e4f9ef; color: var(--primary-color); }
        .qty-val {
            flex: 1; border: none; outline: none;
            text-align: center; font-size: 16px; font-weight: 700;
            font-family: 'Outfit', sans-serif; background: #fff;
            color: #222; padding: 10px 0;
            min-width: 0;
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield;
        }
        .qty-val::-webkit-outer-spin-button,
        .qty-val::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* ── Custom text field ───────────────────────────────── */
        .custom-input {
            background: #f8fafc;
            border: 1.5px solid #e0e6ed;
            border-radius: 8px;
            padding: 9px 14px;
            font-size: 13px;
            font-family: 'Outfit', sans-serif;
            color: #333;
            width: 100%;
            transition: border-color .2s, box-shadow .2s;
            resize: vertical;
        }
        .custom-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0,202,114,.12);
            background: #fff;
        }
        .custom-input::placeholder { color: #bbb; }

        /* ── Custom select ───────────────────────────────── */
        .custom-select {
            background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
            border: 1.5px solid #e0e6ed;
            border-radius: 8px;
            padding: 9px 36px 9px 14px;
            font-size: 13px;
            font-family: 'Outfit', sans-serif;
            color: #333;
            -webkit-appearance: none;
            appearance: none;
            cursor: pointer;
            transition: border-color .2s, box-shadow .2s;
        }
        .custom-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0,202,114,.12);
            background-color: #fff;
        }

        /* ── Tolerance row ───────────────────────────────── */
        .tolerance-inline {
            display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
        }
        .tolerance-upload-btn {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 13px; border: 1.5px solid #dde1e8; border-radius: 7px;
            font-size: 12px; font-weight: 600; color: #666; cursor: pointer;
            background: #fff; transition: all .15s;
        }
        .tolerance-upload-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }

        /* ── Sidebar ───────────────────────────────── */
        .quote-sidebar {
            background: #fff;
            border: 1px solid #e0e6ed;
            border-radius: 14px;
            overflow: hidden;
            position: sticky;
            top: 80px;
        }
        .sidebar-head {
            padding: 18px 20px;
            border-bottom: 1px solid #f0f2f5;
            background: #fafbfc;
        }
        .sidebar-head h6 { margin: 0; font-size: 15px; font-weight: 700; }
        .sidebar-body { padding: 18px 20px; }
        .price-row {
            display: flex; justify-content: space-between; align-items: baseline;
            margin-bottom: 8px;
        }
        .price-label { font-size: 13px; color: #888; }
        .price-val { font-size: 22px; font-weight: 800; color: #222; }
        .price-val.rfq { color: var(--primary-color); font-size: 18px; }
        .price-note { font-size: 11.5px; color: #bbb; margin-bottom: 16px; }
        .lead-time-section { margin: 16px 0; }
        .lead-time-section h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #999; margin-bottom: 8px; }
        .lead-time-opt {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 12px;
            border: 1.5px solid var(--primary-color);
            border-radius: 8px;
            background: rgba(0,202,114,.05);
            cursor: pointer;
        }
        .lead-time-opt input[type=radio] { accent-color: var(--primary-color); }
        .lead-time-opt-body strong { font-size: 13px; font-weight: 700; color: #222; display: block; }
        .lead-time-opt-body small { font-size: 11px; color: #aaa; }
        .sidebar-divider { height: 1px; background: #f0f2f5; margin: 14px 0; }
        .parts-summary { margin-bottom: 16px; }
        .part-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 13px;
        }
        .part-row:last-child { border-bottom: none; }
        .part-name { font-weight: 600; color: #333; }
        .part-detail { color: #aaa; font-size: 11.5px; margin-top: 2px; }
        .part-price { font-weight: 700; color: #222; }
        .add-part-btn {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            padding: 11px;
            border: 1.5px dashed #cdd5de;
            border-radius: 8px;
            font-size: 13px; font-weight: 600; color: #888;
            cursor: pointer; transition: all .2s; margin-bottom: 12px;
            background: #fafbfc;
        }
        .add-part-btn:hover { border-color: var(--primary-color); color: var(--primary-color); background: rgba(0,202,114,.04); }
        .submit-btn {
            width: 100%; padding: 13px;
            background: var(--primary-color); border: none;
            border-radius: 10px; color: #fff; font-size: 15px;
            font-weight: 700; font-family: 'Outfit', sans-serif;
            cursor: pointer; transition: all .2s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .submit-btn:hover { background: #00b365; box-shadow: 0 5px 16px rgba(0,202,114,.35); transform: translateY(-1px); }
        .submit-btn:disabled { background: #c8d0da; cursor: not-allowed; transform: none; box-shadow: none; }
        .sidebar-legal { font-size: 11px; color: #bbb; text-align: center; margin-top: 10px; line-height: 1.5; }
        .sidebar-legal a { color: #aaa; }

        /* ── Drawing upload modal ───────────────────────────────── */
        .drawing-upload-btn {
            display: inline-flex; align-items: center; gap: 7px;
            padding: 8px 16px;
            border: 1.5px solid #dde1e8; border-radius: 8px;
            font-size: 13px; font-weight: 600; color: #555;
            background: #fff; cursor: pointer; transition: all .15s;
        }
        .drawing-upload-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .drawing-note {
            margin-top: 8px; font-size: 11.5px; color: #bbb; line-height: 1.5;
        }

        /* ── Section heading separator ───────────────────────────────── */
        .form-section-heading {
            padding: 16px 24px 12px;
            font-size: 12px; font-weight: 700; text-transform: uppercase;
            letter-spacing: .5px; color: #aaa;
            border-bottom: 1px solid #f0f2f5;
            background: #fafbfc;
        }

        /* ── Responsive ───────────────────────────────── */
        @media(max-width:768px) {
            .form-row { grid-template-columns: 1fr; gap: 6px; }
            .form-row-label { padding-top: 0; }
            .quote-sidebar { position: static; margin-top: 16px; }
            .service-tabs { gap: 8px; }
            .svc-tab { min-width: 140px; padding: 10px 14px; }
        }

        /* ── Modal footer buttons ───────────────────────────────── */
        .modal-footer .btn {
            min-width: 120px;
            font-weight: 600;
        }
        .modal-footer .btn-primary {
            min-width: 160px;
        }

        /* ── Info alert ───────────────────────────────── */
        .info-alert {
            display: flex; gap: 10px; align-items: flex-start;
            padding: 11px 14px;
            background: rgba(13,110,253,.05);
            border: 1px solid rgba(13,110,253,.15);
            border-radius: 8px;
            font-size: 12.5px; color: #4a6fa5;
            margin-top: 14px;
        }
        .info-alert i { margin-top: 1px; flex-shrink: 0; color: #4a90d9; }

/* ============================================
   SWIPER SLIDER CUSTOM STYLES
   ============================================ */
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    transform: scale(0.6);
    background: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.swiper-mobile-only .swiper-wrapper {
    display: flex;
}
@media (min-width: 992px) {
    .swiper-mobile-only .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        transform: none !important;
    }
    .swiper-mobile-only .swiper-slide {
        width: calc(25% - 30px) !important;
        margin-right: 30px !important;
        margin-bottom: 30px;
        flex-shrink: 0;
    }
    .project-swiper .swiper-slide {
        width: calc(33.333% - 20px) !important;
        margin-right: 20px !important;
    }
    .swiper-mobile-only .swiper-pagination,
    .swiper-mobile-only .swiper-button-next,
    .swiper-mobile-only .swiper-button-prev {
        display: none !important;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid #eef0f4;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.03);
}
.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
}
.nav-btn i { font-size: 20px; margin-bottom: 1px; }
.nav-btn.active { color: var(--primary-color); }
.nav-btn-center {
    width: 52px; height: 52px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    color: #fff;
    margin-top: -30px;
    box-shadow: 0 4px 15px rgba(0, 202, 114, 0.4);
    font-size: 22px;
}

/* ============================================
   PREMIUM FOOTER STYLES
   ============================================ */
footer {
    background: #0d141d;
    padding: 80px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h5 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

footer .list-unstyled li {
    margin-bottom: 14px;
}

footer .list-unstyled li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer .list-unstyled li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Newsletter */
footer .input-group {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

footer .form-control {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 14px;
    padding-left: 15px;
}

footer .form-control:focus {
    box-shadow: none;
}

footer .form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

footer .btn-primary {
    border-radius: 8px !important;
    padding: 8px 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 202, 114, 0.3);
}

/* Footer Bottom section tweaks */
.footer-copyright {
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
}

/* Mobile Footer Accordion Tweaks */
@media (max-width: 991px) {
    footer .col-lg-3 {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 5px;
    }
    
    footer .col-lg-3:last-child {
        border-bottom: none;
    }

    footer h5 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 0;
        cursor: pointer;
        padding-bottom: 20px;
    }

    footer h5::after {
        content: '\F282'; /* bi-chevron-down */
        font-family: 'bootstrap-icons';
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        font-size: 14px;
        transition: transform 0.3s;
        color: rgba(255,255,255,0.5);
    }

    footer h5:not(.collapsed)::after {
        transform: rotate(180deg);
        color: var(--primary-color);
    }
}

@media (min-width: 992px) {
    footer .collapse {
        display: block !important;
    }
}

/* --- Quote Page & Utility Classes --- */
.cursor-pointer { cursor: pointer; }
.ls-1 { letter-spacing: 1px; }
.ls-sm { letter-spacing: 0.5px; }

.quote-label-caps {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 8px;
    display: block;
}

.quote-info-text {
    font-size: 13px;
    color: #6c757d;
}

.quote-upload-notice {
    background-color: rgba(255, 193, 7, 0.05);
    border: 1px dashed rgba(255, 193, 7, 0.4);
    border-radius: 8px;
    padding: 12px;
}

.quote-notice-success {
    background-color: rgba(0, 202, 114, 0.05);
    border: 1px solid rgba(0, 202, 114, 0.15);
    border-radius: 8px;
}

.quote-modal-nav-item {
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.quote-modal-nav-item:hover {
    background-color: #f8f9fa;
}

.quote-modal-nav-item.active {
    background-color: var(--primary-color);
    color: white !important;
}

.quote-modal-nav-item.active .text-muted {
    color: rgba(255,255,255,0.8) !important;
}

.quote-step-number {
    width: 24px;
    height: 24px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #666;
}

.new-svc-promo {
    background: rgba(0, 202, 114, 0.08);
    border: 1px solid rgba(0, 202, 114, 0.25);
    padding: 12px;
}

.navbar-search-input {
    min-width: 160px;
}

.min-w-200 { min-width: 200px; }
.max-w-320 { max-width: 320px; }
.max-w-340 { max-width: 340px; }
.min-h-420 { min-height: 420px; }
.flex-1 { flex: 1; }
.fs-10 { font-size: 10px; }
.fs-12 { font-size: 12px; }
.text-orange { color: #e67e22; }
.text-muted-50 { color: #ccc !important; }

.quote-empty-state {
    text-align: center;
    padding: 24px 0;
    color: #ccc;
    font-size: 13px;
}

.quote-status-label {
    font-size: 12px;
    color: #aaa;
}


    