/* ============================================================
   1TECH SOLUTIONS - PROFESSIONAL HEADER CSS
   ============================================================ */

/* ---------- Navbar Base ---------- */
.navbar {
    background: #FFFFFF !important;
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 2px 20px rgba(31, 41, 55, 0.06);
    border-bottom: 1px solid rgba(31, 41, 55, 0.04);
    transition: all 0.3s ease;
}

/* ---------- Brand / Logo ---------- */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.navbar-logo {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #F97316 !important;  /* ORANGE COLOR */
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* ---------- Nav Links ---------- */
.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: #1F2937 !important;
    padding: 0.5rem 1.1rem !important;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.01em;
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: #2563EB;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2563EB !important;
}

/* ---------- Dropdown ---------- */
.navbar-nav .dropdown-toggle {
    font-weight: 600;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    transition: transform 0.25s ease;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-nav .dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.25s ease;
        pointer-events: none;
        margin-top: 0;
        border-radius: 12px;
        border: none;
        box-shadow: 0 12px 40px rgba(31, 41, 55, 0.10);
        background: #FFFFFF;
        padding: 8px 0;
        min-width: 220px;
    }

    .navbar-nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Dropdown Items */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(31, 41, 55, 0.10);
    background: #FFFFFF;
    padding: 8px 0;
    min-width: 220px;
}

.dropdown-item {
    font-weight: 500;
    font-size: 0.88rem;
    color: #1F2937 !important;
    padding: 0.6rem 1.4rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #F5F7FA !important;
    color: #2563EB !important;
    border-left-color: #2563EB;
}

.dropdown-item.active {
    background: #F5F7FA !important;
    color: #2563EB !important;
    border-left-color: #2563EB;
}

.dropdown-divider {
    border-top: 1px solid rgba(31, 41, 55, 0.06);
    margin: 4px 12px;
}

/* ---------- Toggler (Mobile) ---------- */
.navbar-toggler {
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   RESPONSIVE - TABLET & BELOW
   ============================================================ */
@media (max-width: 991.98px) {
    .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-logo {
        height: 45px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .navbar-collapse {
        background: #FFFFFF;
        padding: 12px 0 8px;
        border-radius: 12px;
        margin-top: 8px;
        box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem !important;
        padding: 0.6rem 1.2rem !important;
        border-bottom: 1px solid rgba(31, 41, 55, 0.04);
        width: 100%;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #F5F7FA;
        border-radius: 8px;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        border: none;
        border-radius: 8px;
        background: #F5F7FA;
        box-shadow: none;
        padding: 4px 0;
        margin: 0 12px 8px;
        width: calc(100% - 24px);
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        font-size: 0.82rem;
        padding: 0.5rem 1.2rem;
        border-radius: 6px;
        font-weight: 500;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: #E5E9F0 !important;
    }

    .navbar-nav .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
    }

    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================ */
@media (max-width: 576px) {
    .navbar {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar-logo {
        height: 38px;
    }

    .brand-text {
        font-size: 0.9rem;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .navbar-nav .nav-link {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
    }

    .dropdown-item {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================================================
   EXTRA: Smooth Scroll for Fixed Nav
   ============================================================ */
html {
    scroll-padding-top: 80px;
}
/* ============================================================
   NAVIGATION - BOLD & CENTER
   ============================================================ */

/* Make nav links BOLD */
.navbar-nav .nav-link {
    font-weight: 700 !important;  /* BOLD */
    font-size: 0.95rem;
    color: #1F2937 !important;
    padding: 0.5rem 1.1rem !important;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.01em;
}

/* Underline animation (keep existing) */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: #2563EB;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2563EB !important;
}

/* ---------- CENTER ALIGN NAV ---------- */
.navbar-collapse {
    justify-content: center !important;
}

.navbar-nav {
    margin: 0 auto !important;
    align-items: center;
}

/* ---------- Dropdown Toggle Bold ---------- */
.navbar-nav .dropdown-toggle {
    font-weight: 700 !important;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    transition: transform 0.25s ease;
}

/* ---------- Dropdown Items Bold ---------- */
.dropdown-item {
    font-weight: 600 !important;
    font-size: 0.88rem;
    color: #1F2937 !important;
    padding: 0.6rem 1.4rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #F5F7FA !important;
    color: #2563EB !important;
    border-left-color: #2563EB;
}

/* ============================================================
   RESPONSIVE - MOBILE (Keep existing)
   ============================================================ */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        padding: 0.6rem 1.2rem !important;
        border-bottom: 1px solid rgba(31, 41, 55, 0.04);
        width: 100%;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav {
        margin: 0 !important;
        width: 100%;
    }

    .navbar-collapse {
        justify-content: flex-start !important;
    }

    .dropdown-item {
        font-weight: 600 !important;
        font-size: 0.82rem;
        padding: 0.5rem 1.2rem;
    }
}

/* ============================================================
   1TECH SOLUTIONS - HERO SECTION WITH BACKGROUND IMAGE
   ============================================================ */

/* ============================================================
   HERO SECTION - UPDATED (Mobile Optimized)
   ============================================================ */

/* ---------- Wrapper ---------- */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a1628;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background Image ---------- */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/hero-hvac.jpeg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

/* ---------- Overlay (Lighter) ---------- */
.hero-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.80) 15%,
        rgba(26, 58, 92, 0.60) 40%,
        rgba(37, 99, 235, 0.30) 60%,
        transparent 80%,
        transparent 100%
    );
}

/* ---------- Glow ---------- */
.hero-glow {
    position: absolute;
    z-index: 2;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
    bottom: -50px;
    right: 5%;
    pointer-events: none;
}

/* ---------- Content Box ---------- */
.hero-content-box {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
    max-width: 620px;
}

/* ---------- Tag ---------- */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.10);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 50px;
    padding: 6px 18px 6px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #F97316;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-tag .hero-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F97316;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* ---------- Title ---------- */
.hero-title {
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
}

.hero-title .highlight {
    color: #F97316;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.5;
}

/* ---------- Description ---------- */
.hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ---------- Actions ---------- */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.30);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.45);
    color: #FFFFFF;
}

.btn-hero-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #FFFFFF;
    transform: translateY(-3px);
    color: #FFFFFF;
}

.btn-hero-secondary i {
    color: #F97316;
}

/* ---------- Badges ---------- */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #F97316;
    flex-shrink: 0;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.badge-text small {
    display: block;
    font-weight: 400;
    opacity: 0.5;
    font-size: 0.7rem;
}

/* ---------- Scroll Indicator ---------- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #F97316;
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-wrapper {
        min-height: auto;
    }

    .hero-overlay-layer {
        background: linear-gradient(
            to bottom,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(10, 22, 40, 0.85) 30%,
            rgba(26, 58, 92, 0.70) 60%,
            rgba(37, 99, 235, 0.40) 100%
        );
    }

    .hero-content-box {
        padding: 100px 0 60px;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-desc {
        font-size: 1.05rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-glow {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (IMAGE SMALLER, OVERLAY LIGHTER)
   ============================================================ */
@media (max-width: 767.98px) {
    /* Background image: smaller & centered */
    .hero-bg-img {
        background-size: contain;
        background-position: center bottom;
        background-color: #0a1628;
        opacity: 0.6; /* makes image less prominent, overlay lighter effect */
    }

    /* Overlay: lighter (more transparent) */
    .hero-overlay-layer {
        background: linear-gradient(
            to bottom,
            rgba(10, 22, 40, 0.80) 0%,
            rgba(10, 22, 40, 0.60) 40%,
            rgba(26, 58, 92, 0.40) 70%,
            rgba(37, 99, 235, 0.20) 100%
        );
    }

    .hero-content-box {
        padding: 80px 0 40px;
        text-align: center;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 4px 14px 4px 6px;
        margin: 0 auto 16px;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .highlight::after {
        height: 3px;
        bottom: 0;
    }

    .hero-desc {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.85rem;
        padding: 0.7rem 1.6rem;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .badge-item {
        flex: 0 0 calc(50% - 0.5rem);
        justify-content: center;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .badge-text small {
        font-size: 0.6rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

    .badge-item {
        flex: 0 0 100%;
    }
}
/* ============================================================
   1TECH SOLUTIONS - TRUST BADGES (IMAGE AS CARD)
   ============================================================ */

/* ---------- Section Base ---------- */
.trust-section {
    padding: 70px 0;
    background: #FFFFFF;
    position: relative;
}

.trust-section .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.trust-section .section-heading h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.trust-section .section-heading p {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Trust Cards Grid ---------- */
.trust-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* ---------- Individual Card (Image Only) ---------- */
.trust-card {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
    min-width: 200px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.06);
    aspect-ratio: 4/3;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(31, 41, 55, 0.12);
}

.trust-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #FFFFFF;
    padding: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .trust-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
        min-width: 160px;
        aspect-ratio: 4/2.5;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 40px 0;
    }

    .trust-section .section-heading h2 {
        font-size: 1.6rem;
    }

    .trust-section .section-heading p {
        font-size: 0.9rem;
    }

    .trust-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-width: 140px;
        aspect-ratio: 4/2;
    }

    .trust-card img {
        padding: 8px;
    }
}
/* ============================================================
   MOBILE VIEW - TRUST BADGES CARDS
   ============================================================ */

@media (max-width: 767.98px) {
    .trust-section {
        padding: 40px 0;
    }

    .trust-section .section-heading h2 {
        font-size: 1.6rem;
    }

    .trust-section .section-heading p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    /* Cards Grid - 2 Columns */
    .trust-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    /* Each Card */
    .trust-card {
        flex: none;
        max-width: 100%;
        min-width: auto;
        aspect-ratio: 1/0.8;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(31, 41, 55, 0.06);
    }

    .trust-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(31, 41, 55, 0.10);
    }

    .trust-card img {
        padding: 8px;
        object-fit: contain;
    }
}

/* ============================================================
   EXTRA SMALL MOBILE (Below 400px)
   ============================================================ */
@media (max-width: 399.98px) {
    .trust-cards {
        gap: 12px;
        padding: 0 8px;
    }

    .trust-card {
        aspect-ratio: 1/0.7;
        border-radius: 12px;
    }

    .trust-card img {
        padding: 6px;
    }
}
/* ============================================================
   1TECH SOLUTIONS - SERVICES SECTION STYLING
   COLORS: Blue #2563EB, Orange #F97316
   ============================================================ */

/* ---------- Section Base ---------- */
.services-section {
    padding: 70px 0;
    background: #F5F7FA;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-section .section-header .badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.10) !important;
    color: #2563EB !important;
    font-weight: 700;
}

.services-section .section-header h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 14px;
}

.services-section .section-header h2 span {
    color: #2563EB;
}

.services-section .section-header p {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ---------- Service Card ---------- */
.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
    border-color: #2563EB;
}

/* ---------- Card Image (LARGE) ---------- */
.service-card .card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #F5F7FA;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* ---------- Card Body ---------- */
.service-card .card-body {
    padding: 24px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card-body .service-icon {
    display: none; /* Hidden - image only */
}

.service-card .card-body h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 10px;
    margin-top: 0;
    position: relative;
    padding-bottom: 12px;
}

.service-card .card-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

.service-card .card-body p {
    color: #6B7280;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

/* ---------- Button ---------- */
.service-card .card-body .btn-service {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid #2563EB;
    color: #2563EB;
    background: transparent;
}

.service-card .card-body .btn-service:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: #FFFFFF;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.service-card .card-body .btn-service i {
    transition: transform 0.3s ease;
    color: #F97316;
}

.service-card .card-body .btn-service:hover i {
    transform: translateX(4px);
    color: #FFFFFF;
}

/* ---------- Orange Accent on Hover ---------- */
.service-card:hover .card-body .btn-service {
    border-color: #F97316;
    background: #F97316;
    color: #FFFFFF;
}

