/* =========================================================
   TECH SAVVY
   Main Stylesheet
   ========================================================= */


/* =========================================================
   01. ROOT / BRAND VARIABLES
   ========================================================= */

:root {
    /* Core Brand Colors */
    --ts-black: #030507;
    --ts-black-soft: #080b10;
    --ts-black-card: #0c1016;
    --ts-black-light: #111722;

    --ts-blue: #008cff;
    --ts-blue-bright: #24b7ff;
    --ts-blue-dark: #005cbf;

    --ts-white: #f7f9fc;
    --ts-silver: #c9d0d8;
    --ts-silver-light: #e9edf2;
    --ts-muted: #8b96a6;

    /* Borders */
    --ts-border: rgba(255, 255, 255, 0.09);
    --ts-border-blue: rgba(0, 140, 255, 0.45);

    /* Background Effects */
    --ts-blue-glow: rgba(0, 140, 255, 0.30);
    --ts-blue-glow-strong: rgba(0, 140, 255, 0.55);
    --ts-glass: rgba(255, 255, 255, 0.035);

    /* Shadows */
    --ts-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
    --ts-shadow-blue: 0 0 35px rgba(0, 140, 255, 0.18);

    /* Radius */
    --ts-radius-sm: 10px;
    --ts-radius: 18px;
    --ts-radius-lg: 28px;

    /* Animation */
    --ts-transition: all 0.3s ease;
}


/* =========================================================
   02. GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(0, 140, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 65%,
            rgba(0, 140, 255, 0.05),
            transparent 30%
        ),
        var(--ts-black);

    color: var(--ts-silver-light);
    line-height: 1.7;
    overflow-x: hidden;
}

body::selection {
    background: var(--ts-blue);
    color: var(--ts-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--ts-transition);
}

ul {
    padding-left: 0;
}

section {
    position: relative;
    padding: 100px 0;
}


/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ts-white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

p {
    color: var(--ts-muted);
}

.text-blue {
    color: var(--ts-blue-bright) !important;
}

.text-silver {
    color: var(--ts-silver) !important;
}

.text-muted-ts {
    color: var(--ts-muted) !important;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: var(--ts-blue-bright);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 2px;

    background: var(--ts-blue);
    box-shadow: 0 0 10px var(--ts-blue);
}

.section-title {
    margin-bottom: 18px;
}

.section-description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.05rem;
}


/* =========================================================
   04. CONTAINERS / UTILITIES
   ========================================================= */

.ts-section-dark {
    background: var(--ts-black);
}

.ts-section-soft {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            rgba(255, 255, 255, 0)
        );
}

.ts-divider {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 140, 255, 0.35),
            rgba(255, 255, 255, 0.12),
            rgba(0, 140, 255, 0.35),
            transparent
        );
}

.ts-glow {
    position: absolute;
    width: 350px;
    height: 350px;

    border-radius: 50%;
    background: rgba(0, 140, 255, 0.12);
    filter: blur(110px);

    pointer-events: none;
    z-index: 0;
}

.ts-glow-right {
    top: 10%;
    right: -150px;
}

.ts-glow-left {
    bottom: 5%;
    left: -180px;
}


/* =========================================================
   05. NAVBAR
   ========================================================= */

.navbar {
    padding: 16px 0;

    background: rgba(3, 5, 7, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: var(--ts-transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(3, 5, 7, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--ts-white) !important;

    font-weight: 800;
    letter-spacing: 0.08em;
}

.navbar-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;

    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.35));
}

.navbar-nav {
    gap: 8px;
}

.navbar .nav-link {
    position: relative;

    padding: 10px 13px !important;

    color: var(--ts-silver) !important;

    font-size: 0.92rem;
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--ts-white) !important;
}

.navbar .nav-link::after {
    content: "";

    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;

    height: 2px;

    transform: scaleX(0);
    transform-origin: center;

    background: var(--ts-blue);

    box-shadow: 0 0 8px var(--ts-blue);

    transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--ts-border);
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.15) !important;
}


