/* ================================================================
   TECGYM BRAND COLOR SYSTEM – unified
   ================================================================ */
:root {
    --brand-orange: #FF8400;
    --brand-orange-hover: #E87500;
    --brand-orange-active: #CC6A00;
    --brand-orange-light: #FFF3E6;
    --brand-orange-extra-light: #FFF8F2;
    --brand-gray: #807E7E;
    --brand-gray-dark: #666666;
    --brand-gray-medium: #A3A3A3;
    --brand-gray-light: #E5E5E5;
    --brand-gray-bg: #F8F8F8;
    --neutral-white: #FFFFFF;
    --neutral-heading: #1F2937;
    --neutral-paragraph: #4B5563;
    --neutral-muted: #6B7280;
    --neutral-border: #E5E7EB;
    --neutral-divider: #F2F2F2;
    --neutral-footer: #111827;
    --neutral-bg: #FAFAFA;
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-orange: 0 8px 30px rgba(255, 132, 0, 0.20);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-btn: 50px;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-weight-heading: 700;
    --font-weight-body: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--neutral-white);
    color: var(--neutral-paragraph);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-heading);
    font-weight: var(--font-weight-heading);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================
   BUTTONS – Unified
   ================================================================ */
.btn {
    padding: 12px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--neutral-white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 132, 0, 0.35);
    color: var(--neutral-white);
}
.btn-primary:active {
    background: var(--brand-orange-active);
    transform: translateY(0);
}

.btn-outline-primary {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
}
.btn-outline-primary:hover {
    background: var(--brand-orange);
    color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-cta {
    background: var(--brand-orange);
    color: var(--neutral-white);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
    color: var(--neutral-white);
}

.btn-light {
    background: var(--neutral-white);
    color: var(--brand-orange);
}
.btn-light:hover {
    background: #f0f0f0;
    color: var(--brand-orange-hover);
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 2px;
}

/* ================================================================
   HEADER – Same as homepage
   ================================================================ */
.hdr-6 {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #141e2b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hdr-6 .top-bar {
    background: rgba(14, 23, 34, 0.92);
    padding: 0.4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease;
    min-height: 40px;
    text-align: center;
    overflow: hidden;
}
.hdr-6 .top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.hdr-6 .top-bar-closed {
    display: none;
}
.hdr-6 .top-bar p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0;
    flex: 1;
}
.hdr-6 .top-bar p strong {
    color: var(--brand-orange);
    font-weight: 600;
}
.hdr-6 .top-bar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: color 0.2s;
    flex-shrink: 0;
}
.hdr-6 .top-bar-close:hover {
    color: var(--brand-orange);
}

.hdr-6 .main {
    padding: 0 2rem;
    background: #141e2b;
    position: relative;
    z-index: 2;
}
.hdr-6 .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: relative;
}
.hdr-6 .logo-img {
    height: 44px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.hdr-6 .nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.hdr-6 .nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: all 0.25s;
}
.hdr-6 .nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.hdr-6 .nav a.active {
    color: var(--brand-orange);
    font-weight: 600;
    background: rgba(255, 132, 0, 0.06);
}

.hdr-6 .btn-cta {
    background: var(--brand-orange);
    color: #fff !important;
    padding: 0.4rem 1.6rem !important;
    border-radius: 40px !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.hdr-6 .btn-cta:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
}

.hdr-6 .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.hdr-6 .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s ease;
    transform-origin: center;
}

@media (max-width: 768px) {
    .hdr-6 .inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }
    .hdr-6 .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    .hdr-6 .btn-cta {
        order: 1;
        padding: 0.3rem 1rem !important;
        font-size: 0.8rem;
        margin-left: auto;
    }
    .hdr-6 .logo-img {
        height: 38px;
        order: 0;
        margin-right: auto;
    }
    .hdr-6 .nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        order: 3;
        padding: 0.8rem 0 0.3rem 0;
        gap: 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        margin-top: 8px;
    }
    .hdr-6 .nav.open {
        display: flex;
    }
    .hdr-6 .nav a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        text-align: center;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.8);
    }
    .hdr-6 .nav a:hover {
        background: rgba(255, 255, 255, 0.04);
    }
    .hdr-6 .nav a.active {
        color: var(--brand-orange);
        background: rgba(255, 132, 0, 0.08);
    }
    .hdr-6 .top-bar {
        padding: 0.3rem 0.8rem;
        min-height: 34px;
        gap: 0.5rem;
    }
    .hdr-6 .top-bar p {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
    }
    .hdr-6 .top-bar-close {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    .hdr-6 .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hdr-6 .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hdr-6 .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 480px) {
    .hdr-6 .btn-cta {
        font-size: 0.7rem;
        padding: 0.2rem 0.7rem !important;
    }
    .hdr-6 .logo-img {
        height: 32px;
    }
    .hdr-6 .hamburger span {
        width: 22px;
        height: 2px;
    }
    .hdr-6 .top-bar p {
        font-size: 0.5rem;
    }
}