.service-card:hover .card-body .btn-service i {
    color: #FFFFFF;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .services-section {
        padding: 50px 0;
    }

    .services-section .section-header h2 {
        font-size: 2rem;
    }

    .service-card .card-image {
        height: 220px;
    }

    .service-card .card-body {
        padding: 20px 18px 18px;
    }

    .service-card .card-body h3 {
        font-size: 1.1rem;
    }

    .service-card .card-body h3::after {
        width: 30px;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .services-section {
        padding: 40px 0;
    }

    .services-section .section-header h2 {
        font-size: 1.8rem;
    }

    .services-section .section-header p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .service-card {
        border-radius: 16px;
        max-width: 420px;
        margin: 0 auto;
    }

    .service-card .card-image {
        height: 200px;
    }

    .service-card .card-body {
        padding: 18px 16px 16px;
    }

    .service-card .card-body h3 {
        font-size: 1.05rem;
    }

    .service-card .card-body h3::after {
        width: 28px;
    }

    .service-card .card-body p {
        font-size: 0.85rem;
    }

    .service-card .card-body .btn-service {
        padding: 8px 20px;
        font-size: 0.82rem;
        border-width: 2px;
    }

    /* 2 columns on mobile */
    .services-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .services-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .service-card .card-image {
        height: 180px;
    }

    .services-section .row.g-4 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .service-card .card-body h3::after {
        width: 24px;
        height: 2px;
    }
}/* ============================================================
   1TECH SOLUTIONS - COMMERCIAL HVAC SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.commercial-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
}

.commercial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563EB 50%, #F97316 50%);
}

/* ---------- Section Header ---------- */
.commercial-section .section-header {
    text-align: center;
    margin-bottom: 55px;
}

.commercial-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.08) !important;
    color: #F97316 !important;
    font-weight: 700;
}

.commercial-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.commercial-section .section-header h2 span {
    color: #2563EB;
}

.commercial-section .section-header .subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ---------- Commercial Card ---------- */
.commercial-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 30px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top Orange Accent Bar */
.commercial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.commercial-card:hover::before {
    opacity: 1;
}

.commercial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
    border-color: #2563EB;
}

/* ---------- Card Icon ---------- */
.commercial-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.commercial-card .card-icon.blue {
    background: rgba(37, 99, 235, 0.10);
    color: #2563EB;
}

.commercial-card .card-icon.orange {
    background: rgba(249, 115, 22, 0.10);
    color: #F97316;
}

.commercial-card .card-icon.green {
    background: rgba(34, 197, 94, 0.10);
    color: #22C55E;
}

.commercial-card:hover .card-icon.blue {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
}

.commercial-card:hover .card-icon.orange {
    background: #F97316;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
}

.commercial-card:hover .card-icon.green {
    background: #22C55E;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
}

/* ---------- Card Content ---------- */
.commercial-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 14px;
}

/* Blue Underline */
.commercial-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2563EB;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.commercial-card:hover h4::after {
    width: 60px;
    background: #F97316;
}

.commercial-card p {
    color: #6B7280;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}

/* ---------- Card Button ---------- */
.commercial-card .btn-commercial {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #2563EB;
    color: #2563EB;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.commercial-card .btn-commercial i {
    color: #F97316;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.commercial-card .btn-commercial:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: #FFFFFF;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    text-decoration: none;
}

.commercial-card .btn-commercial:hover i {
    transform: translateX(4px);
    color: #FFFFFF;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .commercial-section {
        padding: 60px 0;
    }

    .commercial-section .section-header h2 {
        font-size: 2.2rem;
    }

    .commercial-card {
        padding: 30px 22px 22px;
    }

    .commercial-card .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .commercial-card h4 {
        font-size: 1.1rem;
    }

    .commercial-card .btn-commercial {
        padding: 8px 22px;
        font-size: 0.82rem;
    }

    /* 2 columns on tablet */
    .commercial-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .commercial-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .commercial-section {
        padding: 45px 0;
    }

    .commercial-section .section-header {
        margin-bottom: 35px;
    }

    .commercial-section .section-header h2 {
        font-size: 1.8rem;
    }

    .commercial-section .section-header .subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .commercial-card {
        border-radius: 16px;
        padding: 28px 18px 18px;
        max-width: 400px;
        margin: 0 auto;
    }

    .commercial-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .commercial-card h4 {
        font-size: 1.05rem;
        padding-bottom: 10px;
    }

    .commercial-card h4::after {
        width: 30px;
        height: 2px;
    }

    .commercial-card:hover h4::after {
        width: 45px;
    }

    .commercial-card p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .commercial-card .btn-commercial {
        padding: 8px 20px;
        font-size: 0.8rem;
        border-width: 2px;
    }

    /* 1 column on mobile */
    .commercial-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .commercial-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .commercial-card {
        padding: 20px 14px 14px;
    }

    .commercial-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .commercial-card h4 {
        font-size: 0.95rem;
    }

    .commercial-card p {
        font-size: 0.8rem;
    }

    .commercial-card .btn-commercial {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}/* ============================================================
   1TECH SOLUTIONS - HOW IT WORKS / PROCESS SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.process-section {
    padding: 80px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.process-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.process-section .section-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.process-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563EB !important;
    font-weight: 700;
}

.process-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.process-section .section-header h2 span {
    color: #2563EB;
}

.process-section .section-header .subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ---------- Process Card ---------- */
.process-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 35px 28px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top Orange Accent Bar */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.10);
    border-color: #2563EB;
}

/* ---------- Step Number ---------- */
.process-card .step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

/* Orange Ring Around Number */
.process-card .step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.20);
    transition: all 0.4s ease;
}

.process-card:hover .step-number::after {
    border-color: #F97316;
    transform: scale(1.08);
}

.process-card:hover .step-number {
    background: linear-gradient(135deg, #F97316, #EA580C);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.30);
}

/* ---------- Step Title ---------- */
.process-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1F2937;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 14px;
}

/* Blue Underline */
.process-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #2563EB;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.process-card:hover h4::after {
    width: 55px;
    background: #F97316;
}

/* ---------- Step Description ---------- */
.process-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

/* ---------- Connector Line (Desktop) ---------- */
.process-connector {
    display: none;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .process-section {
        padding: 60px 0;
    }

    .process-section .section-header h2 {
        font-size: 2.2rem;
    }

    .process-card {
        padding: 28px 20px 22px;
    }

    .process-card .step-number {
        width: 62px;
        height: 62px;
        font-size: 1.6rem;
    }

    .process-card h4 {
        font-size: 1.05rem;
    }

    /* 2 columns on tablet */
    .process-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .process-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }

    .process-section .row.g-4 > [class*="col-"]:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .process-section {
        padding: 45px 0;
    }

    .process-section .section-header {
        margin-bottom: 35px;
    }

    .process-section .section-header h2 {
        font-size: 1.8rem;
    }

    .process-section .section-header .subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .process-card {
        border-radius: 16px;
        padding: 28px 18px 20px;
        max-width: 420px;
        margin: 0 auto;
    }

    .process-card .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .process-card .step-number::after {
        inset: -3px;
    }

    .process-card h4 {
        font-size: 1rem;
        padding-bottom: 10px;
    }

    .process-card h4::after {
        width: 30px;
        height: 2px;
    }

    .process-card:hover h4::after {
        width: 45px;
    }

    .process-card p {
        font-size: 0.85rem;
    }

    /* 1 column on mobile */
    .process-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .process-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .process-card {
        padding: 20px 14px 16px;
    }

    .process-card .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .process-card h4 {
        font-size: 0.95rem;
    }

    .process-card p {
        font-size: 0.8rem;
    }
}/* ============================================================
   1TECH SOLUTIONS - MAINTENANCE SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.maintenance-section {
    padding: 80px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.maintenance-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.maintenance-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.maintenance-section .section-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.maintenance-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.08) !important;
    color: #F97316 !important;
    font-weight: 700;
}

.maintenance-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.maintenance-section .section-header h2 span {
    color: #2563EB;
}

.maintenance-section .section-header .subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ---------- Maintenance Card ---------- */
.maintenance-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 35px 25px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top Blue Accent Bar */
.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2563EB;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.maintenance-card:hover::before {
    opacity: 1;
}

.maintenance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.10);
    border-color: #2563EB;
}

/* ---------- Card Icon ---------- */
.maintenance-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.maintenance-card .card-icon.blue {
    background: rgba(37, 99, 235, 0.10);
    color: #2563EB;
}

.maintenance-card .card-icon.orange {
    background: rgba(249, 115, 22, 0.10);
    color: #F97316;
}

.maintenance-card .card-icon.green {
    background: rgba(34, 197, 94, 0.10);
    color: #22C55E;
}

.maintenance-card .card-icon.purple {
    background: rgba(139, 92, 246, 0.10);
    color: #8B5CF6;
}

.maintenance-card:hover .card-icon.blue {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.maintenance-card:hover .card-icon.orange {
    background: #F97316;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
}

.maintenance-card:hover .card-icon.green {
    background: #22C55E;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
}

.maintenance-card:hover .card-icon.purple {
    background: #8B5CF6;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

/* ---------- Card Content ---------- */
.maintenance-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 14px;
}

/* Orange Underline */
.maintenance-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.maintenance-card:hover h5::after {
    width: 55px;
    background: #2563EB;
}

.maintenance-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

/* ---------- Callout Box ---------- */
.maintenance-callout {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.20);
    border: none;
}

.maintenance-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.maintenance-callout::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.maintenance-callout .callout-icon {
    font-size: 2.5rem;
    color: #F97316;
    margin-bottom: 12px;
    display: block;
}

.maintenance-callout strong {
    color: #FFFFFF;
    font-weight: 700;
}

.maintenance-callout p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.maintenance-callout .highlight-orange {
    color: #F97316;
    font-weight: 700;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .maintenance-section {
        padding: 60px 0;
    }

    .maintenance-section .section-header h2 {
        font-size: 2.2rem;
    }

    .maintenance-card {
        padding: 28px 20px 22px;
    }

    .maintenance-card .card-icon {
        width: 62px;
        height: 62px;
        font-size: 1.6rem;
    }

    .maintenance-card h5 {
        font-size: 1rem;
    }

    .maintenance-callout {
        padding: 28px 25px;
        margin-top: 30px;
    }

    .maintenance-callout p {
        font-size: 0.95rem;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .maintenance-section {
        padding: 45px 0;
    }

    .maintenance-section .section-header {
        margin-bottom: 35px;
    }

    .maintenance-section .section-header h2 {
        font-size: 1.8rem;
    }

    .maintenance-section .section-header .subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .maintenance-card {
        border-radius: 16px;
        padding: 24px 16px 18px;
        max-width: 400px;
        margin: 0 auto;
    }

    .maintenance-card .card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .maintenance-card h5 {
        font-size: 0.95rem;
        padding-bottom: 10px;
    }

    .maintenance-card h5::after {
        width: 30px;
        height: 2px;
    }

    .maintenance-card:hover h5::after {
        width: 45px;
    }

    .maintenance-card p {
        font-size: 0.85rem;
    }

    .maintenance-callout {
        padding: 24px 18px;
        border-radius: 16px;
        margin-top: 25px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .maintenance-callout .callout-icon {
        font-size: 2rem;
    }

    .maintenance-callout p {
        font-size: 0.9rem;
    }

    /* 2 columns on mobile */
    .maintenance-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .maintenance-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 450px) {
    .maintenance-section .row.g-4 {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .maintenance-card {
        padding: 20px 14px 16px;
    }

    .maintenance-card .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .maintenance-card h5 {
        font-size: 0.9rem;
    }

    .maintenance-card p {
        font-size: 0.8rem;
    }

    .maintenance-callout {
        padding: 20px 14px;
        margin-left: 0;
        margin-right: 0;
    }

    .maintenance-callout p {
        font-size: 0.85rem;
    }
}
/* ============================================================
   FIX: .text-muted small mb-0 - Bigger & Darker
   ============================================================ */

.text-muted.small.mb-0 {
    font-size: 0.95rem !important;
    color: #4B5563 !important;
    line-height: 1.6 !important;
}

/* OR if you want to target all .text-muted.small */
.text-muted.small {
    font-size: 0.95rem !important;
    color: #4B5563 !important;
}

/* For mobile 375px specific */
@media (max-width: 375px) {
    .text-muted.small.mb-0 {
        font-size: 0.9rem !important;
        color: #4B5563 !important;
    }
}
/* ============================================================
   1TECH SOLUTIONS - INDOOR AIR QUALITY SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.airquality-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.airquality-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.airquality-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.airquality-section .section-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.airquality-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(6, 182, 212, 0.08) !important;
    color: #06B6D4 !important;
    font-weight: 700;
}

.airquality-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.airquality-section .section-header h2 span {
    color: #2563EB;
}

.airquality-section .section-header .subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ---------- Air Quality Card ---------- */
.airquality-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 35px 25px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top Orange Accent Bar */
.airquality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.airquality-card:hover::before {
    opacity: 1;
}

.airquality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.10);
    border-color: #2563EB;
}

/* ---------- Card Icon ---------- */
.airquality-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.airquality-card .card-icon.cyan {
    background: rgba(6, 182, 212, 0.10);
    color: #06B6D4;
}

.airquality-card .card-icon.blue {
    background: rgba(37, 99, 235, 0.10);
    color: #2563EB;
}

.airquality-card .card-icon.orange {
    background: rgba(249, 115, 22, 0.10);
    color: #F97316;
}

.airquality-card .card-icon.green {
    background: rgba(34, 197, 94, 0.10);
    color: #22C55E;
}

.airquality-card:hover .card-icon.cyan {
    background: #06B6D4;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.25);
}

.airquality-card:hover .card-icon.blue {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.airquality-card:hover .card-icon.orange {
    background: #F97316;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
}

.airquality-card:hover .card-icon.green {
    background: #22C55E;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
}

/* ---------- Card Content ---------- */
.airquality-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1F2937;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 14px;
}

/* Blue Underline */
.airquality-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #2563EB;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.airquality-card:hover h5::after {
    width: 55px;
    background: #F97316;
}