/* =========================================================
   06. BUTTONS
   ========================================================= */

.btn-ts-primary,
.btn-ts-outline,
.btn-ts-dark {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 12px 25px;

    border-radius: 10px;

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;

    transition: var(--ts-transition);

    overflow: hidden;
}

.btn-ts-primary {
    border: 1px solid var(--ts-blue);

    background:
        linear-gradient(
            135deg,
            var(--ts-blue-dark),
            var(--ts-blue),
            var(--ts-blue-bright)
        );

    color: var(--ts-white);

    box-shadow:
        0 10px 25px rgba(0, 140, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-ts-primary:hover {
    transform: translateY(-3px);

    color: white;

    box-shadow:
        0 15px 35px rgba(0, 140, 255, 0.38),
        0 0 28px rgba(0, 140, 255, 0.2);
}

.btn-ts-outline {
    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.03);

    color: var(--ts-white);
}

.btn-ts-outline:hover {
    transform: translateY(-3px);

    border-color: var(--ts-blue);

    color: var(--ts-white);

    background: rgba(0, 140, 255, 0.08);

    box-shadow: 0 0 25px rgba(0, 140, 255, 0.12);
}

.btn-ts-dark {
    border: 1px solid var(--ts-border);

    background: var(--ts-black-card);

    color: var(--ts-silver);
}

.btn-ts-dark:hover {
    border-color: var(--ts-blue);
    color: var(--ts-white);
}


/* =========================================================
   07. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 120px;
    padding-bottom: 90px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 5, 7, 0.98) 0%,
            rgba(3, 5, 7, 0.88) 45%,
            rgba(3, 5, 7, 0.55) 100%
        );

    z-index: 0;
}

.hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -230px;
    top: 0;

    border-radius: 50%;

    border: 1px solid rgba(0, 140, 255, 0.16);

    box-shadow:
        0 0 100px rgba(0, 140, 255, 0.12),
        inset 0 0 80px rgba(0, 140, 255, 0.04);

    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 22px;

    border: 1px solid rgba(0, 140, 255, 0.26);
    border-radius: 999px;

    background: rgba(0, 140, 255, 0.07);

    color: var(--ts-blue-bright);

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 900px;
    margin-bottom: 25px;
}

.hero-title .accent {
    color: var(--ts-blue-bright);

    text-shadow:
        0 0 18px rgba(0, 140, 255, 0.25);
}

.hero-description {
    max-width: 680px;

    margin-bottom: 32px;

    color: var(--ts-silver);

    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   08. HERO STATUS / TRUST PILLS
   ========================================================= */

.hero-service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 34px;
}

.ts-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    border: 1px solid var(--ts-border);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--ts-silver);

    font-size: 0.8rem;
}

.ts-pill i {
    color: var(--ts-blue);
}


/* =========================================================
   09. GENERIC CARD SYSTEM
   ========================================================= */

.ts-card {
    position: relative;

    height: 100%;

    padding: 28px;

    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: var(--ts-shadow);

    overflow: hidden;

    transition: var(--ts-transition);
}

.ts-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            120deg,
            transparent 25%,
            rgba(0, 140, 255, 0.08),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 0.3s ease;

    pointer-events: none;
}

.ts-card:hover {
    transform: translateY(-7px);

    border-color: var(--ts-border-blue);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(0, 140, 255, 0.12);
}

.ts-card:hover::before {
    opacity: 1;
}


/* =========================================================
   10. ICON BOXES
   ========================================================= */

.ts-icon-box {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid rgba(0, 140, 255, 0.32);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 140, 255, 0.18),
            rgba(0, 140, 255, 0.04)
        );

    color: var(--ts-blue-bright);

    font-size: 1.3rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 140, 255, 0.08);

    transition: var(--ts-transition);
}

.ts-card:hover .ts-icon-box {
    transform: rotate(-4deg) scale(1.05);

    box-shadow:
        0 0 24px rgba(0, 140, 255, 0.18);
}


/* =========================================================
   11. WHO IS TECH SAVVY / OWNER PROFILE
   ========================================================= */