/* ================================================================
   GALLERY HERO
   ================================================================ */
.gallery-hero {
    background: linear-gradient(135deg, var(--brand-orange-extra-light) 0%, var(--neutral-white) 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}
.gallery-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-heading);
    margin-bottom: 16px;
}
.gallery-hero h1 span {
    color: var(--brand-orange);
}
.gallery-hero p {
    font-size: 1.1rem;
    color: var(--neutral-paragraph);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   GALLERY FILTER
   ================================================================ */
.gallery-filter {
    padding: 30px 0 10px 0;
    text-align: center;
}
.filter-btn {
    background: transparent;
    border: 2px solid var(--neutral-border);
    color: var(--neutral-paragraph);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 4px 6px;
}
.filter-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}
.filter-btn.active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--neutral-white);
    box-shadow: var(--shadow-orange);
}

/* ================================================================
   GALLERY GRID
   ================================================================ */
.gallery-section {
    padding: 40px 0 80px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Gallery Item */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--neutral-white);
    border: 1px solid var(--neutral-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-hover);
}
.gallery-item .thumb-wrap {
    position: relative;
    overflow: hidden;
    background: var(--brand-gray-bg);
    aspect-ratio: 16 / 9;
}
.gallery-item .thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover .thumb-wrap img {
    transform: scale(1.05);
}
.gallery-item .thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .thumb-overlay {
    opacity: 1;
}
.gallery-item .thumb-overlay .icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-orange);
    transition: transform 0.3s ease;
}
.gallery-item:hover .thumb-overlay .icon-btn {
    transform: scale(1.1);
}
.gallery-item .badge-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-orange);
    color: var(--neutral-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}
.gallery-item .badge-type.video {
    background: #DC2626;
}
.gallery-item .card-body-custom {
    padding: 16px 20px 20px 20px;
}
.gallery-item .card-body-custom h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-heading);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery-item .card-body-custom .card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* ================================================================
   LIGHTBOX MODAL
   ================================================================ */
.gallery-modal .modal-content {
    background: rgba(0, 0, 0, 0.92);
    border: none;
    border-radius: var(--radius);
}
.gallery-modal .modal-header {
    border: none;
    padding: 16px 24px;
    background: transparent;
}
.gallery-modal .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.gallery-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.gallery-modal .modal-body {
    padding: 0 24px 24px 24px;
}
.gallery-modal .modal-body .modal-media-wrap {
    position: relative;
    background: #000;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 80vh;
}
.gallery-modal .modal-body .modal-media-wrap img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}
.gallery-modal .modal-body .modal-media-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}
.gallery-modal .modal-footer-custom {
    padding: 16px 24px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.gallery-modal .modal-footer-custom .modal-title-text {
    color: var(--neutral-white);
    font-weight: 600;
    font-size: 1rem;
}
.gallery-modal .modal-footer-custom .modal-title-text small {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.85rem;
}
.gallery-modal .modal-footer-custom .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.gallery-modal .modal-footer-custom .btn-outline-light:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(255, 132, 0, 0.1);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    padding: 60px 0;
    background: var(--neutral-white);
}
.cta-banner {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA940 100%) !important;
    border-radius: var(--radius) !important;
    padding: 50px 40px !important;
    color: var(--neutral-white) !important;
    box-shadow: var(--shadow-orange);
    text-align: center;
}
.cta-banner h2 {
    color: var(--neutral-white) !important;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.cta-banner .btn-light {
    background: var(--neutral-white) !important;
    color: var(--brand-orange) !important;
}
.cta-banner .btn-light:hover {
    background: #f0f0f0 !important;
    color: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* ================================================================
   FOOTER – No dots, orange social icons
   ================================================================ */
.site-footer .footer-main {
    background: var(--neutral-footer) !important;
}
.site-footer .footer__heading {
    color: var(--neutral-white) !important;
}
.site-footer .footer__link {
    color: #D1D5DB !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .footer__link:hover {
    color: var(--brand-orange) !important;
}
.site-footer .footer-bottom {
    background: var(--neutral-footer) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.site-footer .footer-bottom p {
    color: #9CA3AF !important;
}
.site-footer .footer__list {
    list-style: none;
    padding: 0;
}
.site-footer .footer__social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--brand-orange) !important;
}
.site-footer .footer__social-link:hover {
    border-color: var(--brand-orange-hover) !important;
    color: var(--brand-orange) !important;
    transform: translateY(-2px);
}

.btn-quote-modal {
    background: var(--brand-orange);
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
    width: 100%;
    max-width: 320px;
}
.btn-quote-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 132, 0, 0.35);
    color: #FFFFFF;
}