.airquality-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .airquality-section {
        padding: 60px 0;
    }

    .airquality-section .section-header h2 {
        font-size: 2.2rem;
    }

    .airquality-card {
        padding: 28px 20px 22px;
    }

    .airquality-card .card-icon {
        width: 62px;
        height: 62px;
        font-size: 1.6rem;
    }

    .airquality-card h5 {
        font-size: 1.05rem;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .airquality-section {
        padding: 45px 0;
    }

    .airquality-section .section-header {
        margin-bottom: 35px;
    }

    .airquality-section .section-header h2 {
        font-size: 1.8rem;
    }

    .airquality-section .section-header .subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .airquality-card {
        border-radius: 16px;
        padding: 24px 16px 18px;
        max-width: 400px;
        margin: 0 auto;
    }

    .airquality-card .card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .airquality-card h5 {
        font-size: 1rem;
        padding-bottom: 10px;
    }

    .airquality-card h5::after {
        width: 30px;
        height: 2px;
    }

    .airquality-card:hover h5::after {
        width: 45px;
    }

    .airquality-card p {
        font-size: 0.85rem;
    }

    /* 2 columns on mobile */
    .airquality-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .airquality-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 450px) {
    .airquality-section .row.g-4 {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .airquality-card {
        padding: 20px 14px 16px;
    }

    .airquality-card .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .airquality-card h5 {
        font-size: 0.95rem;
    }

    .airquality-card p {
        font-size: 0.8rem;
    }
}
/* ============================================================
   1TECH SOLUTIONS - AREAS WE SERVE
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.areas-section {
    padding: 80px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* ---------- Section Header ---------- */
.areas-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.areas-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563EB !important;
    font-weight: 700;
}

.areas-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.areas-section .section-header h2 span {
    color: #2563EB;
}

.areas-section .section-header .subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ---------- Area Card ---------- */
.area-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

/* ---------- Area Image ---------- */
.area-card .area-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-card:hover .area-image {
    transform: scale(1.08);
}

/* ---------- Overlay ---------- */
.area-card .area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(10, 22, 40, 0.50) 40%,
        rgba(10, 22, 40, 0.20) 70%,
        transparent 100%
    );
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 20px;
}

.area-card:hover .area-overlay {
    background: linear-gradient(
        to top,
        rgba(37, 99, 235, 0.85) 0%,
        rgba(37, 99, 235, 0.50) 40%,
        rgba(37, 99, 235, 0.20) 70%,
        transparent 100%
    );
}

/* ---------- Orange Accent Line ---------- */
.area-card .area-overlay .accent-line {
    width: 40px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
    margin-bottom: 10px;
    transition: width 0.4s ease;
}

.area-card:hover .area-overlay .accent-line {
    width: 60px;
}

/* ---------- Area Name ---------- */
.area-card .area-overlay .area-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.area-card .area-overlay .area-state {
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.area-card .area-overlay .area-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- View Button ---------- */
.area-card .area-overlay .btn-area {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.area-card .area-overlay .btn-area i {
    color: #F97316;
    transition: transform 0.3s ease;
}

.area-card:hover .area-overlay .btn-area {
    opacity: 1;
    transform: translateY(0);
}

.area-card .area-overlay .btn-area:hover {
    color: #F97316;
}

.area-card .area-overlay .btn-area:hover i {
    transform: translateX(4px);
}

/* ---------- Callout Box ---------- */
.areas-callout {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.20);
    border: none;
}

.areas-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.areas-callout::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.areas-callout strong {
    color: #FFFFFF;
    font-weight: 700;
}

.areas-callout p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.areas-callout .highlight-orange {
    color: #F97316;
    font-weight: 700;
}

.areas-callout .callout-phone {
    color: #F97316;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-callout .callout-phone:hover {
    color: #FFFFFF;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .areas-section {
        padding: 60px 0;
    }

    .areas-section .section-header h2 {
        font-size: 2.2rem;
    }

    .area-card {
        aspect-ratio: 4/2.8;
    }

    .area-card .area-overlay {
        padding: 20px 16px;
    }

    .area-card .area-overlay .area-name {
        font-size: 1.2rem;
    }

    .areas-callout {
        padding: 28px 25px;
        margin-top: 30px;
    }

    .areas-callout p {
        font-size: 0.95rem;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .areas-section {
        padding: 45px 0;
    }

    .areas-section .section-header {
        margin-bottom: 35px;
    }

    .areas-section .section-header h2 {
        font-size: 1.8rem;
    }

    .areas-section .section-header .subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .area-card {
        aspect-ratio: 4/2.5;
        border-radius: 16px;
    }

    .area-card .area-overlay {
        padding: 18px 14px;
    }

    .area-card .area-overlay .area-name {
        font-size: 1.1rem;
    }

    .area-card .area-overlay .area-state {
        font-size: 0.75rem;
    }

    .area-card .area-overlay .btn-area {
        font-size: 0.8rem;
        opacity: 1;
        transform: translateY(0);
    }

    /* 2 columns on mobile */
    .areas-section .row.g-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .areas-section .row.g-3 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }

    .areas-callout {
        padding: 20px 16px;
        border-radius: 16px;
        margin-top: 25px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .areas-callout p {
        font-size: 0.85rem;
    }

    .areas-callout .callout-phone {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .area-card {
        aspect-ratio: 4/2.2;
        border-radius: 14px;
    }

    .area-card .area-overlay {
        padding: 14px 12px;
    }

    .area-card .area-overlay .area-name {
        font-size: 0.95rem;
    }

    .area-card .area-overlay .area-state {
        font-size: 0.7rem;
    }

    .area-card .area-overlay .accent-line {
        width: 30px;
        height: 2px;
        margin-bottom: 6px;
    }

    .area-card:hover .area-overlay .accent-line {
        width: 45px;
    }

    .area-card .area-overlay .btn-area {
        font-size: 0.7rem;
        margin-top: 6px;
    }

    .areas-section .row.g-3 {
        gap: 10px;
        padding: 0 5px;
    }
}

/* ============================================================
   1TECH SOLUTIONS - TESTIMONIALS / REVIEWS SECTION
   COLOR SCHEME: More colors, less white
   ============================================================ */

/* ---------- Section Base ---------- */
.testimonials-section {
    padding: 80px 0;
    background: #F5F7FA; /* Light gray instead of white */
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements - More prominent */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.12) !important;
    color: #F97316 !important;
    font-weight: 700;
}

.testimonials-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.testimonials-section .section-header h2 span {
    color: #2563EB;
}

.testimonials-section .section-header .subtitle {
    color: #4B5563; /* Darker gray */
    font-size: 1.1rem;
    max-width: 750px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ---------- Testimonial Card ---------- */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 30px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(31, 41, 55, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top Blue-Orange Gradient Bar */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563EB, #F97316);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
    border-color: #2563EB;
}

/* ---------- Quote Icon ---------- */
.testimonial-card .quote-icon {
    color: #2563EB;
    font-size: 1.8rem;
    margin-bottom: 12px;
    opacity: 0.20;
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.40;
    color: #F97316;
}

/* ---------- Stars ---------- */
.testimonial-card .stars {
    color: #F97316;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card .stars i {
    margin-right: 2px;
}

/* ---------- Review Text ---------- */
.testimonial-card .review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1F2937;
    margin-bottom: 16px;
    flex: 1;
    font-style: italic;
}

.testimonial-card .review-text::before {
    content: '"';
    color: #2563EB;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-card .review-text::after {
    content: '"';
    color: #2563EB;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ---------- Author ---------- */
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #F5F7FA;
    padding-top: 14px;
    margin-top: auto;
}

.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card .author .avatar.orange {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

.testimonial-card .author .avatar.green {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

.testimonial-card .author .avatar.purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.testimonial-card .author .info {
    display: flex;
    flex-direction: column;
}

.testimonial-card .author .info .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1F2937;
}

.testimonial-card .author .info .date {
    font-size: 0.78rem;
    color: #6B7280;
}

/* ---------- Rating Badge ---------- */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #2563EB;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.rating-badge:hover {
    background: #2563EB;
    border-color: #2563EB;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.20);
}

.rating-badge .stars {
    color: #F97316;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-badge:hover .stars {
    color: #FFFFFF;
}

.rating-badge .score {
    font-weight: 800;
    font-size: 1.2rem;
    color: #1F2937;
}

.rating-badge:hover .score {
    color: #FFFFFF;
}

.rating-badge .label {
    font-size: 0.85rem;
    color: #6B7280;
}

.rating-badge:hover .label {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 24px 20px 20px;
    }

    .testimonial-card .review-text {
        font-size: 0.9rem;
    }

    .testimonial-card .author .avatar {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 45px 0;
    }

    .testimonials-section .section-header {
        margin-bottom: 35px;
    }

    .testimonials-section .section-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-section .section-header .subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .testimonial-card {
        border-radius: 16px;
        padding: 20px 16px 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-card .quote-icon {
        font-size: 1.4rem;
    }

    .testimonial-card .stars {
        font-size: 0.85rem;
    }

    .testimonial-card .review-text {
        font-size: 0.85rem;
    }

    .testimonial-card .author .avatar {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .testimonial-card .author .info .name {
        font-size: 0.85rem;
    }

    .testimonial-card .author .info .date {
        font-size: 0.7rem;
    }

    /* 2 columns on mobile */
    .testimonials-section .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .testimonials-section .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }

    .rating-badge {
        padding: 10px 20px;
        flex-wrap: wrap;
        justify-content: center;
        border-width: 2px;
    }

    .rating-badge .score {
        font-size: 1rem;
    }
}

@media (max-width: 450px) {
    .testimonials-section .row.g-4 {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 18px 14px 14px;
    }

    .testimonial-card .review-text {
        font-size: 0.8rem;
    }

    .testimonial-card .author .avatar {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .rating-badge {
        padding: 8px 16px;
        gap: 8px;
    }

    .rating-badge .stars {
        font-size: 0.8rem;
    }

    .rating-badge .score {
        font-size: 0.9rem;
    }

    .rating-badge .label {
        font-size: 0.75rem;
    }
}
/* ============================================================
   1TECH SOLUTIONS - FAQ SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.faq-section {
    padding: 80px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.faq-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.faq-section .section-header .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563EB !important;
    font-weight: 700;
}

.faq-section .section-header h2 {
    font-weight: 800;
    font-size: 2.6rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.faq-section .section-header h2 span {
    color: #2563EB;
}

/* ---------- Accordion Container ---------- */
.faq-section .accordion {
    border-radius: 16px;
    overflow: hidden;
}

/* ---------- Accordion Item ---------- */
.faq-section .accordion-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.04);
}

.faq-section .accordion-item:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}

/* ---------- Accordion Header / Button ---------- */
.faq-section .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1F2937;
    padding: 18px 24px;
    background: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
    box-shadow: none !important;
    position: relative;
}

.faq-section .accordion-button::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: #2563EB;
    background-image: none !important;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #F97316;
}

.faq-section .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2563EB;
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-section .accordion-button:hover::before,
.faq-section .accordion-button:not(.collapsed)::before {
    opacity: 1;
}