.about-wrapper {
    position: relative;

    padding: 40px;

    border: 1px solid var(--ts-border);

    border-radius: var(--ts-radius-lg);

    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.045),
            rgba(0, 140, 255, 0.025)
        );

    box-shadow: var(--ts-shadow);
}

.owner-profile {
    display: flex;
    flex-direction: column;

    height: 100%;
}

.owner-photo {
    position: relative;

    width: 155px;
    height: 155px;

    margin-bottom: 22px;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(0, 140, 255, 0.35);

    box-shadow:
        0 0 0 6px rgba(0, 140, 255, 0.04),
        0 0 35px rgba(0, 140, 255, 0.15);
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-title {
    color: var(--ts-blue-bright);

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   12. CREDENTIAL / STAT CARDS
   ========================================================= */

.credential-stat {
    min-height: 145px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: center;

    padding: 20px;

    border: 1px solid var(--ts-border);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);

    transition: var(--ts-transition);
}

.credential-stat:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 140, 255, 0.38);

    background: rgba(0, 140, 255, 0.045);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.credential-number {
    margin-bottom: 5px;

    color: var(--ts-white);

    font-size: 2.2rem;
    font-weight: 800;
}

.credential-label {
    color: var(--ts-muted);

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   13. CERTIFICATION LOGO CARDS
   ========================================================= */

.certification-card {
    position: relative;

    min-height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 18px;

    border: 1px solid var(--ts-border);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(0, 140, 255, 0.015)
        );

    text-align: center;

    overflow: hidden;

    transition: var(--ts-transition);
}

.certification-card img {
    max-width: 95px;
    max-height: 80px;

    object-fit: contain;

    filter: grayscale(0.2);
    opacity: 0.9;

    transition: var(--ts-transition);
}

.certification-card .cert-name {
    margin-top: 12px;
    margin-bottom: 0;

    color: var(--ts-silver);

    font-size: 0.78rem;
    font-weight: 700;

    transition: var(--ts-transition);
}

.certification-card:hover {
    transform: translateY(-6px);

    border-color: var(--ts-blue);

    background: rgba(0, 140, 255, 0.045);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(0, 140, 255, 0.13);
}

.certification-card:hover img {
    transform: scale(1.08);

    filter: grayscale(0);
    opacity: 1;

    filter:
        drop-shadow(0 0 8px rgba(0, 140, 255, 0.2));
}

.certification-card:hover .cert-name {
    color: var(--ts-white);
}


/* =========================================================
   14. WHY TECH SAVVY
   ========================================================= */

.why-card {
    text-align: center;
}

.why-card .ts-icon-box {
    margin-left: auto;
    margin-right: auto;
}

.why-card h5 {
    margin-bottom: 8px;

    font-size: 1rem;
}

.why-card p {
    margin-bottom: 0;

    font-size: 0.88rem;
}


/* =========================================================
   15. HOW IT WORKS
   ========================================================= */

.how-it-works {
    position: relative;
}

.process-card {
    position: relative;

    height: 100%;

    padding: 26px;

    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);

    background: rgba(255, 255, 255, 0.025);

    transition: var(--ts-transition);
}

.process-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 140, 255, 0.35);

    background: rgba(0, 140, 255, 0.035);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    border: 1px solid rgba(0, 140, 255, 0.38);
    border-radius: 50%;

    background: rgba(0, 140, 255, 0.09);

    color: var(--ts-blue-bright);

    font-size: 0.9rem;
    font-weight: 800;

    box-shadow:
        0 0 22px rgba(0, 140, 255, 0.1);
}

.process-card h4 {
    font-size: 1.08rem;
}

.process-card p {
    margin-bottom: 0;

    font-size: 0.9rem;
}


/* =========================================================
   16. SERVICES
   ========================================================= */

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding: 28px;

    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        );

    transition: var(--ts-transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: var(--ts-blue);

    box-shadow:
        var(--ts-shadow),
        0 0 35px rgba(0, 140, 255, 0.14);
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 1.2rem;
}

