/* ================================================================
   TECGYM BRAND COLORS – 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;
    }
}

/* ================================================================
   HERO
   ================================================================ */
.tg-hero {
    background: linear-gradient(135deg, var(--brand-orange-extra-light) 0%, var(--neutral-white) 100%) !important;
    padding: 80px 0 60px 0 !important;
}
.tg-eyebrow {
    color: var(--brand-orange) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tg-eyebrow-pip {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-orange);
}
.tg-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
    margin-bottom: 20px;
}
.tg-hero-em {
    font-style: normal;
    color: var(--brand-orange);
}
.tg-hero-sub {
    font-size: 1.1rem;
    color: #666666;
    max-width: 500px;
    line-height: 1.6;
}

.tg-hero-orb {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tg-orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 132, 0, 0.15);
}
.tg-orb-r1 {
    width: 200px;
    height: 200px;
}
.tg-orb-r2 {
    width: 160px;
    height: 160px;
    border-color: rgba(255, 132, 0, 0.10);
}
.tg-orb-r3 {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 132, 0, 0.08);
}
.tg-orb-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--neutral-white);
    box-shadow: 0 0 40px rgba(255, 132, 0, 0.3);
    z-index: 1;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.tg-faq {
    padding: 60px 0;
}

.tg-cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F0F0F0;
}
.tg-cat-icon {
    font-size: 1.5rem;
    color: var(--brand-orange);
}
.tg-cat-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
}
.tg-cat-badge {
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-left: auto;
}

.accordion-item.tg-item {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: all 0.3s ease;
}
.accordion-item.tg-item:hover {
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-hover);
}

/* ===== ACCORDION BUTTON ===== */
.tg-btn {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: #FFFFFF;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #1A1A1A;
    text-align: left;
    transition: all 0.25s ease;
    border-radius: 12px;
    gap: 12px;
}

.tg-btn .tg-play-pip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--brand-orange-light);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--brand-orange);
    font-size: 0.8rem;
    transition: all 0.25s ease;
}

.tg-btn .tg-q-label {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.tg-btn .tg-q-dur {
    font-size: 0.8rem;
    color: #999999;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
}

.tg-btn:not(.collapsed) {
    background-color: var(--brand-orange-light);
    color: var(--brand-orange);
}
.tg-btn:not(.collapsed) .tg-play-pip {
    background: var(--brand-orange);
    color: #FFFFFF;
}
.tg-btn:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 132, 0, 0.15);
}
.tg-btn::after {
    display: none !important;
}

/* ===== ACCORDION BODY ===== */
.tg-body {
    padding: 20px 22px;
    background: #F8F8F8;
}

/* ===== WATCH BUTTON ===== */
.tg-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--brand-orange);
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.tg-watch-btn:hover {
    background: var(--brand-orange-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ================================================================
   VIDEO MODAL
   ================================================================ */
.tg-modal-content {
    background: #FFFFFF;
    border: none;
    border-radius: 20px;
    overflow: hidden;
}
.tg-modal-header {
    padding: 18px 24px;
    background: #1A1A1A;
    border-bottom: 2px solid var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tg-modal-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tg-modal-live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse-dot 1.5s infinite;
}
.tg-modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}
.tg-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}
.tg-close-btn:hover {
    color: var(--brand-orange);
}
.tg-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.tg-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.tg-modal-footer {
    padding: 14px 24px;
    background: #1A1A1A;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tg-mf-brand {
    font-size: 0.9rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.tg-mf-logo {
    height: 24px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* ================================================================
   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: 992px) {
    .tg-hero {
        padding: 60px 0 40px 0 !important;
    }
}
@media (max-width: 768px) {
    .tg-hero-title {
        font-size: 2rem !important;
    }
    .tg-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    .tg-btn .tg-q-dur {
        font-size: 0.7rem;
    }
    .tg-q-label {
        font-size: 0.9rem;
    }
    .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) {
    .tg-hero-title {
        font-size: 1.75rem !important;
    }
    .tg-btn .tg-play-pip {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .tg-watch-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
    .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; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}