.faq-section .accordion-button:hover {
    color: #2563EB;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #2563EB;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
}

.faq-section .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

/* ---------- Accordion Icon (Question Mark) ---------- */
.faq-section .accordion-button .faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-size: 0.75rem;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) .faq-icon {
    background: #F97316;
    color: #FFFFFF;
}

/* ---------- Accordion Body ---------- */
.faq-section .accordion-body {
    padding: 20px 24px 24px;
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.8;
    background: #FFFFFF;
}

.faq-section .accordion-body strong {
    color: #1F2937;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section .section-header h2 {
        font-size: 2.2rem;
    }

    .faq-section .accordion-button {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .faq-section .accordion-body {
        font-size: 0.9rem;
        padding: 16px 20px 20px;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .faq-section {
        padding: 45px 0;
    }

    .faq-section .section-header {
        margin-bottom: 35px;
    }

    .faq-section .section-header h2 {
        font-size: 1.8rem;
    }

    .faq-section .accordion-item {
        border-radius: 14px !important;
        margin-bottom: 10px;
    }

    .faq-section .accordion-button {
        font-size: 0.88rem;
        padding: 14px 16px;
    }

    .faq-section .accordion-button .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
        margin-right: 10px;
    }

    .faq-section .accordion-body {
        font-size: 0.85rem;
        padding: 14px 16px 18px;
    }

    .faq-section .accordion-button::after {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .faq-section .accordion-button {
        font-size: 0.82rem;
        padding: 12px 14px;
    }

    .faq-section .accordion-button .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
        margin-right: 8px;
    }

    .faq-section .accordion-body {
        font-size: 0.8rem;
        padding: 12px 14px 16px;
    }
}
/* ============================================================
   1TECH SOLUTIONS - VOICE SEARCH ANSWERS SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.voice-section {
    padding: 80px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* ---------- Voice Container ---------- */
.voice-container {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 40%, #2563EB 100%);
    border-radius: 24px;
    padding: 50px 50px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

/* Decorative Elements */
.voice-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.voice-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Header ---------- */
.voice-container .voice-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.voice-container .voice-header .microphone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.4s ease;
    animation: pulse-icon 2s ease-in-out infinite;
}

/* Pulse Animation for Microphone */
@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(249, 115, 22, 0);
    }
}

.voice-container .voice-header .microphone-icon:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    background: #F97316;
    color: #FFFFFF;
}

.voice-container .voice-header h2 {
    font-weight: 800;
    font-size: 2.4rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.voice-container .voice-header h2 span {
    color: #F97316;
}

.voice-container .voice-header .subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 6px;
}

/* ---------- Voice Card ---------- */
.voice-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 26px 26px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Hover Glow Effect */
.voice-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.voice-card:hover::before {
    opacity: 1;
}

.voice-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(249, 115, 22, 0.30);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
}

/* ---------- Voice Card Icon ---------- */
.voice-card .voice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    font-size: 0.9rem;
    margin-right: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.voice-card:hover .voice-icon {
    background: #F97316;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* ---------- Voice Card Title ---------- */
.voice-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* ---------- Voice Card Text ---------- */
.voice-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 46px;
}

/* ---------- Orange Accent Line ---------- */
.voice-card .accent-line {
    display: block;
    width: 30px;
    height: 2px;
    background: #F97316;
    margin: 6px 0 8px 46px;
    border-radius: 1px;
    transition: width 0.4s ease;
}

.voice-card:hover .accent-line {
    width: 50px;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .voice-section {
        padding: 60px 0;
    }

    .voice-container {
        padding: 35px 30px 30px;
        border-radius: 20px;
    }

    .voice-container .voice-header h2 {
        font-size: 2rem;
    }

    .voice-card {
        padding: 22px 20px 20px;
    }

    .voice-card h5 {
        font-size: 0.95rem;
    }

    .voice-card p {
        font-size: 0.88rem;
        padding-left: 40px;
    }

    .voice-card .accent-line {
        margin-left: 40px;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .voice-section {
        padding: 45px 0;
    }

    .voice-container {
        padding: 28px 16px 24px;
        border-radius: 16px;
        margin: 0 10px;
    }

    .voice-container .voice-header {
        margin-bottom: 28px;
    }

    .voice-container .voice-header .microphone-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .voice-container .voice-header h2 {
        font-size: 1.6rem;
    }

    .voice-container .voice-header .subtitle {
        font-size: 0.85rem;
    }

    .voice-card {
        padding: 18px 16px 16px;
        border-radius: 14px;
    }

    .voice-card h5 {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .voice-card .voice-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        margin-right: 8px;
    }

    .voice-card p {
        font-size: 0.82rem;
        padding-left: 0;
        margin-top: 6px;
    }

    .voice-card .accent-line {
        margin-left: 0;
        margin-top: 4px;
    }

    /* 1 column on mobile */
    .voice-container .row.g-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .voice-container .row.g-4 > [class*="col-"] {
        padding: 0;
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .voice-container {
        padding: 20px 12px 18px;
        border-radius: 14px;
    }

    .voice-container .voice-header h2 {
        font-size: 1.3rem;
    }

    .voice-container .voice-header .microphone-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .voice-card {
        padding: 14px 12px 14px;
    }

    .voice-card h5 {
        font-size: 0.82rem;
    }

    .voice-card p {
        font-size: 0.78rem;
    }
}
/* ============================================================
   1TECH SOLUTIONS - FINAL CALL TO ACTION SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #FFFFFF (White)
   ============================================================ */

/* ---------- Section Base ---------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 40%, #2563EB 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(249, 115, 22, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Floating Decorative Shapes ---------- */
.cta-section .shape-dots {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    opacity: 0.08;
    pointer-events: none;
}

.cta-section .shape-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF;
}

.cta-section .shape-dots-2 {
    position: absolute;
    bottom: 20%;
    right: 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    opacity: 0.06;
    pointer-events: none;
}

.cta-section .shape-dots-2 span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
}

/* ---------- Content ---------- */
.cta-section .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- Heading ---------- */
.cta-section .cta-content h2 {
    font-weight: 900;
    font-size: 3.2rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-section .cta-content h2 .highlight {
    color: #F97316;
    position: relative;
}

.cta-section .cta-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    width: 100%;
}

/* ---------- Subtitle ---------- */
.cta-section .cta-content .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons Container ---------- */
.cta-section .cta-content .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

/* ---------- Primary Button (Orange) ---------- */
.cta-section .cta-content .btn-cta-primary {
    background: #F97316;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-section .cta-content .btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.cta-section .cta-content .btn-cta-primary:hover::before {
    left: 100%;
}

.cta-section .cta-content .btn-cta-primary:hover {
    background: #EA580C;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.45);
    color: #FFFFFF;
}

.cta-section .cta-content .btn-cta-primary i {
    transition: transform 0.3s ease;
}

.cta-section .cta-content .btn-cta-primary:hover i {
    transform: rotate(-15deg) scale(1.1);
}

/* ---------- Secondary Button (Outline) ---------- */
.cta-section .cta-content .btn-cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-section .cta-content .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
    color: #FFFFFF;
}

.cta-section .cta-content .btn-cta-secondary i {
    color: #F97316;
    transition: transform 0.3s ease;
}

.cta-section .cta-content .btn-cta-secondary:hover i {
    transform: translateX(4px);
}

/* ---------- Bottom Info ---------- */
.cta-section .cta-content .bottom-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-section .cta-content .bottom-info i {
    color: #F97316;
}

.cta-section .cta-content .bottom-info .highlight-text {
    color: #F97316;
    font-weight: 600;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .cta-content h2 {
        font-size: 2.6rem;
    }

    .cta-section .cta-content .subtitle {
        font-size: 1.1rem;
    }

    .cta-section .cta-content .btn-cta-primary,
    .cta-section .cta-content .btn-cta-secondary {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .cta-section {
        padding: 45px 20px;
    }

    .cta-section .cta-content h2 {
        font-size: 2rem;
    }

    .cta-section .cta-content h2 .highlight::after {
        height: 3px;
        bottom: -2px;
    }

    .cta-section .cta-content .subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .cta-section .cta-content .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-section .cta-content .btn-cta-primary,
    .cta-section .cta-content .btn-cta-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .cta-section .cta-content .bottom-info {
        font-size: 0.8rem;
    }

    .cta-section .shape-dots,
    .cta-section .shape-dots-2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .cta-section .cta-content h2 {
        font-size: 1.7rem;
    }

    .cta-section .cta-content .btn-cta-primary,
    .cta-section .cta-content .btn-cta-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
/* ============================================================
   1TECH SOLUTIONS - FOOTER SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #1F2937 (Dark)
   ============================================================ */

/* ---------- Footer Base ---------- */
.footer-section {
    background: #1F2937;
    padding: 55px 0 10px;
    margin-top: auto;
    position: relative;
}

/* ---------- Footer Top ---------- */
.footer-top {
    padding-bottom: 25px;
}

/* ---------- Brand & Logo ---------- */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer-logo {
    height: 55px;
    width: auto;
    max-width: 180px;
    display: block;
    margin-bottom: 6px;
}

.footer-brand h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin: 0;
}

.footer-brand h5 span {
    color: #F97316;
}

/* ---------- About Text (WHITE) ---------- */
.footer-about {
    color: #FFFFFF !important;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
    opacity: 1 !important;
    max-width: 280px;
}

/* ---------- Social Links ---------- */
.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-link:hover {
    background: #2563EB;
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.30);
    border-color: #2563EB;
}

/* ---------- Headings ---------- */
.footer-heading {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

/* ---------- Footer Menu ---------- */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-menu a::before {
    content: '› ';
    color: #F97316;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.footer-menu a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-menu a:hover::before {
    opacity: 1;
}

/* ---------- Contact ---------- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #2563EB;
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact li a:hover {
    color: #FFFFFF;
}

.footer-contact li.license i {
    color: #F97316;
}

/* ---------- Bottom Footer ---------- */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0 0 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
    text-align: center;
}

.footer-bottom .separator {
    margin: 0 6px;
    opacity: 0.3;
}