.service-card p {
    flex-grow: 1;
}

.service-price {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: 12px;
    margin-bottom: 18px;

    padding: 6px 11px;

    border: 1px solid rgba(0, 140, 255, 0.22);
    border-radius: 999px;

    background: rgba(0, 140, 255, 0.07);

    color: var(--ts-blue-bright);

    font-size: 0.75rem;
    font-weight: 800;
}


/* =========================================================
   17. SERVICE CATEGORY TAGS
   ========================================================= */

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 20px;
}

.service-tag {
    padding: 5px 9px;

    border: 1px solid var(--ts-border);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.025);

    color: var(--ts-muted);

    font-size: 0.7rem;
    font-weight: 700;
}

.service-tag.remote {
    color: #69c7ff;
}

.service-tag.business {
    color: var(--ts-silver-light);
}


/* =========================================================
   18. BOOTSTRAP ACCORDION OVERRIDES
   ========================================================= */

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.accordion-item {
    margin-bottom: 12px;

    border: 1px solid var(--ts-border) !important;
    border-radius: 14px !important;

    background: rgba(255, 255, 255, 0.025) !important;

    overflow: hidden;
}

.accordion-button {
    padding: 18px 20px;

    background: transparent !important;

    color: var(--ts-silver-light) !important;

    font-weight: 700;

    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--ts-blue-bright) !important;

    background: rgba(0, 140, 255, 0.055) !important;

    box-shadow:
        inset 0 -1px 0 rgba(0, 140, 255, 0.15) !important;
}

.accordion-button:focus {
    border-color: transparent;

    box-shadow: none;
}

.accordion-button::after {
    filter:
        invert(51%)
        sepia(95%)
        saturate(1900%)
        hue-rotate(176deg)
        brightness(100%)
        contrast(105%);
}

.accordion-body {
    padding: 18px 20px 22px;

    color: var(--ts-muted);
}


/* =========================================================
   19. SERVICE DETAIL LISTS
   ========================================================= */

.service-detail-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 8px 0;

    color: var(--ts-silver);

    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.service-detail-list li:last-child {
    border-bottom: 0;
}

.service-detail-list li::before {
    content: "›";

    color: var(--ts-blue-bright);

    font-size: 1.1rem;
    font-weight: 900;
}


/* =========================================================
   20. REMOTE VS ON-SITE
   ========================================================= */

.support-option-card {
    position: relative;

    height: 100%;

    padding: 34px;

    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(0, 140, 255, 0.02)
        );

    overflow: hidden;

    transition: var(--ts-transition);
}

.support-option-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(0, 140, 255, 0.09);

    filter: blur(50px);
}

.support-option-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 140, 255, 0.45);

    box-shadow: var(--ts-shadow-blue);
}

.support-type {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--ts-blue-bright);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =========================================================
   21. BUSINESS TECHNOLOGY
   ========================================================= */

.business-section {
    overflow: hidden;
}

.business-panel {
    position: relative;

    padding: 45px;

    border: 1px solid var(--ts-border-blue);
    border-radius: var(--ts-radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(0, 140, 255, 0.09),
            rgba(255, 255, 255, 0.025) 40%,
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

.business-panel::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -150px;

    border-radius: 50%;

    border: 1px solid rgba(0, 140, 255, 0.18);

    box-shadow:
        0 0 60px rgba(0, 140, 255, 0.09);
}

.business-service {
    display: flex;
    gap: 15px;

    padding: 15px;

    border-radius: 12px;

    transition: var(--ts-transition);
}

.business-service:hover {
    background: rgba(255, 255, 255, 0.035);
}

.business-service-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(0, 140, 255, 0.09);

    color: var(--ts-blue-bright);
}


/* =========================================================
   22. BADGES
   ========================================================= */