/* ================================================================
   QUOTE MODAL
   ================================================================ */
.quote-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: #1a1a2e;
}
.quote-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 25px 10px 25px;
    background: #1a1a2e;
    border-radius: 20px 20px 0 0;
}
.quote-modal .modal-header .modal-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.4rem;
}
.quote-modal .modal-header .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.7;
}
.quote-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.quote-modal .modal-body {
    padding: 20px 25px 30px 25px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
}
.quote-modal .form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}
.quote-modal .form-control {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #FFFFFF !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 100%;
    transition: border-color 0.3s ease;
}
.quote-modal .form-control:focus {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 2px rgba(255,132,0,0.15);
    background: rgba(255,255,255,0.08) !important;
}
.quote-modal .form-control::placeholder {
    color: #9CA3AF !important;
}
.quote-modal .form-control.is-invalid {
    border-color: #dc3545 !important;
}
.quote-modal .field-error {
    color: #ff6b6b;
    font-size: 0.7rem;
    display: none;
    margin-top: 2px;
}

.quote-success-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-success-modal .modal-header {
    border-bottom: none;
    padding: 25px 30px 0 30px;
}
.quote-success-modal .modal-header .btn-close {
    font-size: 1.5rem;
    opacity: 0.7;
}
.quote-success-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.quote-success-modal .modal-body {
    padding: 10px 30px 30px 30px;
    text-align: center;
}
.quote-success-modal .modal-body .success-icon {
    font-size: 4rem;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 15px;
}
.quote-success-modal .modal-body h4 {
    font-weight: 700;
    color: var(--neutral-heading);
    margin-bottom: 10px;
}
.quote-success-modal .modal-body p {
    color: var(--neutral-paragraph);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.2rem;
    }
    .gallery-hero {
        padding: 60px 0 40px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    .gallery-modal .modal-body {
        padding: 0 12px 12px 12px;
    }
    .gallery-modal .modal-body .modal-media-wrap {
        min-height: 250px;
        max-height: 60vh;
    }
    .gallery-modal .modal-footer-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin: 3px 4px;
    }
    .cta-banner {
        padding: 30px 20px !important;
    }
    .cta-banner h2 {
        font-size: 1.8rem !important;
    }
    .site-footer .footer__heading { font-size: 1rem !important; }
    .site-footer .footer__link { font-size: 0.85rem !important; }
    .site-footer h2 { font-size: 1.5rem !important; }
    .site-footer .footer__social-link { width: 34px !important; height: 34px !important; font-size: 0.9rem !important; }
    .btn-quote-modal { font-size: 0.9rem; padding: 10px 24px; max-width: 100%; }
    .quote-modal .modal-body { padding: 15px 18px 20px 18px; }
    .quote-modal .modal-header { padding: 15px 18px 5px 18px; }
    .quote-modal .modal-header .modal-title { font-size: 1.2rem; }
    .quote-modal .form-control { font-size: 0.8rem; padding: 8px 12px; }
}

@media (max-width: 576px) {
    .gallery-hero h1 {
        font-size: 1.8rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .gallery-item .card-body-custom {
        padding: 12px 14px 14px 14px;
    }
    .gallery-item .card-body-custom h3 {
        font-size: 0.85rem;
    }
    .gallery-item .badge-type {
        font-size: 0.6rem;
        padding: 2px 10px;
    }
    .gallery-item .thumb-overlay .icon-btn {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
    .cta-banner {
        padding: 25px 16px !important;
    }
    .cta-banner h2 {
        font-size: 1.4rem !important;
    }
    .site-footer .footer__heading { font-size: 0.9rem !important; }
    .site-footer .footer__link { font-size: 0.8rem !important; }
    .site-footer h2 { font-size: 1.2rem !important; }
    .site-footer .footer__social-link { width: 32px !important; height: 32px !important; font-size: 0.8rem !important; }
    .btn-quote-modal { font-size: 0.8rem; padding: 8px 18px; }
    .quote-modal .modal-body { padding: 12px 14px 16px 14px; }
    .quote-modal .modal-header { padding: 12px 14px 5px 14px; }
    .quote-modal .modal-header .modal-title { font-size: 1rem; }
    .quote-modal .form-control { font-size: 0.75rem; padding: 6px 10px; }
    .quote-modal .form-label { font-size: 0.65rem; }
}