.footer-bottom .license-text {
    color: #F97316;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 40px 0 10px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-brand h5 {
        font-size: 1.05rem;
    }

    .footer-about {
        font-size: 0.82rem;
    }

    .footer-heading {
        font-size: 0.9rem;
    }

    .footer-menu a {
        font-size: 0.82rem;
    }

    .footer-contact li {
        font-size: 0.82rem;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (2 COLUMNS)
   ============================================================ */
@media (max-width: 767.98px) {
    .footer-section {
        padding: 30px 0 8px;
    }

    .footer-top {
        padding-bottom: 15px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-brand h5 {
        font-size: 0.95rem;
    }

    .footer-about {
        font-size: 0.78rem;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.82rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .footer-heading::after {
        width: 20px;
        height: 2px;
    }

    .footer-menu a {
        font-size: 0.75rem;
    }

    .footer-menu li {
        margin-bottom: 4px;
    }

    .footer-contact li {
        font-size: 0.75rem;
        gap: 8px;
        margin-bottom: 5px;
    }

    .footer-contact li i {
        width: 14px;
        font-size: 0.75rem;
        margin-top: 2px;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    /* ---------- 2 COLUMNS GRID ---------- */
    .footer-top .row.g-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
    }

    .footer-top .row.g-4 > [class*="col-"] {
        flex: none;
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    /* Column 1 (Brand) - Full width on mobile */
    .footer-top .row.g-4 > .col-6.col-md-3:first-child {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .footer-menu a::before {
        opacity: 1;
        font-size: 0.65rem;
    }

    .footer-menu a:hover {
        transform: translateX(2px);
    }
}

@media (max-width: 400px) {
    .footer-section {
        padding: 25px 0 6px;
    }

    .footer-top .row.g-4 {
        gap: 15px 10px;
        padding: 0 3px;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-brand h5 {
        font-size: 0.85rem;
    }

    .footer-about {
        font-size: 0.72rem;
    }

    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .footer-heading {
        font-size: 0.75rem;
        margin-bottom: 8px;
        padding-bottom: 5px;
    }

    .footer-heading::after {
        width: 16px;
        height: 2px;
    }

    .footer-menu a {
        font-size: 0.7rem;
    }

    .footer-contact li {
        font-size: 0.7rem;
        gap: 6px;
        margin-bottom: 4px;
    }

    .footer-contact li i {
        width: 12px;
        font-size: 0.7rem;
    }

    .footer-bottom p {
        font-size: 0.6rem;
    }

    .footer-bottom .separator {
        margin: 0 4px;
    }
}
/* ============================================================
   1TECH SOLUTIONS - ABOUT US SECTION (HOME PAGE)
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.about-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Content ---------- */
.about-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

/* ---------- Badge ---------- */
.about-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ---------- Heading ---------- */
.about-title {
    font-weight: 800;
    font-size: 2.4rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-title span {
    color: #2563EB;
    position: relative;
}

.about-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

/* ---------- Description ---------- */
.about-desc {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-desc:last-of-type {
    margin-bottom: 28px;
}

/* ---------- Stats ---------- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #F5F7FA;
    border-bottom: 1px solid #F5F7FA;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-weight: 800;
    font-size: 1.8rem;
    color: #2563EB;
    line-height: 1.2;
}

.stat-item:nth-child(2) .stat-number {
    color: #F97316;
}

.stat-item:nth-child(3) .stat-number {
    color: #22C55E;
}

.stat-item:nth-child(4) .stat-number {
    color: #8B5CF6;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 2px;
}

/* ---------- Button ---------- */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.25);
}

.btn-about:hover {
    background: linear-gradient(135deg, #1D4ED8, #1A3A8A);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.35);
    color: #FFFFFF;
}

.btn-about i {
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* ---------- Image Wrapper ---------- */
.about-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 20px 20px 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 41, 55, 0.10);
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ---------- Decorative Shapes ---------- */
.about-image-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.about-image-shape.shape-1 {
    width: 100px;
    height: 100px;
    background: rgba(249, 115, 22, 0.08);
    top: -30px;
    right: -30px;
    animation: floatShape1 8s ease-in-out infinite;
}

.about-image-shape.shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.06);
    bottom: -20px;
    left: -20px;
    animation: floatShape2 10s ease-in-out infinite;
}

.about-image-shape.shape-3 {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.10);
    top: 40%;
    left: -15px;
    animation: floatShape3 12s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -15px) scale(1.1); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -10px) scale(0.9); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5px, 10px) scale(1.15); }
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 0.95rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .btn-about {
        margin: 0 auto;
    }

    .about-image-wrapper {
        padding: 10px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-shape.shape-1 {
        width: 70px;
        height: 70px;
        top: -20px;
        right: -20px;
    }

    .about-image-shape.shape-2 {
        width: 50px;
        height: 50px;
        bottom: -15px;
        left: -15px;
    }

    .about-image-shape.shape-3 {
        display: none;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767.98px) {
    .about-section {
        padding: 45px 0;
    }

    .about-title {
        font-size: 1.7rem;
    }

    .about-title span::after {
        height: 3px;
    }

    .about-desc {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 15px 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .btn-about {
        font-size: 0.85rem;
        padding: 10px 24px;
    }

    .about-image {
        aspect-ratio: 4/2.8;
        border-radius: 16px;
    }

    .about-image-wrapper {
        padding: 5px;
    }

    .about-image-shape.shape-1 {
        width: 50px;
        height: 50px;
        top: -15px;
        right: -15px;
    }

    .about-image-shape.shape-2 {
        width: 35px;
        height: 35px;
        bottom: -10px;
        left: -10px;
    }
}

@media (max-width: 400px) {
    .about-title {
        font-size: 1.4rem;
    }

    .about-desc {
        font-size: 0.85rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px 0;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .btn-about {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .about-image {
        aspect-ratio: 4/2.5;
        border-radius: 14px;
    }
}
/* ============================================================
   HERO SECTION - REUSABLE
   ============================================================ */

/* ---------- Base ---------- */
.hero-section {
    position: relative;
    padding: 100px 0 70px;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background: #0a1628;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background Image ---------- */
.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ---------- Overlay ---------- */
.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(16, 38, 72, 0.85) 0%,
        rgba(20, 57, 111, 0.75) 40%,
        rgba(30, 91, 156, 0.6) 70%,
        rgba(114, 154, 241, 0.4) 100%
    );
}

/* ---------- Shapes ---------- */
.hero-section .hero-shapes {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-section .hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: #FFFFFF;
}

.hero-section .hero-shapes .shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
    animation: floatShape 14s ease-in-out infinite;
}

.hero-section .hero-shapes .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 5%;
    opacity: 0.07;
    animation: floatShape 18s ease-in-out infinite reverse;
}

.hero-section .hero-shapes .shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 8%;
    opacity: 0.08;
    animation: floatShape 12s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-25px) scale(1.05); }
    66% { transform: translateY(15px) scale(0.95); }
}

/* ---------- Content ---------- */
.hero-section .container {
    position: relative;
    z-index: 3;
}

/* ---------- Badge ---------- */
.hero-section .hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.20);
    color: #F97316;
    font-weight: 700;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.8s ease forwards;
}

/* ---------- Heading ---------- */
.hero-section .hero-title {
    font-weight: 900;
    font-size: 3.6rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-section .hero-title span {
    color: #F97316;
    position: relative;
}

.hero-section .hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.5;
}

/* ---------- Description ---------- */
.hero-section .hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 28px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ---------- Line ---------- */
.hero-section .hero-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #2563EB, #F97316);
    border-radius: 2px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0 55px;
        min-height: auto;
    }
    .hero-section .hero-title {
        font-size: 2.8rem;
    }
    .hero-section .hero-desc {
        font-size: 1.05rem;
        padding: 0 20px;
    }
    .hero-section .hero-shapes .shape-1 {
        width: 180px;
        height: 180px;
    }
    .hero-section .hero-shapes .shape-2 {
        width: 100px;
        height: 100px;
    }
    .hero-section .hero-shapes .shape-3 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 70px 0 40px;
    }
    .hero-section .hero-title {
        font-size: 2.2rem;
    }
    .hero-section .hero-title span::after {
        height: 3px;
        bottom: 2px;
    }
    .hero-section .hero-desc {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .hero-section .hero-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
        margin-bottom: 14px;
    }
    .hero-section .hero-line {
        width: 45px;
        height: 3px;
    }
    .hero-section .hero-shapes .shape-1 {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -40px;
    }
    .hero-section .hero-shapes .shape-2 {
        width: 70px;
        height: 70px;
    }
    .hero-section .hero-shapes .shape-3 {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding: 60px 0 35px;
    }
    .hero-section .hero-title {
        font-size: 1.8rem;
    }
    .hero-section .hero-desc {
        font-size: 0.85rem;
    }
}
/* ============================================================
   LIGHT OVERLAY - Universal Fix
   ============================================================ */

.hero-section .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.70) 0%,
        rgba(10, 22, 40, 0.50) 35%,
        rgba(26, 58, 92, 0.30) 65%,
        rgba(37, 99, 235, 0.10) 85%,
        transparent 100%
    ) !important;
}
/* ============================================================
   FIX: Full Background Image - Desktop Only
   ============================================================ */

@media (min-width: 1200px) {
    .hero-section .hero-bg {
        background-size: cover !important;
        background-position: center !important;
    }
}
/* ============================================================
   ABOUT PAGE - OUR STORY SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.story-section {
    padding: 70px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.story-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Content ---------- */
.story-content {
    position: relative;
    z-index: 2;
}

/* ---------- Badge ---------- */
.story-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.10);
    color: #F97316;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ---------- Heading ---------- */
.story-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.story-title span {
    color: #2563EB;
    position: relative;
}

.story-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

/* ---------- Description ---------- */
.story-desc {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.story-desc:last-of-type {
    margin-bottom: 0;
}

/* ---------- Features ---------- */
.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #1F2937;
    font-weight: 500;
}

.feature-item i {
    color: #F97316;
    font-size: 1rem;
}

/* ---------- Image Wrapper ---------- */
.story-image-wrapper {
    position: relative;
    z-index: 2;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 41, 55, 0.10);
    aspect-ratio: 4/3;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

/* ---------- Decorative Shapes ---------- */
.story-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.story-shape.shape-1 {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.06);
    top: -20px;
    right: -20px;
}

.story-shape.shape-2 {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.08);
    bottom: -15px;
    left: -15px;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .story-section {
        padding: 50px 0;
    }

    .story-title {
        font-size: 2.2rem;
    }

    .story-content {
        text-align: center;
    }

    .story-features {
        justify-content: center;
    }

    .story-image {
        aspect-ratio: 4/2.8;
        max-width: 500px;
        margin: 0 auto;
    }

    .story-shape.shape-1 {
        width: 60px;
        height: 60px;
        top: -15px;
        right: -15px;
    }

    .story-shape.shape-2 {
        width: 40px;
        height: 40px;
        bottom: -10px;
        left: -10px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .story-section {
        padding: 40px 0;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .story-title span::after {
        height: 3px;
    }

    .story-desc {
        font-size: 0.9rem;
    }

    .story-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .story-image {
        aspect-ratio: 4/2.5;
        border-radius: 16px;
        max-width: 100%;
    }

    .story-shape.shape-1 {
        width: 50px;
        height: 50px;
        top: -10px;
        right: -10px;
    }

    .story-shape.shape-2 {
        width: 30px;
        height: 30px;
        bottom: -8px;
        left: -8px;
    }
}

@media (max-width: 400px) {
    .story-section {
        padding: 30px 0;
    }

    .story-title {
        font-size: 1.5rem;
    }

    .story-desc {
        font-size: 0.85rem;
    }

    .feature-item {
        font-size: 0.8rem;
    }
}
/* ============================================================
   MISSION & VALUES SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.mission-section {
    padding: 70px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* ---------- Header ---------- */
.mission-header {
    text-align: center;
    margin-bottom: 45px;
}

.mission-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 12px;
}

.mission-title {
    font-weight: 800;
    font-size: 2.4rem;
    color: #1F2937;
    letter-spacing: -0.02em;
}

.mission-title span {
    color: #2563EB;
    position: relative;
}

.mission-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

/* ---------- Mission & Vision Cards ---------- */
.mission-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 35px 30px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.05);
}

.mission-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 10px;
}

.mission-card p {
    color: #6B7280;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Values Section ---------- */
.values-section {
    margin-top: 45px;
}

.values-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #1F2937;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 14px;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

/* ---------- Value Cards ---------- */
.value-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 25px 20px 22px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.04);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.08);
    color: #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 12px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: #F97316;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
}

.value-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1F2937;
    margin-bottom: 6px;
}

.value-card p {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .mission-section {
        padding: 50px 0;
    }

    .mission-title {
        font-size: 2rem;
    }

    .mission-card {
        padding: 28px 22px 22px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .values-title {
        font-size: 1.2rem;
    }

    .value-card {
        padding: 20px 16px 18px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .mission-section {
        padding: 40px 0;
    }

    .mission-title {
        font-size: 1.8rem;
    }

    .mission-title span::after {
        height: 3px;
    }

    .mission-card {
        padding: 22px 18px 18px;
        border-radius: 16px;
    }

    .mission-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .mission-card h3 {
        font-size: 1.1rem;
    }

    .mission-card p {
        font-size: 0.88rem;
    }

    .values-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .values-title::after {
        width: 40px;
        height: 2px;
    }

    .value-card {
        padding: 18px 14px 16px;
        border-radius: 14px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .value-card h5 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.82rem;
    }
}

@media (max-width: 400px) {
    .mission-title {
        font-size: 1.5rem;
    }

    .mission-card {
        padding: 18px 14px 14px;
    }

    .mission-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .mission-card h3 {
        font-size: 1rem;
    }

    .mission-card p {
        font-size: 0.82rem;
    }

    .value-card {
        padding: 14px 12px 12px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .value-card h5 {
        font-size: 0.88rem;
    }

    .value-card p {
        font-size: 0.78rem;
    }
}
/* ============================================================
   WHY CUSTOMERS TRUST - UNIQUE CLASSES
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.why-trust-section {
    padding: 70px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.why-trust-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

.why-trust-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Header ---------- */
.why-trust-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.why-trust-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.08);
    color: #F97316;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-trust-title {
    font-weight: 800;
    font-size: 2.4rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.why-trust-title span {
    color: #2563EB;
    position: relative;
}

.why-trust-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

.why-trust-subtitle {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Trust Cards ---------- */
.why-trust-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 30px 24px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    position: relative;
    overflow: hidden;
}

/* Top Accent Bar */
.why-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563EB, #F97316);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-trust-card:hover::before {
    opacity: 1;
}

.why-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

/* ---------- Trust Icon ---------- */
.why-trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 14px;
    transition: all 0.4s ease;
}

