/* ================================================================
   TECGYM BRAND COLORS
   ================================================================ */
:root {
    --brand-orange: #FF8400;
    --brand-orange-hover: #E87500;
    --brand-orange-light: #FFF3E6;
    --brand-orange-extra-light: #FFF8F2;
    --brand-gray: #807E7E;
    --neutral-white: #FFFFFF;
    --neutral-heading: #1F2937;
    --neutral-paragraph: #4B5563;
    --neutral-border: #E5E7EB;
    --neutral-footer: #111827;
    --neutral-bg: #FAFAFA;
    --shadow-orange: 0 8px 30px rgba(255, 132, 0, 0.20);
    --radius-btn: 10px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #FAFAFA;
    color: var(--neutral-paragraph);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ----- Top Bar (announcement) ----- */
.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: #FF8400;
    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: #FF8400;
}

/* ----- Main header (logo, nav, cta) – always sticky ----- */
.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;
}

/* ----- Navigation (desktop) ----- */
.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: #FF8400;
    font-weight: 600;
    background: rgba(255, 132, 0, 0.06);
}

/* ----- Get Started button (desktop) ----- */
.hdr-6 .btn-cta {
    background: #FF8400;
    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: #e87500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
}

/* ----- Hamburger (mobile) ----- */
.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;
}

/* ----- Mobile styles (max-width: 768px) ----- */
@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: #FF8400;
        background: rgba(255, 132, 0, 0.08);
    }

    /* Top bar adjustments */
    .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;
    }

    /* Hamburger animation */
    .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;
    }
}

/* ================================================================
   DEMO FORM SECTION
   ================================================================ */
.demo-form-section {
    padding: 60px 0;
    min-height: calc(100vh - 100px);
}

.demo-form-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-heading);
    text-align: center;
    margin-bottom: 10px;
}

.demo-form-header p {
    font-size: 16px;
    color: var(--neutral-paragraph);
    text-align: center;
    margin-bottom: 45px;
}

.demo-form-container {
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid var(--brand-orange);
    border-radius: 25px;
    background-color: #FFFFFF;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(255, 132, 0, 0.1);
}

/* ===== FORM TITLE — WHITE WITH ORANGE BORDER-BOTTOM ===== */
.form-section-title {
    background: #FFFFFF;
    color: var(--neutral-heading);
    padding: 15px 20px;
    font-size: 36px;
    font-weight: 700;
    border-bottom: 3px solid var(--brand-orange);
    border-radius: 25px 25px 0 0;
    text-align: center;
    margin: -20px -20px 20px -20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-heading);
    margin-bottom: 8px;
    margin-left: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-control {
    border: 1px solid #DDD;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #FFFFFF;
}

.form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 132, 0, 0.25);
}

.form-control::placeholder {
    color: #999999;
}

.submit-btn {
    background-color: var(--brand-orange);
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    width: auto;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 132, 0, 0.3);
}

.contact-section {
    background-color: #000000;
    text-align: center;
    color: #FFFFFF;
    width: calc(100% + 40px);
    margin: 20px -20px -20px -20px;
    padding: 15px 20px;
    border-radius: 0 0 25px 25px;
}

.contact-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.contact-section .contact-item {
    font-size: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.contact-section .contact-item i {
    color: var(--brand-orange);
    margin-right: 4px;
    font-size: 12px;
}

.contact-section .contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
}

.contact-section .contact-item a:hover {
    color: var(--brand-orange);
}

.contact-section .know-more-section a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
}

.contact-section .know-more-section a:hover {
    text-decoration: underline;
}

/* ================================================================
   FOOTER – NO UNDERLINES (Fixed!)
   ================================================================ */
.site-footer .footer-main {
    background: var(--neutral-footer) !important;
}

.site-footer .footer__heading {
    color: var(--neutral-white) !important;
    font-weight: 700 !important;
}

.site-footer .footer__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 🔥 FIX: Remove underlines from footer links */
.site-footer .footer__link {
    color: #D1D5DB !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    background: transparent !important;
}

.site-footer .footer__link:hover {
    color: var(--brand-orange) !important;
    text-decoration: none !important;
    background: transparent !important;
}

.site-footer .footer-bottom {
    background: #000000 !important;
    border-top: 1px solid #333333 !important;
}

.site-footer .footer-bottom p {
    color: #9CA3AF !important;
}

/* ===== SOCIAL ICONS ===== */
.site-footer .footer__social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.site-footer .footer__social-link:hover {
    border-color: var(--brand-orange-hover) !important;
    color: var(--brand-orange) !important;
    transform: translateY(-2px);
}

/* ===== QUOTE BUTTON (modal trigger) ===== */
.btn-quote-modal {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA940 100%);
    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-modal .btn-quote-submit {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}
.quote-modal .btn-quote-submit:hover {
    background: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,132,0,0.25);
}
.quote-modal .btn-quote-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.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;
}

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

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .demo-form-section {
        padding: 40px 0;
    }
    .demo-form-header h1 {
        font-size: 28px;
    }
    .form-control {
        font-size: 16px;
    }
    .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; }
    .quote-modal .btn-quote-submit { font-size: 0.85rem; padding: 10px 20px; }
}

@media (max-width: 576px) {
    .demo-form-header h1 {
        font-size: 24px;
    }
    .demo-form-container {
        padding: 15px;
    }
    .form-section-title {
        font-size: 28px;
        margin: -15px -15px 15px -15px;
        padding: 12px 15px;
    }
    .contact-section {
        width: calc(100% + 30px);
        margin: 15px -15px -15px -15px;
        padding: 12px 15px;
    }
    .submit-btn {
        width: 100%;
        padding: 12px;
    }
    .contact-section .contact-details {
        flex-direction: column;
        gap: 8px;
    }
    .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 .btn-quote-submit { font-size: 0.8rem; padding: 8px 16px; }
    .quote-modal .form-label { font-size: 0.65rem; }
}