.badge-ts {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border: 1px solid rgba(0, 140, 255, 0.25);
    border-radius: 999px;

    background: rgba(0, 140, 255, 0.07);

    color: var(--ts-blue-bright);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   23. CONTACT / REQUEST SUPPORT
   ========================================================= */

.contact-panel {
    padding: 40px;

    border: 1px solid var(--ts-border);
    border-radius: var(--ts-radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(0, 140, 255, 0.018)
        );

    box-shadow: var(--ts-shadow);
}

.form-label {
    margin-bottom: 8px;

    color: var(--ts-silver);

    font-size: 0.82rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 52px;

    border: 1px solid var(--ts-border);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--ts-white);

    transition: var(--ts-transition);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control::placeholder {
    color: #657080;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ts-blue);

    background: rgba(255, 255, 255, 0.045);

    color: var(--ts-white);

    box-shadow:
        0 0 0 4px rgba(0, 140, 255, 0.1);
}

.form-select option {
    background: var(--ts-black-card);
    color: var(--ts-white);
}


/* =========================================================
   24. CONTACT INFORMATION CARDS
   ========================================================= */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px;

    margin-bottom: 12px;

    border: 1px solid var(--ts-border);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.025);

    transition: var(--ts-transition);
}

.contact-info-card:hover {
    transform: translateX(5px);

    border-color: rgba(0, 140, 255, 0.3);

    background: rgba(0, 140, 255, 0.035);
}

.contact-info-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(0, 140, 255, 0.09);

    color: var(--ts-blue-bright);
}


/* =========================================================
   25. FLOATING GET SUPPORT BUTTON
   ========================================================= */

.floating-support {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 52px;

    padding: 12px 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--ts-blue-dark),
            var(--ts-blue-bright)
        );

    color: white;

    font-size: 0.82rem;
    font-weight: 800;

    box-shadow:
        0 12px 35px rgba(0, 140, 255, 0.35);

    transition: var(--ts-transition);
}

.floating-support:hover {
    transform: translateY(-4px) scale(1.02);

    color: white;

    box-shadow:
        0 18px 42px rgba(0, 140, 255, 0.48);
}


/* =========================================================
   26. DROPDOWN MENUS
   ========================================================= */

.dropdown-menu {
    padding: 10px;

    border: 1px solid var(--ts-border);
    border-radius: 14px;

    background: rgba(8, 11, 16, 0.98);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45);
}

.dropdown-item {
    padding: 10px 12px;

    border-radius: 8px;

    color: var(--ts-silver);

    font-size: 0.88rem;

    transition: var(--ts-transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(0, 140, 255, 0.08);

    color: var(--ts-blue-bright);
}


/* =========================================================
   27. MODALS
   ========================================================= */

.modal-content {
    border: 1px solid var(--ts-border);
    border-radius: 18px;

    background: var(--ts-black-card);

    color: var(--ts-silver);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55);
}

.modal-header,
.modal-footer {
    border-color: var(--ts-border);
}

.btn-close {
    filter: invert(1);
}


/* =========================================================
   28. FOOTER
   ========================================================= */

footer {
    padding: 65px 0 30px;

    border-top: 1px solid var(--ts-border);

    background: #020304;
}

.footer-brand img {
    width: 80px;

    margin-bottom: 15px;
}

.footer-title {
    margin-bottom: 15px;

    color: var(--ts-white);

    font-size: 0.9rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--ts-muted);

    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--ts-blue-bright);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid var(--ts-border);

    color: #616b78;

    font-size: 0.8rem;
}


/* =========================================================
   29. SOCIAL ICONS
   ========================================================= */

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ts-border);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.025);

    color: var(--ts-silver);

    transition: var(--ts-transition);
}

.social-link:hover {
    transform: translateY(-4px);

    border-color: var(--ts-blue);

    background: rgba(0, 140, 255, 0.08);

    color: var(--ts-blue-bright);

    box-shadow:
        0 0 18px rgba(0, 140, 255, 0.12);
}


/* =========================================================
   30. SCROLL REVEAL SUPPORT
   main.js will activate these later
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   31. HOVER LIFT UTILITY
   ========================================================= */