.why-trust-card:hover .why-trust-icon {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

/* ---------- Card Content ---------- */
.why-trust-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 8px;
}

.why-trust-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .why-trust-section {
        padding: 50px 0;
    }

    .why-trust-title {
        font-size: 2rem;
    }

    .why-trust-card {
        padding: 24px 20px 22px;
    }

    .why-trust-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .why-trust-card h5 {
        font-size: 1.05rem;
    }

    .why-trust-card p {
        font-size: 0.88rem;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .why-trust-section {
        padding: 40px 0;
    }

    .why-trust-title {
        font-size: 1.8rem;
    }

    .why-trust-title span::after {
        height: 3px;
    }

    .why-trust-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .why-trust-card {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .why-trust-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .why-trust-card h5 {
        font-size: 1rem;
    }

    .why-trust-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .why-trust-card {
        padding: 16px 14px 14px;
    }

    .why-trust-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .why-trust-card h5 {
        font-size: 0.95rem;
    }

    .why-trust-card p {
        font-size: 0.8rem;
    }
}
/* ============================================================
   CONTACT PAGE - INTRO & CONTACT INFO SECTION
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.contact-info-section {
    padding: 70px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.contact-info-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Left Column: Intro ---------- */
.contact-intro {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-title {
    font-weight: 800;
    font-size: 2.4rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-title span {
    color: #2563EB;
    position: relative;
}

.contact-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

.contact-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.7;
    margin-bottom: 14px;
}

.contact-desc {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-footer-text {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #F5F7FA;
}

/* ---------- Contact Tags ---------- */
.contact-tags {
    margin: 14px 0 8px;
}

.contact-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F5F7FA;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #1F2937;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-tag:hover {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
    transform: translateX(4px);
}

.contact-tag i {
    color: #F97316;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ---------- Right Column: Contact Card ---------- */
.contact-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 32px 28px 28px;
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top Accent Bar */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563EB, #F97316);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

/* ---------- Card Header ---------- */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F5F7FA;
}

.contact-card-header i {
    font-size: 1.6rem;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
    padding: 10px;
    border-radius: 12px;
}

.contact-card-header h3 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1F2937;
    margin: 0;
}

/* ---------- Contact Details ---------- */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #F5F7FA;
    transition: all 0.3s ease;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details li:hover {
    padding-left: 4px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-details li:hover .contact-detail-icon {
    background: #2563EB;
    color: #FFFFFF;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
    font-weight: 600;
}

.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value a {
    color: #2563EB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value a:hover {
    color: #F97316;
}

.contact-detail-note {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 2px;
}

/* ---------- Card CTA ---------- */
.contact-card-cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #F5F7FA;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6B7280;
}

.contact-card-cta i {
    color: #F97316;
    font-size: 1rem;
}

.contact-card-cta a {
    color: #2563EB;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-cta a:hover {
    color: #F97316;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .contact-info-section {
        padding: 50px 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 24px 20px 20px;
    }

    .contact-details li {
        padding: 10px 0;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-title span::after {
        height: 3px;
    }

    .contact-lead {
        font-size: 1rem;
    }

    .contact-desc {
        font-size: 0.9rem;
    }

    .contact-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .contact-card {
        border-radius: 16px;
        padding: 20px 16px 16px;
    }

    .contact-card-header i {
        font-size: 1.3rem;
        padding: 8px;
    }

    .contact-card-header h3 {
        font-size: 1.05rem;
    }

    .contact-detail-value {
        font-size: 0.88rem;
    }

    .contact-detail-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .contact-details li {
        padding: 8px 0;
        gap: 10px;
    }

    .contact-card-cta {
        font-size: 0.8rem;
    }

    .contact-footer-text {
        font-size: 0.88rem;
    }
}

@media (max-width: 400px) {
    .contact-title {
        font-size: 1.5rem;
    }

    .contact-lead {
        font-size: 0.95rem;
    }

    .contact-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .contact-card {
        padding: 16px 12px 14px;
    }

    .contact-detail-value {
        font-size: 0.82rem;
    }
}
/* ============================================================
   CONTACT FORM SECTION - PROFESSIONAL STYLING
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.contact-form-section {
    padding: 70px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.contact-form-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Form Wrapper ---------- */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 45px 50px 40px;
    box-shadow: 0 4px 24px rgba(31, 41, 55, 0.06);
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

/* Top Accent Bar */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563EB, #F97316);
}

/* ---------- Form Header ---------- */
.contact-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-form-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-form-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.contact-form-title span {
    color: #2563EB;
    position: relative;
}

.contact-form-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

.contact-form-subtitle {
    color: #6B7280;
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Alert ---------- */
.contact-alert {
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    border: none;
    font-size: 0.9rem;
    display: none;
}

.contact-alert.show {
    display: block;
}

.contact-alert.success {
    background: #ECFDF5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.contact-alert.error {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

/* ---------- Form Groups ---------- */
.form-group {
    margin-bottom: 6px;
}

.form-group .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #1F2937;
    margin-bottom: 6px;
    display: block;
}

.form-group .required {
    color: #EF4444;
    font-weight: 700;
}

.form-group .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1F2937;
    background: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
}

.form-group .form-control::placeholder {
    color: #9CA3AF;
}

.form-group .form-control:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-group .form-control.is-invalid {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-group .form-control.is-valid {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

/* Select Styling */
.form-group select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select.form-control:focus {
    border-color: #2563EB;
}

/* Textarea */
.form-group textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Invalid Feedback */
.invalid-feedback {
    display: none;
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 4px;
}

.invalid-feedback.show {
    display: block;
}

/* ---------- Honeypot (Hidden) ---------- */
.honeypot-field {
    position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

/* ---------- Submit Button ---------- */
.btn-submit {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1D4ED8, #1A3A8A);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
    color: #FFFFFF;
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* ---------- Form Footer Note ---------- */
.form-footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: 14px;
    margin-bottom: 0;
}

.form-footer-note a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-footer-note a:hover {
    color: #F97316;
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 35px 30px 30px;
        border-radius: 20px;
    }

    .contact-form-title {
        font-size: 1.9rem;
    }

    .form-group .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 12px 32px;
        font-size: 1rem;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 28px 18px 24px;
        border-radius: 16px;
        margin: 0 5px;
    }

    .contact-form-title {
        font-size: 1.6rem;
    }

    .contact-form-title span::after {
        height: 3px;
    }

    .contact-form-subtitle {
        font-size: 0.88rem;
        padding: 0 10px;
    }

    .form-group .form-label {
        font-size: 0.82rem;
    }

    .form-group .form-control {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 0.92rem;
    }

    .form-footer-note {
        font-size: 0.78rem;
    }
}

@media (max-width: 400px) {
    .contact-form-wrapper {
        padding: 20px 12px 18px;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .form-group .form-control {
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
/* ============================================================
   WHY TRUST SECTION - ADDITIONAL STYLES FOR CONTACT PAGE
   ============================================================ */

/* ---------- Card with Text Only (No Heading) ---------- */
.why-trust-card .why-trust-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1F2937;
    margin: 0;
    line-height: 1.4;
}

/* ---------- Icon Color Variants ---------- */
.why-trust-card .why-trust-icon i.fa-thermometer-half {
    color: #EF4444;
}

.why-trust-card .why-trust-icon i.fa-fire {
    color: #F97316;
}

.why-trust-card .why-trust-icon i.fa-volume-up {
    color: #2563EB;
}

.why-trust-card .why-trust-icon i.fa-wind {
    color: #06B6D4;
}

.why-trust-card .why-trust-icon i.fa-microchip {
    color: #22C55E;
}

.why-trust-card .why-trust-icon i.fa-dollar-sign {
    color: #EF4444;
}

/* ---------- Footer ---------- */
.why-trust-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #F5F7FA;
}

.why-trust-footer p {
    color: #6B7280;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .why-trust-card .why-trust-text {
        font-size: 0.88rem;
    }

    .why-trust-footer p {
        font-size: 0.88rem;
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .why-trust-card .why-trust-text {
        font-size: 0.82rem;
    }

    .why-trust-footer p {
        font-size: 0.82rem;
    }
}
/* ---------- FAQ Group Title ---------- */
.faq-group-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1F2937;
    margin: 30px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F5F7FA;
    position: relative;
}

.faq-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #F97316;
    border-radius: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .faq-group-title {
        font-size: 1.1rem;
        margin: 20px 0 14px;
        padding-bottom: 8px;
    }
}

@media (max-width: 400px) {
    .faq-group-title {
        font-size: 1rem;
        margin: 16px 0 12px;
    }
}
/* ============================================================
   SERVICE DETAIL PAGE - PROFESSIONAL STYLING
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.service-detail-section {
    padding: 60px 0 70px;
    background: #FFFFFF;
    position: relative;
}

/* ---------- Service Image ---------- */
.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(31, 41, 55, 0.08);
    transition: all 0.4s ease;
    background: #F5F7FA;
}

.service-detail-image:hover {
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.10);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.02);
}

/* ---------- Content ---------- */
.service-detail-content {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.9;
}

.service-detail-content p {
    margin-bottom: 16px;
}

.service-detail-content h2,
.service-detail-content h3 {
    font-weight: 700;
    color: #1F2937;
    margin: 28px 0 14px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: 700;
}

/* ---------- Headings ---------- */
.service-detail-heading {
    font-weight: 800;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F5F7FA;
    position: relative;
}

.service-detail-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

.service-detail-heading span {
    color: #2563EB;
}

/* ---------- Common Problems ---------- */
.service-detail-problems {
    margin-top: 40px;
}

.service-detail-problems-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-detail-problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F5F7FA;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1F2937;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-detail-problems-list li:hover {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
    transform: translateX(4px);
}

.service-detail-problems-list li i {
    color: #F97316;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---------- Process Steps ---------- */
.service-detail-process {
    margin-top: 40px;
}

.service-detail-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.service-detail-step {
    background: #F5F7FA;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-detail-step:hover {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
    transform: translateY(-4px);
}

.service-detail-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 10px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.20);
    transition: all 0.3s ease;
}

.service-detail-step:hover .step-number {
    background: linear-gradient(135deg, #F97316, #EA580C);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.service-detail-step p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    line-height: 1.4;
}

/* ---------- Areas Served ---------- */
.service-detail-areas {
    margin-top: 40px;
}

.service-detail-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.service-detail-areas-tags .area-tag {
    background: #F5F7FA;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #1F2937;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-detail-areas-tags .area-tag:hover {
    background: #FFFFFF;
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.service-detail-sidebar {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 28px 24px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    transition: all 0.3s ease;
}

.service-detail-sidebar:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.06);
    border-color: #2563EB;
}

/* ---------- Contact Sidebar ---------- */
.contact-sidebar {
    background: linear-gradient(135deg, #0a1628, #1a3a5c);
    border: none;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(249, 115, 22, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-sidebar::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-sidebar:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
}

.contact-sidebar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.contact-sidebar:hover .contact-sidebar-icon {
    background: rgba(249, 115, 22, 0.20);
    transform: scale(1.05);
}

.contact-sidebar h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.contact-sidebar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.contact-sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F97316;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.30);
    width: 100%;
    justify-content: center;
}

.contact-sidebar-btn:hover {
    background: #EA580C;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.40);
    color: #FFFFFF;
}

.contact-sidebar-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 16px 0 12px;
}

.contact-sidebar-email {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.contact-sidebar-email i {
    color: #F97316;
    margin-right: 8px;
}

/* ---------- FAQ Sidebar ---------- */
.faq-sidebar h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 16px;
}

.faq-sidebar h4 i {
    color: #2563EB;
    margin-right: 10px;
}

.faq-sidebar-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-sidebar-item {
    border: 1px solid #F5F7FA;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-sidebar-item:hover {
    border-color: #2563EB;
}

.faq-sidebar-btn {
    width: 100%;
    background: #FFFFFF;
    border: none;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1F2937;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-sidebar-btn .faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #F5F7FA;
    color: #6B7280;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-sidebar-btn:hover {
    color: #2563EB;
}

.faq-sidebar-btn.active {
    color: #2563EB;
}

.faq-sidebar-btn.active .faq-icon {
    background: #2563EB;
    color: #FFFFFF;
    transform: rotate(45deg);
}

.faq-sidebar-content {
    display: none;
    padding: 0 16px 16px 48px;
    font-size: 0.82rem;
    color: #6B7280;
    line-height: 1.7;
    background: #FFFFFF;
}

.faq-sidebar-content.show {
    display: block;
    animation: fadeSlideDown 0.3s ease forwards;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .service-detail-section {
        padding: 50px 0;
    }

    .service-detail-heading {
        font-size: 1.3rem;
    }

    .service-detail-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-problems-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .service-detail-section {
        padding: 40px 0;
    }

    .service-detail-image {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .service-detail-heading {
        font-size: 1.2rem;
    }

    .service-detail-heading::after {
        width: 40px;
        height: 2px;
    }

    .service-detail-problems-list li {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .service-detail-process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-detail-step {
        padding: 16px 12px;
    }

    .service-detail-step .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .service-detail-step p {
        font-size: 0.8rem;
    }

    .service-detail-areas-tags .area-tag {
        font-size: 0.78rem;
        padding: 4px 14px;
    }

    .service-detail-sidebar {
        padding: 22px 18px 18px;
        border-radius: 16px;
    }

    .contact-sidebar-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .faq-sidebar-btn {
        font-size: 0.82rem;
        padding: 10px 14px;
    }

    .faq-sidebar-content {
        font-size: 0.8rem;
        padding: 0 14px 14px 40px;
    }
}

@media (max-width: 400px) {
    .service-detail-process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-heading {
        font-size: 1.1rem;
    }

    .service-detail-content {
        font-size: 0.9rem;
    }

    .faq-sidebar-btn {
        font-size: 0.78rem;
    }

    .faq-sidebar-content {
        font-size: 0.78rem;
        padding: 0 12px 12px 34px;
    }

    .contact-sidebar-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .contact-sidebar h4 {
        font-size: 1rem;
    }

    .contact-sidebar-btn {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
}
/* ============================================================
   FAQ SIDEBAR - FIX ANSWER NOT SHOWING
   ============================================================ */

/* Ensure content is hidden by default */
.faq-sidebar-content {
    display: none !important;
}

/* Show content when button has .active class */
.faq-sidebar-btn.active + .faq-sidebar-content {
    display: block !important;
}

/* Also show when parent item has .active (if using parent class) */
.faq-sidebar-item.active .faq-sidebar-content {
    display: block !important;
}

/* Ensure smooth transition */
.faq-sidebar-content.show {
    display: block !important;
}

/* ============================================================
   SERVICES LISTING PAGE - PROFESSIONAL STYLING
   ============================================================ */

/* ---------- Services Overview ---------- */
.services-overview-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.services-overview-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.services-overview-content h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.services-overview-content h2 span {
    color: #2563EB;
    position: relative;
}

.services-overview-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

.services-overview-content p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.services-overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #F5F7FA;
}

.services-overview-stats .stat-item {
    text-align: center;
}

.services-overview-stats .stat-number {
    display: block;
    font-weight: 800;
    font-size: 1.8rem;
    color: #2563EB;
    line-height: 1.2;
}

.services-overview-stats .stat-item:nth-child(2) .stat-number {
    color: #F97316;
}

.services-overview-stats .stat-item:nth-child(3) .stat-number {
    color: #22C55E;
}

.services-overview-stats .stat-item:nth-child(4) .stat-number {
    color: #8B5CF6;
}

.services-overview-stats .stat-label {
    display: block;
    font-size: 0.78rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 2px;
}

/* ---------- Services Grid ---------- */
.services-grid-section {
    padding: 60px 0;
    background: #F5F7FA;
}

.services-grid-header {
    text-align: center;
    margin-bottom: 45px;
}

.services-grid-header .grid-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-grid-header h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1F2937;
    letter-spacing: -0.02em;
}

.services-grid-header h2 span {
    color: #2563EB;
}

.services-grid-header p {
    color: #6B7280;
    font-size: 1rem;
    max-width: 550px;
    margin: 6px auto 0;
}

/* ---------- Service Grid Card ---------- */
.service-grid-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
}

.service-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

.service-grid-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #F5F7FA;
}

.service-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-grid-card:hover .service-grid-image img {
    transform: scale(1.05);
}

.service-grid-body {
    padding: 24px 22px 26px;
    text-align: center;
}

.service-grid-body h3 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1F2937;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.service-grid-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

.service-grid-body p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 12px 0 18px;
}

.service-grid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #2563EB;
    color: #2563EB;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-grid-btn i {
    color: #F97316;
    transition: transform 0.3s ease;
}

.service-grid-btn:hover {
    background: #2563EB;
    color: #FFFFFF;
    transform: translateX(4px);
}

.service-grid-btn:hover i {
    transform: translateX(4px);
    color: #FFFFFF;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .services-overview-section {
        padding: 45px 0;
    }

    .services-overview-content h2 {
        font-size: 1.9rem;
    }

    .services-overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-grid-section {
        padding: 45px 0;
    }

    .services-grid-header h2 {
        font-size: 1.9rem;
    }

    .service-grid-image {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .services-overview-section {
        padding: 35px 0;
    }

    .services-overview-content h2 {
        font-size: 1.6rem;
    }

    .services-overview-content p {
        font-size: 0.92rem;
        padding: 0 10px;
    }

    .services-overview-stats .stat-number {
        font-size: 1.4rem;
    }

    .services-overview-stats .stat-label {
        font-size: 0.7rem;
    }

    .services-grid-section {
        padding: 35px 0;
    }

    .services-grid-header h2 {
        font-size: 1.6rem;
    }

    .services-grid-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .service-grid-card {
        border-radius: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-grid-image {
        height: 160px;
    }

    .service-grid-body {
        padding: 18px 16px 20px;
    }

    .service-grid-body h3 {
        font-size: 1rem;
    }

    .service-grid-body p {
        font-size: 0.85rem;
    }

    .service-grid-btn {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
}

@media (max-width: 400px) {
    .services-overview-content h2 {
        font-size: 1.3rem;
    }

    .services-overview-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .services-overview-stats .stat-number {
        font-size: 1.2rem;
    }

    .service-grid-image {
        height: 140px;
    }

    .service-grid-body {
        padding: 14px 12px 16px;
    }

    .service-grid-body h3 {
        font-size: 0.95rem;
    }

    .service-grid-body p {
        font-size: 0.8rem;
    }

    .service-grid-btn {
        font-size: 0.75rem;
        padding: 5px 14px;
    }
}

/* ============================================================
   LOCATION DETAIL PAGE - PROFESSIONAL STYLING
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.location-detail-section {
    padding: 60px 0 70px;
    background: #FFFFFF;
    position: relative;
}

/* ---------- Location Image ---------- */
.location-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(31, 41, 55, 0.08);
    transition: all 0.4s ease;
    background: #F5F7FA;
}

.location-detail-image:hover {
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.10);
}

.location-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.location-detail-image:hover img {
    transform: scale(1.02);
}

/* ---------- Content ---------- */
.location-detail-content {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.9;
}

.location-detail-content p {
    margin-bottom: 16px;
}

.location-detail-content h2,
.location-detail-content h3 {
    font-weight: 700;
    color: #1F2937;
    margin: 28px 0 14px;
}

/* ---------- Headings ---------- */
.location-detail-heading {
    font-weight: 800;
    font-size: 1.4rem;
    color: #1F2937;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F5F7FA;
    position: relative;
}

.location-detail-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
}

.location-detail-heading span {
    color: #2563EB;
}

/* ---------- Tags ---------- */
.location-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.location-tag {
    background: #F5F7FA;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #1F2937;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.location-tag:hover {
    background: #FFFFFF;
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

.location-tag.nearby {
    background: #FFFFFF;
    border-color: #2563EB;
    color: #2563EB;
}

.location-tag.nearby:hover {
    background: #2563EB;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

/* ---------- Neighborhoods / Nearby ---------- */
.location-detail-neighborhoods,
.location-detail-nearby {
    margin-top: 30px;
}

/* ---------- FAQs ---------- */
.location-detail-faqs {
    margin-top: 40px;
}

.location-detail-faqs .accordion-item {
    border: 1px solid #E5E7EB !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    background: #FFFFFF !important;
    transition: all 0.3s ease;
}

.location-detail-faqs .accordion-item:hover {
    border-color: #2563EB !important;
}

.location-detail-faqs .accordion-button {
    background: #FFFFFF !important;
    color: #1F2937 !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.location-detail-faqs .accordion-button:not(.collapsed) {
    background: #F5F7FA !important;
    color: #2563EB !important;
}

.location-detail-faqs .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-size: 12px !important;
    width: 22px !important;
    height: 22px !important;
    background-position: center !important;
}

.location-detail-faqs .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 6h10' stroke='%232563EB' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

.location-detail-faqs .accordion-body {
    padding: 12px 20px 20px !important;
    font-size: 0.88rem !important;
    color: #6B7280 !important;
    line-height: 1.7 !important;
    background: #FFFFFF !important;
}

/* ---------- Sidebar ---------- */
.location-sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 28px 24px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.location-sidebar-card:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.06);
    border-color: #2563EB;
}

/* ---------- Contact Card ---------- */
.location-sidebar-card.contact-card {
    background: linear-gradient(135deg, #0a1628, #1a3a5c);
    border: none;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(249, 115, 22, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(37, 99, 235, 0.15);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: rgba(249, 115, 22, 0.20);
    transform: scale(1.05);
}

.contact-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F97316;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.30);
    width: 100%;
    justify-content: center;
}

.contact-card-btn:hover {
    background: #EA580C;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.40);
    color: #FFFFFF;
}

.contact-card-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 16px 0 12px;
}

.contact-card-email {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.contact-card-email i {
    color: #F97316;
    margin-right: 8px;
}

.contact-card-hours {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 6px 0 0;
}

.contact-card-hours i {
    color: #2563EB;
    margin-right: 8px;
}

/* ---------- License Card ---------- */
.license-card {
    background: #F5F7FA;
    border-color: #E5E7EB;
}

.license-card:hover {
    background: #FFFFFF;
}

.license-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 14px;
}

.license-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 6px;
}

.license-card p {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.license-badge {
    display: inline-block;
    background: #2563EB;
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .location-detail-section {
        padding: 50px 0;
    }

    .location-detail-heading {
        font-size: 1.2rem;
    }

    .location-sidebar-card {
        padding: 22px 18px 18px;
    }
}

@media (max-width: 767.98px) {
    .location-detail-section {
        padding: 40px 0;
    }

    .location-detail-image {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .location-detail-heading {
        font-size: 1.1rem;
    }

    .location-detail-heading::after {
        width: 40px;
        height: 2px;
    }

    .location-detail-content {
        font-size: 0.92rem;
    }

    .location-tag {
        font-size: 0.78rem;
        padding: 4px 14px;
    }

    .location-detail-faqs .accordion-button {
        font-size: 0.82rem !important;
        padding: 12px 16px !important;
    }

    .location-detail-faqs .accordion-body {
        font-size: 0.8rem !important;
        padding: 10px 16px 16px !important;
    }

    .contact-card-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .license-badge {
        font-size: 0.78rem;
        padding: 4px 16px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .contact-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .location-detail-section {
        padding: 30px 0;
    }

    .location-detail-heading {
        font-size: 1rem;
    }

    .location-tag {
        font-size: 0.72rem;
        padding: 3px 12px;
    }

    .location-detail-faqs .accordion-button {
        font-size: 0.78rem !important;
        padding: 10px 12px !important;
    }

    .location-detail-faqs .accordion-body {
        font-size: 0.75rem !important;
        padding: 8px 12px 14px !important;
    }

    .contact-card-btn {
        font-size: 0.82rem;
        padding: 8px 16px;
    }

    .license-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}
/* ============================================================
   LOCATIONS GRID - WITH IMAGES
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Section Base ---------- */
.locations-grid-section {
    padding: 70px 0;
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.locations-grid-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

.locations-grid-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

/* ---------- Header ---------- */
.locations-grid-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.locations-grid-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 10px;
}

.locations-grid-header h2 {
    font-weight: 800;
    font-size: 2.4rem;
    color: #1F2937;
    letter-spacing: -0.02em;
}

.locations-grid-header h2 span {
    color: #2563EB;
    position: relative;
}

.locations-grid-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

.locations-grid-header p {
    color: #6B7280;
    font-size: 1rem;
    max-width: 550px;
    margin: 6px auto 0;
    line-height: 1.6;
}

/* ---------- Location Card ---------- */
.location-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

/* ---------- Card Image ---------- */
.location-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #F5F7FA;
    position: relative;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .location-card-image img {
    transform: scale(1.06);
}

/* ---------- Card Body ---------- */
.location-card-body {
    padding: 20px 18px 22px;
    text-align: center;
}

.location-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 6px;
    position: relative;
    padding-bottom: 10px;
}

.location-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2.5px;
    background: #F97316;
    border-radius: 2px;
}

.location-excerpt {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 10px 0 14px;
}

/* ---------- Button ---------- */
.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #2563EB;
    color: #2563EB;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-btn i {
    color: #F97316;
    transition: transform 0.3s ease;
}