.hover-lift {
    transition: var(--ts-transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}


/* =========================================================
   32. CUSTOM SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ts-black);
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            var(--ts-blue-dark),
            var(--ts-blue)
        );

    border-radius: 10px;

    border: 2px solid var(--ts-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ts-blue-bright);
}


/* =========================================================
   33. MOBILE / TABLET
   ========================================================= */

@media (max-width: 991px) {

    section {
        padding: 80px 0;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 18px;

        border: 1px solid var(--ts-border);
        border-radius: 14px;

        background: rgba(8, 11, 16, 0.98);

        box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.35);
    }

    .navbar .nav-link {
        padding: 12px !important;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .hero {
        min-height: auto;

        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero::after {
        width: 450px;
        height: 450px;

        right: -260px;
        top: 120px;
    }

    .about-wrapper {
        padding: 30px;
    }

    .business-panel {
        padding: 32px;
    }

    .contact-panel {
        padding: 30px;
    }
}


/* =========================================================
   34. SMALL MOBILE
   ========================================================= */

@media (max-width: 767px) {

    section {
        padding: 68px 0;
    }

    h1 {
        font-size: clamp(2.7rem, 14vw, 4.3rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-service-pills {
        justify-content: center;
    }

    .section-description {
        font-size: 0.98rem;
    }

    .about-wrapper,
    .business-panel,
    .contact-panel {
        padding: 24px;
    }

    .ts-card,
    .service-card,
    .support-option-card {
        padding: 23px;
    }

    .owner-photo {
        margin-left: auto;
        margin-right: auto;
    }

    .owner-profile {
        text-align: center;
    }

    .floating-support {
        right: 15px;
        bottom: 15px;

        padding: 11px 16px;
    }
}


/* =========================================================
   35. EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        padding-top: 130px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a,
    .hero-actions button {
        width: 100%;
    }

    .hero-service-pills {
        flex-direction: column;
        align-items: center;
    }

    .ts-pill {
        justify-content: center;

        width: 100%;
        max-width: 280px;
    }

    .floating-support span {
        display: none;
    }

    .floating-support {
        width: 54px;
        height: 54px;

        padding: 0;

        border-radius: 50%;
    }
}


/* =========================================================
   36. REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   EXPANDABLE PAGE SECTION SYSTEM
   ========================================================= */

.expandable-section {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


/* ---------------------------------------------------------
   Main clickable section header
   --------------------------------------------------------- */

.section-toggle {
    position: relative;

    width: 100%;

    padding: 0;

    border: 0;

    background:
        linear-gradient(
            135deg,
            #05080c,
            #080d14
        );

    color: var(--ts-white);

    text-align: left;

    cursor: pointer;

    overflow: hidden;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* subtle blue sweep */

.section-toggle::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 140, 255, 0.00),
            rgba(0, 140, 255, 0.08),
            rgba(0, 140, 255, 0.00)
        );

    opacity: 0;

    transition: opacity 0.35s ease;

    pointer-events: none;
}


.section-toggle:hover::before {
    opacity: 1;
}


.section-toggle:hover {
    background:
        linear-gradient(
            135deg,
            #07101a,
            #090e15
        );
}


/* ---------------------------------------------------------
   Inner header layout
   --------------------------------------------------------- */

.section-toggle-inner {
    position: relative;

    z-index: 2;

    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 0;
}


/* ---------------------------------------------------------
   Section number
   --------------------------------------------------------- */

.section-number {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--ts-blue-bright);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.18em;
}


/* ---------------------------------------------------------
   Section title
   --------------------------------------------------------- */

.section-toggle h2 {
    margin: 0;

    color: var(--ts-white);

    font-size: clamp(
        1.45rem,
        3vw,
        2.3rem
    );

    font-weight: 800;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.section-toggle:hover h2 {
    color: var(--ts-blue-bright);

    transform: translateX(5px);
}


/* ---------------------------------------------------------
   Preview text while section is closed
   --------------------------------------------------------- */

.section-preview {
    display: block;

    margin-top: 8px;

    color: var(--ts-muted);

    font-size: 0.83rem;

    letter-spacing: 0.02em;
}


/* ---------------------------------------------------------
   Plus / minus icon
   --------------------------------------------------------- */

.section-toggle-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 140, 255, 0.35);

    border-radius: 50%;

    background:
        rgba(0, 140, 255, 0.06);

    color: var(--ts-blue-bright);

    font-size: 1.25rem;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.section-toggle:hover .section-toggle-icon {
    background:
        rgba(0, 140, 255, 0.13);

    box-shadow:
        0 0 30px rgba(0, 140, 255, 0.18);
}


/* Rotate + into X-like position when open */

.section-toggle:not(.collapsed)
.section-toggle-icon {
    transform: rotate(45deg);

    background:
        rgba(0, 140, 255, 0.16);

    box-shadow:
        0 0 28px rgba(0, 140, 255, 0.18);
}


/* Open section header */

.section-toggle:not(.collapsed) {
    border-bottom:
        1px solid rgba(0, 140, 255, 0.25);

    box-shadow:
        inset 0 -1px 0 rgba(0, 140, 255, 0.13);
}


.section-toggle:not(.collapsed) h2 {
    color: var(--ts-blue-bright);
}


/* ---------------------------------------------------------
   Content beneath section
   --------------------------------------------------------- */

.section-content {
    position: relative;

    padding: 75px 0;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(0, 140, 255, 0.06),
            transparent 28%
        ),
        var(--ts-black);

    animation:
        sectionContentIn 0.4s ease both;
}


/* ---------------------------------------------------------
   Open animation
   --------------------------------------------------------- */

@keyframes sectionContentIn {

    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ---------------------------------------------------------
   Footer variation
   --------------------------------------------------------- */

.footer-expandable
.section-toggle {
    background: #020304;
}


/* ---------------------------------------------------------
   Mobile adjustments
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .section-toggle-inner {
        min-height: 100px;

        padding: 23px 0;

        gap: 15px;
    }


    .section-toggle-icon {
        flex: 0 0 44px;

        width: 44px;
        height: 44px;
    }


    .section-preview {
        max-width: 270px;

        font-size: 0.76rem;
    }


    .section-content {
        padding: 55px 0;
    }

}


/* =========================================================
   TECH SAVVY — COMPTIA CERTIFICATIONS
   ========================================================= */

.certifications-section {
    width: 100%;
}


/* ---------------------------------------------------------
   Certification heading
   --------------------------------------------------------- */

.certifications-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 14px;
}


.certifications-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--ts-blue-bright);

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.certifications-heading h5 {
    margin: 0;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 700;
}