.location-btn:hover {
    background: #2563EB;
    color: #FFFFFF;
    transform: translateX(4px);
}

.location-btn:hover i {
    transform: translateX(4px);
    color: #FFFFFF;
}

/* ---------- Callout Box ---------- */
.locations-callout {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 35px;
    margin-top: 40px;
    border: 1px solid #E5E7EB;
    text-align: center;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
    transition: all 0.3s ease;
}

.locations-callout:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

.locations-callout p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.locations-callout p:first-child {
    margin-bottom: 8px;
}

.locations-callout strong {
    color: #1F2937;
}

.locations-callout .callout-phone {
    color: #2563EB;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.locations-callout .callout-phone:hover {
    color: #F97316;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991.98px) {
    .locations-grid-section {
        padding: 50px 0;
    }

    .locations-grid-header h2 {
        font-size: 2rem;
    }

    .location-card-image {
        height: 160px;
    }

    .location-card-body {
        padding: 18px 16px 18px;
    }

    .locations-callout {
        padding: 24px 20px;
        margin-top: 30px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
    .locations-grid-section {
        padding: 40px 0;
    }

    .locations-grid-header h2 {
        font-size: 1.8rem;
    }

    .locations-grid-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .location-card {
        border-radius: 16px;
        max-width: 380px;
        margin: 0 auto;
    }

    .location-card-image {
        height: 160px;
    }

    .location-card-body {
        padding: 16px 14px 16px;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-excerpt {
        font-size: 0.82rem;
    }

    .location-btn {
        font-size: 0.78rem;
        padding: 5px 16px;
    }

    .locations-callout {
        padding: 18px 16px;
        border-radius: 16px;
        margin-top: 25px;
    }

    .locations-callout p {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .location-card-image {
        height: 140px;
    }

    .location-card-body {
        padding: 14px 12px 14px;
    }

    .location-name {
        font-size: 0.95rem;
    }

    .location-excerpt {
        font-size: 0.78rem;
    }

    .location-btn {
        font-size: 0.72rem;
        padding: 4px 14px;
    }

    .locations-callout p {
        font-size: 0.8rem;
    }
}
/* ============================================================
   GALLERY PAGE - PROFESSIONAL STYLING
   ============================================================ */

.gallery-grid-section {
    padding: 60px 0;
    background: #F5F7FA;
}

/* ---------- Header ---------- */
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-header h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1F2937;
}

.gallery-header h2 span {
    color: #2563EB;
}

.gallery-header p {
    color: #6B7280;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 4px auto 0;
}

/* ---------- Gallery Card ---------- */
.gallery-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

/* ---------- Card Image ---------- */
.gallery-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #F5F7FA;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

/* ---------- Overlay ---------- */
.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-view-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    color: #2563EB;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-view-btn:hover {
    background: #2563EB;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* ---------- Card Body ---------- */
.gallery-card-body {
    padding: 18px 18px 20px;
}

.gallery-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1F2937;
    margin-bottom: 4px;
}

.gallery-card-desc {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.gallery-card-date {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.gallery-card-date i {
    color: #F97316;
    margin-right: 4px;
}

/* ---------- Footer ---------- */
.gallery-footer {
    text-align: center;
    margin-top: 30px;
    color: #6B7280;
    font-size: 0.9rem;
}

/* ---------- Empty State ---------- */
.gallery-empty {
    text-align: center;
    padding: 60px 20px;
}

.gallery-empty i {
    font-size: 4rem;
    color: #2563EB;
    opacity: 0.3;
    margin-bottom: 16px;
}

.gallery-empty h3 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 8px;
}

.gallery-empty p {
    color: #6B7280;
}

.gallery-empty a {
    color: #2563EB;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767.98px) {
    .gallery-grid-section {
        padding: 40px 0;
    }

    .gallery-header h2 {
        font-size: 1.8rem;
    }

    .gallery-card-image {
        height: 180px;
    }

    .gallery-card-body {
        padding: 14px 14px 16px;
    }

    .gallery-card-title {
        font-size: 0.95rem;
    }

    .gallery-card-desc {
        font-size: 0.8rem;
    }
}
/* ============================================================
   BLOG LISTING - PROFESSIONAL STYLING
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

.blog-listing-section {
    padding: 60px 0;
    background: #F5F7FA;
}

/* ---------- Header ---------- */
.blog-listing-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-listing-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-listing-header h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1F2937;
}

.blog-listing-header h2 span {
    color: #2563EB;
    position: relative;
}

.blog-listing-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
    opacity: 0.4;
}

.blog-listing-header p {
    color: #6B7280;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 4px auto 0;
}

/* ---------- Blog Card ---------- */
.blog-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

/* ---------- Card Image ---------- */
.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F5F7FA;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F7FA;
    color: #9CA3AF;
    font-size: 3rem;
}

/* ---------- Categories Badge ---------- */
.blog-card-categories {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-category {
    background: rgba(37, 99, 235, 0.90);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

/* ---------- Card Body ---------- */
.blog-card-body {
    padding: 20px 18px 18px;
}

.blog-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #2563EB;
}

.blog-card-excerpt {
    color: #6B7280;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ---------- Card Footer ---------- */
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #F5F7FA;
}

.blog-card-date {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.blog-card-date i {
    color: #F97316;
    margin-right: 4px;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563EB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-btn i {
    color: #F97316;
    transition: transform 0.3s ease;
}

.blog-card-btn:hover {
    color: #F97316;
}

.blog-card-btn:hover i {
    transform: translateX(4px);
}

/* ---------- Footer ---------- */
.blog-listing-footer {
    text-align: center;
    margin-top: 30px;
    color: #6B7280;
    font-size: 0.9rem;
}

/* ---------- Empty State ---------- */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
}

.blog-empty i {
    font-size: 4rem;
    color: #2563EB;
    opacity: 0.3;
    margin-bottom: 16px;
}

.blog-empty h3 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 8px;
}

.blog-empty p {
    color: #6B7280;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .blog-listing-section {
        padding: 50px 0;
    }

    .blog-listing-header h2 {
        font-size: 1.9rem;
    }

    .blog-card-image {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .blog-listing-section {
        padding: 40px 0;
    }

    .blog-listing-header h2 {
        font-size: 1.7rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-body {
        padding: 16px 14px 16px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-excerpt {
        font-size: 0.82rem;
    }

    .blog-card-btn {
        font-size: 0.75rem;
    }

    .blog-card-date {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .blog-card-image {
        height: 160px;
    }

    .blog-card-body {
        padding: 14px 12px 14px;
    }

    .blog-card-title {
        font-size: 0.95rem;
    }
}
/* ============================================================
   BLOG SINGLE PAGE - PROFESSIONAL STYLING
   COLOR SCHEME: #2563EB (Blue) | #F97316 (Orange) | #F5F7FA (Light Gray)
   ============================================================ */

/* ---------- Hero Categories ---------- */
.blog-single-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.blog-single-category {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.20);
}

/* ---------- Hero Meta ---------- */
.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.blog-single-meta span i {
    color: #F97316;
    margin-right: 6px;
}

/* ---------- Content Section ---------- */
.blog-single-section {
    padding: 60px 0 70px;
    background: #FFFFFF;
}

/* ---------- Featured Image ---------- */
.blog-single-featured-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(31, 41, 55, 0.08);
    background: #F5F7FA;
}

.blog-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.blog-single-featured-image:hover img {
    transform: scale(1.02);
}

/* ---------- Content ---------- */
.blog-single-content {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-single-content p {
    margin-bottom: 18px;
}

.blog-single-content h2,
.blog-single-content h3 {
    font-weight: 700;
    color: #1F2937;
    margin: 30px 0 14px;
}

.blog-single-content h3 {
    font-size: 1.4rem;
}

.blog-single-content h2 {
    font-size: 1.7rem;
}

.blog-single-content ul,
.blog-single-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.blog-single-content ul li,
.blog-single-content ol li {
    margin-bottom: 6px;
}

.blog-single-content a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-single-content a:hover {
    color: #F97316;
    text-decoration: underline;
}

/* ---------- Footer (Share & Tags) ---------- */
.blog-single-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #F5F7FA;
    border-bottom: 1px solid #F5F7FA;
    margin-top: 30px;
}

.share-label,
.tag-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1F2937;
    margin-right: 10px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #FFFFFF;
}

.share-btn.facebook {
    background: #1877F2;
}
.share-btn.twitter {
    background: #000000;
}
.share-btn.linkedin {
    background: #0A66C2;
}
.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    opacity: 0.85;
}

.blog-single-tags {
    display: flex;
    align-items: center;
}

.blog-tag {
    background: #F5F7FA;
    color: #2563EB;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ---------- Navigation ---------- */
.blog-single-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0 10px;
}

.blog-single-navigation .nav-item {
    flex: 1;
}

.blog-single-navigation .nav-item.next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.nav-label i {
    color: #F97316;
}

.nav-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-title:hover {
    color: #2563EB;
}

/* ---------- Sidebar ---------- */
.blog-sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px 20px 22px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(31, 41, 55, 0.04);
}

.blog-sidebar-card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: #1F2937;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F5F7FA;
}

.blog-sidebar-card h4 i {
    color: #2563EB;
    margin-right: 8px;
}

/* ---------- Recent Posts ---------- */
.blog-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-recent-posts li {
    padding: 8px 0;
    border-bottom: 1px solid #F5F7FA;
}

.blog-recent-posts li:last-child {
    border-bottom: none;
}

.blog-recent-posts li a {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.blog-recent-posts li a:hover {
    color: #2563EB;
}

.blog-recent-posts li span {
    display: block;
    font-size: 0.7rem;
    color: #9CA3AF;
    margin-top: 2px;
}

/* ---------- Sidebar Categories ---------- */
.blog-sidebar-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-category {
    background: #F5F7FA;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #1F2937;
    font-weight: 500;
}

.sidebar-category .count {
    color: #6B7280;
    font-weight: 400;
}

/* ---------- Contact Card ---------- */
.blog-sidebar-card.contact-card {
    background: linear-gradient(135deg, #0a1628, #1a3a5c);
    border: none;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-card .contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.contact-card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 4px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.contact-card .contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F97316;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.30);
    width: 100%;
    justify-content: center;
}

.contact-card .contact-card-btn:hover {
    background: #EA580C;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.40);
    color: #FFFFFF;
}

.contact-card .contact-card-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 14px 0 10px;
}

.contact-card .contact-card-email {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.contact-card .contact-card-email i {
    color: #F97316;
    margin-right: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .blog-single-section {
        padding: 50px 0;
    }

    .blog-single-content {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .blog-single-section {
        padding: 40px 0;
    }

    .blog-single-meta {
        gap: 12px;
        font-size: 0.78rem;
    }

    .blog-single-featured-image {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .blog-single-content {
        font-size: 0.95rem;
    }

    .blog-single-content h3 {
        font-size: 1.2rem;
    }

    .blog-single-content h2 {
        font-size: 1.4rem;
    }

    .blog-single-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .blog-single-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .blog-single-navigation .nav-item.next {
        text-align: left;
    }

    .blog-single-navigation .nav-item {
        flex: none;
    }

    .blog-sidebar-card {
        padding: 18px 16px 16px;
        border-radius: 14px;
    }
}

@media (max-width: 400px) {
    .blog-single-content {
        font-size: 0.9rem;
    }

    .blog-single-content h3 {
        font-size: 1.1rem;
    }

    .blog-single-content h2 {
        font-size: 1.2rem;
    }

    .share-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}