.certification-count {
    padding: 5px 10px;

    border: 1px solid rgba(0, 140, 255, 0.25);

    border-radius: 50px;

    background: rgba(0, 140, 255, 0.07);

    color: var(--ts-blue-bright);

    font-size: 0.67rem;
    font-weight: 700;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Certification cards
   --------------------------------------------------------- */

.certification-card {
    position: relative;

    height: 100%;

    min-height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 10px 7px 8px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Blue glow on hover */

.certification-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 140, 255, 0.45);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        0 0 22px rgba(0, 140, 255, 0.09);
}


/* ---------------------------------------------------------
   CompTIA badge image
   --------------------------------------------------------- */

.certification-logo {
    display: block;

    width: 100%;
    max-width: 92px;
    height: 92px;

    object-fit: contain;

    margin: 0 auto;

    transition: transform 0.25s ease;
}


.certification-card:hover
.certification-logo {
    transform: scale(1.05);
}


/* ---------------------------------------------------------
   Small label under badge
   --------------------------------------------------------- */

.cert-short-name {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.68rem;
    font-weight: 700;

    text-align: center;

    letter-spacing: 0.02em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .certification-logo {
        max-width: 85px;
        height: 85px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .certifications-heading {
        align-items: center;
    }


    .certification-card {
        min-height: 120px;

        padding: 8px;
    }


    .certification-logo {
        max-width: 82px;
        height: 82px;
    }


    .certification-count {
        font-size: 0.6rem;
    }

}