/* ============================================
   HEADER - ULTIMATE PROFESSIONAL NAVBAR
   ============================================ */

/* --- Navbar Base --- */
.navbar {
    background: rgba(7, 7, 7, 0.92) !important;
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    padding: 14px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(7, 7, 7, 0.98) !important;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.7);
    padding: 8px 0;
    border-bottom-color: rgba(185, 240, 0, 0.15);
}

/* --- Logo --- */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 2rem;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1) drop-shadow(0 2px 8px rgba(185, 240, 0, 0.08));
}

.navbar-brand:hover .logo-img {
    filter: brightness(1.08) drop-shadow(0 4px 20px rgba(185, 240, 0, 0.25));
    transform: scale(1.03);
}

/* --- Nav Links --- */
.navbar-nav .nav-link {
    color: #C0C0C0 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.02em;
}

/* --- Underline Animation --- */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(185, 240, 0, 0.3);
}

.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: #B9F000 !important;
    background: rgba(185, 240, 0, 0.06);
}

/* --- Dropdown Toggle Arrow --- */
.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 6px;
    vertical-align: middle;
    color: #B9F000;
    border-top-color: #B9F000;
}

.navbar .dropdown.show .dropdown-toggle::after,
.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ============================================
   DESKTOP DROPDOWN HOVER (min-width: 992px)
   ============================================ */
@media (min-width: 992px) {

    /* --- Hover to open dropdown --- */
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
        transition-delay: 0.1s;
    }

    /* --- Hidden state with animation --- */
    .navbar .dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        margin-top: 6px;
        min-width: 240px;
        border-radius: 16px !important;
        background: rgba(24, 24, 24, 0.98) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(42, 42, 42, 0.8) !important;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
        padding: 10px;
    }

    /* --- Top arrow on dropdown (optional) --- */
    .navbar .dropdown .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 30px;
        width: 14px;
        height: 14px;
        background: rgba(24, 24, 24, 0.98);
        border-top: 1px solid rgba(42, 42, 42, 0.8);
        border-left: 1px solid rgba(42, 42, 42, 0.8);
        transform: rotate(45deg);
        border-radius: 4px 0 0 0;
        display: none;
    }

    .navbar .dropdown:hover .dropdown-menu::before {
        display: block;
    }

    /* --- Dropdown Items --- */
    .navbar .dropdown-menu .dropdown-item {
        padding: 10px 16px;
        border-radius: 10px;
        transition: all 0.25s ease;
        color: #C0C0C0 !important;
        font-weight: 500;
        font-size: 0.92rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* --- Left lime dot indicator --- */
    .navbar .dropdown-menu .dropdown-item::before {
        content: '';
        width: 5px;
        height: 5px;
        background: #B9F000;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s ease;
        flex-shrink: 0;
        box-shadow: 0 0 10px rgba(185, 240, 0, 0.3);
    }

    .navbar .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background: rgba(185, 240, 0, 0.08) !important;
        color: #B9F000 !important;
        transform: translateX(6px);
    }

    /* --- Dropdown Divider --- */
    .navbar .dropdown-menu .dropdown-divider {
        border-color: rgba(42, 42, 42, 0.5) !important;
        margin: 6px 0;
    }
}

/* ============================================
   MOBILE DROPDOWN (max-width: 991.98px)
   ============================================ */
@media (max-width: 991.98px) {

    /* --- Mobile Menu Container --- */
    .navbar-collapse {
        background: rgba(7, 7, 7, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 20px 16px;
        border-radius: 18px;
        margin-top: 12px;
        border: 1px solid rgba(42, 42, 42, 0.6);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    /* --- Nav Links Mobile --- */
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        font-size: 1.05rem;
        border-radius: 12px;
        border-bottom: 1px solid rgba(42, 42, 42, 0.2);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(185, 240, 0, 0.06) !important;
    }

    /* --- Dropdowns Mobile (Bootstrap .show class) --- */
    .navbar .dropdown-menu {
        background: rgba(24, 24, 24, 0.95) !important;
        border: none !important;
        border-radius: 14px !important;
        padding: 8px;
        margin: 4px 0 8px 0;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 10px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
        color: #C0C0C0 !important;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background: rgba(185, 240, 0, 0.08) !important;
        color: #B9F000 !important;
    }

    .navbar .dropdown-menu .dropdown-divider {
        border-color: rgba(42, 42, 42, 0.3) !important;
    }

    /* --- Dropdown toggle arrow on mobile --- */
    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    /* --- Call Button Mobile --- */
    .navbar-nav .nav-link.btn-outline-light {
        margin-top: 10px;
        text-align: center;
        border-width: 2px !important;
        border-radius: 50px !important;
        background: transparent !important;
        border-color: rgba(185, 240, 0, 0.4) !important;
        color: #B9F000 !important;
        font-weight: 600;
        padding: 12px 20px !important;
    }

    .navbar-nav .nav-link.btn-outline-light:hover {
        background: #B9F000 !important;
        color: #070707 !important;
        border-color: #B9F000 !important;
    }

    .logo-img {
        height: 36px;
    }
}

/* ============================================
   EXTRA SMALL PHONES (≤ 370px)
   ============================================ */
@media (max-width: 370px) {
    .navbar {
        padding: 8px 0;
    }

    .logo-img {
        height: 30px;
    }

    .navbar-toggler {
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }

    .navbar-collapse {
        padding: 14px 12px;
        margin-top: 8px;
    }

    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 0.95rem;
    }

    .navbar-nav .nav-link.btn-outline-light {
        padding: 10px 16px !important;
        font-size: 0.9rem;
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 8px 12px;
        font-size: 0.88rem;
    }
}

/* ============================================
   NAVBAR TOGGLER (Hamburger)
   ============================================ */
.navbar-toggler {
    border: 1.5px solid rgba(185, 240, 0, 0.3) !important;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #B9F000 !important;
    background: rgba(185, 240, 0, 0.06);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 30 30'%3E%3Cpath stroke='%23B9F000' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    width: 28px;
    height: 28px;
}

/* ============================================
   SCROLL EFFECT (Requires JS - see below)
   ============================================ */
.navbar.scrolled .logo-img {
    height: 34px;
}

.navbar.scrolled .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 16px !important;
}

.navbar.scrolled .navbar-nav .nav-link.btn-outline-light {
    padding: 6px 18px !important;
    font-size: 0.85rem;
}
/* ============================================
   FOOTER - ULTIMATE PROFESSIONAL
   ============================================ */

footer {
    background: #050805 !important;
    border-top: 2px solid rgba(42, 42, 42, 0.3);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

/* --- Glow at Top --- */
footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B9F000, #D5FF33, transparent);
    opacity: 0.4;
}

/* --- Footer Brand --- */
.footer-brand {
    margin-bottom: 10px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(1) drop-shadow(0 2px 10px rgba(185, 240, 0, 0.05));
    transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    filter: brightness(1.1) drop-shadow(0 4px 20px rgba(185, 240, 0, 0.15));
}

.footer-brand-text {
    color: #FFFFFF !important;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF, #D0D0D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #9A9A9A !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Footer Headings --- */
footer h5, footer h6 {
    color: #FFFFFF !important;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 12px;
}

footer h5::after, footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(185, 240, 0, 0.2);
}

/* --- Footer Links --- */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 6px;
}

footer ul li a {
    color: #9A9A9A !important;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding: 2px 0;
    font-weight: 400;
}

/* --- Underline Animation on Hover --- */
footer ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.3s ease;
    border-radius: 2px;
}

footer ul li a:hover {
    color: #B9F000 !important;
    transform: translateX(5px);
}

footer ul li a:hover::after {
    width: 100%;
}

/* --- Footer Contact --- */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #9A9A9A;
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-contact-info li i {
    color: #B9F000;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
    transition: all 0.3s ease;
}

.footer-contact-info li:hover i {
    transform: scale(1.2);
    color: #D5FF33;
}

.footer-contact-info li strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* --- Footer Badges --- */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-badges .badge {
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(42, 42, 42, 0.6);
}

.footer-badges .badge-ase {
    background: rgba(185, 240, 0, 0.12) !important;
    color: #B9F000 !important;
    border-color: rgba(185, 240, 0, 0.15);
}

.footer-badges .badge-icar {
    background: rgba(185, 240, 0, 0.08) !important;
    color: #D5FF33 !important;
    border-color: rgba(213, 255, 51, 0.12);
}

.footer-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(185, 240, 0, 0.1);
    transition: all 0.3s ease;
}

/* --- Copyright --- */
.footer-copyright {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
}

.footer-copyright p {
    color: #6B6B6B !important;
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright a {
    color: #9A9A9A !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: #B9F000 !important;
}

/* ============================================
   FOOTER LINKS - 2 COLUMN ON MOBILE
   ============================================ */

/* --- Desktop: Single Column (Default) --- */
.footer-links-wrapper {
    display: block;
}

.footer-links-wrapper li {
    display: block;
    margin-bottom: 6px;
}

/* --- Mobile: 2 Column Layout (≤ 991px) --- */
@media (max-width: 991.98px) {
    footer {
        padding: 40px 0 0;
    }

    .footer-logo-img {
        height: 38px;
    }

    .footer-brand-text {
        font-size: 1.2rem;
    }

    .footer-brand p {
        font-size: 0.88rem;
    }

    /* --- Convert to 2 Columns --- */
    .footer-links-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 14px;
    }

    .footer-links-wrapper li {
        margin-bottom: 4px;
    }

    .footer-links-wrapper li a {
        font-size: 0.88rem;
        padding: 2px 0;
    }

    footer h5::after, footer h6::after {
        width: 25px;
    }

    .footer-contact-info li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .footer-contact-info li i {
        font-size: 1rem;
    }
}

/* ============================================
   TABLET VIEW (768px - 991px)
   ============================================ */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 0;
    }

    .footer-logo-img {
        height: 34px;
    }

    .footer-brand-text {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links-wrapper {
        gap: 2px 10px;
    }

    .footer-links-wrapper li a {
        font-size: 0.85rem;
    }

    footer h5, footer h6 {
        font-size: 1rem;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .footer-contact-info li {
        font-size: 0.82rem;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 16px 0;
    }

    .footer-copyright p {
        font-size: 0.8rem;
        text-align: center;
    }

    /* --- Footer Badges Mobile --- */
    .footer-badges .badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (≤ 575px)
   ============================================ */
@media (max-width: 575px) {
    .footer-logo-img {
        height: 30px;
    }

    .footer-brand-text {
        font-size: 1rem;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2px 8px;
    }

    .footer-links-wrapper li a {
        font-size: 0.82rem;
    }

    .footer-contact-info li {
        font-size: 0.8rem;
        gap: 8px;
    }

    .footer-contact-info li i {
        font-size: 0.95rem;
        min-width: 16px;
    }

    .footer-badges .badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .footer-copyright {
        margin-top: 20px;
        padding: 12px 0;
    }

    .footer-copyright .text-md-end {
        text-align: center !important;
    }
}

/* ============================================
   EXTRA EXTRA SMALL (≤ 370px)
   ============================================ */
@media (max-width: 370px) {
    .footer-logo-img {
        height: 26px;
    }

    .footer-brand-text {
        font-size: 0.9rem;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2px 6px;
    }

    .footer-links-wrapper li a {
        font-size: 0.75rem;
    }

    .footer-contact-info li {
        font-size: 0.75rem;
        gap: 6px;
    }

    .footer-contact-info li i {
        font-size: 0.85rem;
        min-width: 14px;
    }

    footer h5, footer h6 {
        font-size: 0.9rem;
    }

    .footer-badges .badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* ============================================
   FOOTER END
   ============================================ */
   /* ============================================
   HERO SECTION - LEFT CONTENT + RIGHT IMAGE
   ============================================ */

.hero-section {
    background: #070707;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* --- Background Image (Right Side) --- */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.85;
    z-index: 1;
}

/* --- Dark Gradient Overlay for Image --- */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, #070707 0%, transparent 40%, rgba(7, 7, 7, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* --- Left Side Glow Effect --- */
.hero-section .hero-glow {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.06), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* --- Hero Container --- */
.hero-section .container {
    position: relative;
    z-index: 10;
    height: 100%;
}

.hero-section .row {
    min-height: 80vh;
}

/* --- Hero Content (Left Aligned) --- */
.hero-section .hero-content {
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-section h1 .highlight {
    color: #B9F000;
    position: relative;
}

.hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.hero-section .tagline {
    color: #E0E0E0;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.hero-section .sub-text {
    color: #9A9A9A;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* --- Hero Buttons --- */
.hero-section .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

/* --- Primary Button (Lime Green) --- */
.hero-section .hero-buttons .btn-primary {
    background: #B9F000;
    color: #070707;
    border: none;
    padding: 16px 34px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(185, 240, 0, 0.2);
}

.hero-section .hero-buttons .btn-primary:hover {
    background: #D5FF33;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.35);
}

.hero-section .hero-buttons .btn-primary i {
    color: #070707;
}

/* --- Secondary Button (Outline) --- */
.hero-section .hero-buttons .btn-outline-light {
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 16px 34px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #B9F000;
    color: #B9F000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(185, 240, 0, 0.1);
}

.hero-section .hero-buttons .btn-outline-light i {
    color: #B9F000;
}

.hero-section .hero-buttons .btn-outline-light:hover i {
    color: #B9F000;
}

/* --- Warning Button (Lime) --- */
.hero-section .hero-buttons .btn-warning {
    background: #B9F000;
    color: #070707;
    border: none;
    padding: 16px 34px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(185, 240, 0, 0.2);
}

.hero-section .hero-buttons .btn-warning:hover {
    background: #D5FF33;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.35);
}

/* --- Trust Badge (Optional Below Buttons) --- */
.hero-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(42, 42, 42, 0.4);
}

.hero-trust-badge .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9A9A9A;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-badge .trust-item i {
    color: #B9F000;
    font-size: 1.1rem;
}

.hero-trust-badge .trust-item:hover {
    color: #E0E0E0;
    transition: all 0.3s ease;
}

/* ============================================
   RESPONSIVE HERO
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section .tagline {
        font-size: 1.1rem;
    }

    .hero-section .sub-text {
        font-size: 1rem;
        max-width: 100%;
    }

    /* --- Image moves behind content --- */
    .hero-section::before {
        width: 100%;
        clip-path: none;
        opacity: 0.2;
        right: auto;
        left: 0;
    }

    .hero-section::after {
        display: none;
    }

    .hero-section .hero-content {
        text-align: center;
    }

    .hero-section .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badge {
        justify-content: center;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-section .tagline {
        font-size: 1rem;
    }

    .hero-section .sub-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-section .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }

    .hero-section::before {
        opacity: 0.15;
    }

    .hero-trust-badge {
        gap: 12px;
        justify-content: center;
        padding-top: 20px;
    }

    .hero-trust-badge .trust-item {
        font-size: 0.75rem;
    }
}

/* --- Extra Small Mobile (≤ 370px) --- */
@media (max-width: 370px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section .tagline {
        font-size: 0.9rem;
    }

    .hero-section .sub-text {
        font-size: 0.85rem;
    }

    .hero-section .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 12px 18px;
        max-width: 280px;
    }

    .hero-trust-badge .trust-item {
        font-size: 0.7rem;
        gap: 4px;
    }

    .hero-trust-badge .trust-item i {
        font-size: 0.9rem;
    }
}

/* Header Background - Hero Section Ke Jaisa */
.navbar {
    background: #070707 !important;
}

/* Scroll Par Bhi Same */
.navbar.scrolled {
    background: #070707 !important;
}
.hero-section {
    background: rgba(7, 7, 7, 0.96);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(42, 42, 42, 0.4);
}
/* ============================================
   HERO TOP BADGE (Above Heading)
   ============================================ */

.hero-top-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 18px;
    background: #070707; /* Same as header background */
    border: 1px solid rgba(185, 240, 0, 0.15); /* Subtle lime border */
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-top-badge:hover {
    border-color: rgba(185, 240, 0, 0.3); /* Border lightens on hover */
    background: #0a0a0a; /* Slight brightness on hover for feedback */
}

.hero-top-badge .badge-text {
    color: #B9F000;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-top-badge .badge-text i {
    font-size: 0.9rem;
    color: #B9F000;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
    .hero-top-badge {
        padding: 4px 14px;
        margin-bottom: 16px;
    }
    
    .hero-top-badge .badge-text {
        font-size: 0.65rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 370px) {
    .hero-top-badge .badge-text {
        font-size: 0.55rem;
        gap: 4px;
    }
}

/* --- Logo - Maximum Size --- */
.logo-img {
    height: 80px;  /* Maximum size */
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(1) drop-shadow(0 2px 10px rgba(185, 240, 0, 0.05));
}

.navbar-brand:hover .logo-img {
    filter: brightness(1.1) drop-shadow(0 4px 25px rgba(185, 240, 0, 0.2));
    transform: scale(1.03);
}

/* --- Navbar Padding Adjust for Big Logo --- */
.navbar {
    padding: 10px 0; /* Reduce padding to balance */
}

/* --- Scroll Par Thoda Kam --- */
.navbar.scrolled .logo-img {
    height: 60px;
}

/* --- Mobile View --- */
@media (max-width: 991.98px) {
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 370px) {
    .logo-img {
        height: 40px;
    }
}

/* --- Center Nav Links --- */
@media (min-width: 992px) {
    .navbar-nav {
        margin: 0 auto !important;  /* Center the nav items */
        display: flex;
        justify-content: center;
        flex: 1;
    }

    /* Keep brand on left, push nav to center */
    .navbar-collapse {
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

/* --- Mobile View (default left) --- */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin: 0 !important;
        align-items: stretch;
        width: 100%;
    }
}

/* ============================================
   MOBILE HEADER - LOGO | CALL | HAMBURGER
   ============================================ */

@media (max-width: 991.98px) {
    
    /* --- Navbar Container --- */
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    /* --- Logo --- */
    .navbar-brand {
        flex: 0 0 auto;
        margin-right: 0;
    }

    .logo-img {
        height: 50px;
    }

    /* --- Mobile Call Button (Center) --- */
    .mobile-call-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #B9F000;
        color: #070707 !important;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
        flex: 1;
        max-width: 180px;
        white-space: nowrap;
        border: none;
        box-shadow: 0 4px 20px rgba(185, 240, 0, 0.25);
    }

    .mobile-call-btn:hover {
        background: #D5FF33;
        transform: scale(1.04);
        color: #070707 !important;
        box-shadow: 0 8px 30px rgba(185, 240, 0, 0.35);
    }

    .mobile-call-btn i {
        font-size: 1rem;
    }

    /* --- Hamburger Toggler (Right) --- */
    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: 0;
    }

    /* --- Hide Desktop Call Button in Mobile --- */
    .navbar-nav .nav-link.btn-outline-light {
        display: none !important;
    }

    /* --- Nav Collapse (Full width below) --- */
    .navbar-collapse {
        flex-basis: 100%;
        order: 3;
        margin-top: 12px;
    }
}

/* ============================================
   EXTRA SMALL (≤ 370px)
   ============================================ */
@media (max-width: 370px) {
    .mobile-call-btn {
        padding: 6px 12px;
        font-size: 0.65rem;
        max-width: 130px;
    }

    .mobile-call-btn i {
        font-size: 0.8rem;
    }

    .logo-img {
        height: 38px;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   SMALL PHONES (371px - 480px)
   ============================================ */
@media (min-width: 371px) and (max-width: 480px) {
    .mobile-call-btn {
        padding: 8px 14px;
        font-size: 0.7rem;
        max-width: 150px;
    }

    .mobile-call-btn i {
        font-size: 0.85rem;
    }
}

/* ============================================
   INTRO CARD SECTION (Floating Card)
   ============================================ */

.intro-card-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.intro-card {
    background: #181818 !important;  /* Dark card background */
    border: 1px solid rgba(42, 42, 42, 0.6);
    border-radius: 20px !important;
    padding: 40px 50px !important;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(185, 240, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* --- Lime Glow Border Effect --- */
.intro-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.15), transparent 50%, rgba(185, 240, 0, 0.05));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.intro-card:hover::before {
    opacity: 1;
}

/* --- Top Lime Line --- */
.intro-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B9F000, #D5FF33, transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0.6;
}

/* --- Card Text --- */
.intro-card p {
    color: #E0E0E0 !important;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.intro-card p .highlight-lime {
    color: #B9F000;
    font-weight: 600;
}

/* --- Hover Effect --- */
.intro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 240, 0, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(185, 240, 0, 0.06) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet --- */
@media (max-width: 991.98px) {
    .intro-card-section {
        margin-top: -40px;
        padding: 0 16px;
    }

    .intro-card {
        padding: 30px 28px !important;
        border-radius: 18px !important;
    }

    .intro-card p {
        font-size: 1rem;
    }
}

/* --- Mobile --- */
@media (max-width: 767.98px) {
    .intro-card-section {
        margin-top: -30px;
        padding: 0 12px;
    }

    .intro-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }

    .intro-card p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .intro-card::after {
        width: 50px;
        height: 2px;
    }
}

/* --- Extra Small Mobile (≤ 370px) --- */
@media (max-width: 370px) {
    .intro-card-section {
        margin-top: -20px;
        padding: 0 8px;
    }

    .intro-card {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }

    .intro-card p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .intro-card::after {
        width: 40px;
        height: 2px;
    }
}
/* ============================================
   HERO TRUST BADGE - PROFESSIONAL ICONS
   ============================================ */

.hero-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #B0B0B0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item i {
    font-size: 1.3rem;
    color: #B9F000;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(185, 240, 0, 0.15));
}

.trust-item:hover {
    color: #E0E0E0;
    transform: translateY(-2px);
}

.trust-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.3));
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
    .hero-trust-badge {
        gap: 12px 20px;
        justify-content: center;
        padding-top: 20px;
        margin-top: 20px;
    }

    .trust-item {
        font-size: 0.75rem;
        gap: 6px;
    }

    .trust-item i {
        font-size: 1rem;
    }
}

@media (max-width: 370px) {
    .hero-trust-badge {
        gap: 8px 14px;
        padding-top: 16px;
        margin-top: 16px;
    }

    .trust-item {
        font-size: 0.65rem;
        gap: 4px;
    }

    .trust-item i {
        font-size: 0.85rem;
    }
}
/* ============================================
   WHY CHOOSE US SECTION - PROFESSIONAL
   ============================================ */

.why-choose-section {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Top Glow Effect --- */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

/* --- Section Badge --- */
.section-badge {
    display: inline-block;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.12);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* --- Section Heading --- */
.why-choose-section h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.why-choose-section h2 .highlight {
    color: #B9F000;
    position: relative;
}

.why-choose-section h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* --- Subtitle --- */
.why-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.8;
    margin-top: 8px;
}

/* ============================================
   WHY CARDS
   ============================================ */

.why-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 30px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Card Glow Border --- */
.why-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.08), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.04));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.why-card:hover::before {
    opacity: 1;
}

/* --- Card Content (above glow) --- */
.why-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Icon --- */
.why-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}

.why-card-icon i {
    font-size: 1.8rem;
    color: #B9F000;
    transition: all 0.4s ease;
}

/* --- Icon Hover --- */
.why-card:hover .why-card-icon {
    background: rgba(185, 240, 0, 0.12);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(185, 240, 0, 0.08);
}

.why-card:hover .why-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.2));
}

/* --- Card Title --- */
.why-card-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* --- Card Text --- */
.why-card-text {
    color: #9A9A9A;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Card Hover Effect --- */
.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.03);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section h2 {
        font-size: 2.2rem;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-card-icon {
        width: 50px;
        height: 50px;
    }

    .why-card-icon i {
        font-size: 1.5rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-section h2 {
        font-size: 1.6rem;
    }

    .why-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .section-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    /* --- Mobile: One Card Per Row --- */
    .why-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .why-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .why-card-icon i {
        font-size: 1.3rem;
    }

    .why-card-title {
        font-size: 1rem;
    }

    .why-card-text {
        font-size: 0.85rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .why-choose-section h2 {
        font-size: 1.3rem;
    }

    .why-subtitle {
        font-size: 0.85rem;
    }

    .why-card {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .why-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .why-card-icon i {
        font-size: 1.1rem;
    }

    .why-card-title {
        font-size: 0.9rem;
    }

    .why-card-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .why-choose-section::before {
        width: 300px;
        height: 150px;
    }
}
/* ============================================
   GLOBAL BACKGROUND - LIGHT DARK THEME
   ============================================ */

body {
    background-color: #1a1a1a !important;
}

/* --- Section Backgrounds (Light Dark) --- */

/* Hero Section */
.hero-section {
    background: rgba(26, 26, 26, 0.98) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

/* Trust Section */
.trust-section {
    background: #222222 !important;
}

/* Services Section */
.services-section {
    background: #1a1a1a !important;
}

/* How It Works Section */
.how-it-works {
    background: #222222 !important;
}

/* About Section */
.about-home {
    background: #1a1a1a !important;
}

/* Service Areas Section */
.areas-home {
    background: #222222 !important;
}

/* FAQ Section */
.faq-home {
    background: #1a1a1a !important;
}

/* Final CTA Section */
.final-cta {
    background: #1a1a1a !important;
}

/* Footer */
footer {
    background: #141414 !important;
}

/* --- Cards & Panels --- */
.card,
.service-card,
.area-card,
.about-point,
.intro-card {
    background: #242424 !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* --- Accordion Items --- */
.accordion-item {
    background: #242424 !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

.accordion-header .accordion-button {
    background: #242424 !important;
    color: #E0E0E0 !important;
}

.accordion-body {
    background: #2a2a2a !important;
}

/* --- Form Controls --- */
.form-control {
    background: #242424 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #E0E0E0 !important;
}

.form-control:focus {
    border-color: #B9F000 !important;
    box-shadow: 0 0 0 3px rgba(185, 240, 0, 0.08) !important;
}

/* --- Modals --- */
.modal-content {
    background: #242424 !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

.modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.modal-footer {
    border-top-color: rgba(255, 255, 255, 0.06) !important;
}

/* --- Dropdown Menus --- */
.navbar .dropdown-menu {
    background: #242424 !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* ============================================
   SERVICES SECTION - PROFESSIONAL CARDS
   ============================================ */

.services-section {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Glow Effect --- */
.services-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

/* --- Section Header --- */
.services-section .section-badge {
    display: inline-block;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.12);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-section h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.services-section h2 .highlight {
    color: #B9F000;
    position: relative;
}

.services-section h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.services-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 8px auto 0;
    line-height: 1.6;
}

/* ============================================
   SERVICE CARD
   ============================================ */

.service-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

/* --- Card Image --- */
.service-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image Overlay (Lime Gradient) --- */
.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(24, 24, 24, 0.9), transparent);
    pointer-events: none;
}

/* --- Hover Overlay --- */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 240, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.service-card-overlay i {
    font-size: 3rem;
    color: #B9F000;
    transform: scale(0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Card Body --- */
.service-card-body {
    padding: 24px 28px 28px;
    position: relative;
}

/* --- Card Title --- */
.service-card-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* --- Card Text --- */
.service-card-text {
    color: #9A9A9A;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* --- Card Button --- */
.btn-service {
    color: #B9F000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-service::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-service:hover {
    color: #D5FF33;
    gap: 8px;
}

.btn-service:hover::after {
    width: 100%;
}

/* ============================================
   SERVICE CARD HOVER EFFECTS
   ============================================ */

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.03);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover .service-card-overlay i {
    transform: scale(1);
}

/* ============================================
   VIEW ALL SERVICES BUTTON
   ============================================ */

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #B9F000;
    border: 2px solid rgba(185, 240, 0, 0.2);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.btn-view-all:hover {
    background: #B9F000;
    color: #070707;
    border-color: #B9F000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.25);
}

.btn-view-all i {
    transition: all 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .services-section {
        padding: 60px 0;
    }

    .services-section h2 {
        font-size: 2.2rem;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-body {
        padding: 20px 22px 24px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .services-section {
        padding: 40px 0;
    }

    .services-section h2 {
        font-size: 1.6rem;
    }

    .services-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .service-card-image {
        height: 160px;
    }

    .service-card-body {
        padding: 16px 18px 20px;
    }

    .service-card-title {
        font-size: 1rem;
    }

    .service-card-text {
        font-size: 0.85rem;
    }

    .btn-view-all {
        padding: 12px 30px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .services-section h2 {
        font-size: 1.3rem;
    }

    .services-subtitle {
        font-size: 0.85rem;
    }

    .service-card-image {
        height: 130px;
    }

    .service-card-body {
        padding: 12px 14px 16px;
    }

    .service-card-title {
        font-size: 0.9rem;
    }

    .service-card-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .btn-service {
        font-size: 0.78rem;
    }

    .btn-view-all {
        padding: 10px 24px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .service-card-overlay i {
        font-size: 2rem;
    }
}
/* ============================================
   HOW IT WORKS - NEXT LEVEL
   ============================================ */

.how-it-works {
    background: #222222;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

/* --- Section Header --- */
.how-it-works .section-badge {
    display: inline-block;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.12);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.how-it-works h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.how-it-works h2 .highlight {
    color: #B9F000;
    position: relative;
}

.how-it-works h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.how-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 8px auto 0;
    line-height: 1.6;
}

/* ============================================
   STEP CARDS
   ============================================ */

.step-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* --- Step Card Glow Border --- */
.step-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.06), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.03));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card > * {
    position: relative;
    z-index: 1;
}

/* --- Step Number (Background Badge) --- */
.step-number {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* --- Step Icon --- */
.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(185, 240, 0, 0.06);
}

.step-icon i {
    font-size: 2rem;
    color: #B9F000;
    transition: all 0.4s ease;
}

/* --- Icon Hover --- */
.step-card:hover .step-icon {
    background: rgba(185, 240, 0, 0.12);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(185, 240, 0, 0.06);
}

.step-card:hover .step-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.15));
}

/* --- Step Title --- */
.step-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* --- Step Text --- */
.step-text {
    color: #9A9A9A;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Step Connector (Desktop Line) --- */
.step-connector {
    display: none;
}

/* --- Card Hover --- */
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.03);
}

/* ============================================
   DESKTOP CONNECTORS (≥ 992px)
   ============================================ */
@media (min-width: 992px) {
    /* --- Show connectors on desktop only --- */
    .step-connector {
        display: block;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 2px;
        background: linear-gradient(90deg, rgba(185, 240, 0, 0.2), rgba(185, 240, 0, 0.05));
        border-radius: 2px;
        z-index: 2;
    }

    /* --- Hide connector on last card --- */
    .col-lg-4:last-child .step-connector {
        display: none;
    }

    /* --- Connector Arrow Dot --- */
    .step-connector::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: rgba(185, 240, 0, 0.15);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .step-card:hover .step-connector::after {
        background: rgba(185, 240, 0, 0.3);
        box-shadow: 0 0 12px rgba(185, 240, 0, 0.1);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works h2 {
        font-size: 2.2rem;
    }

    .step-card {
        padding: 26px 20px 22px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.6rem;
    }

    .step-number {
        font-size: 3.5rem;
    }

    .step-connector {
        display: none !important;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .how-it-works {
        padding: 40px 0;
    }

    .how-it-works h2 {
        font-size: 1.6rem;
    }

    .how-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .step-card {
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .step-icon i {
        font-size: 1.3rem;
    }

    .step-number {
        font-size: 2.8rem;
        top: -6px;
        right: -2px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.85rem;
    }

    .step-connector {
        display: none !important;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .how-it-works h2 {
        font-size: 1.3rem;
    }

    .how-subtitle {
        font-size: 0.85rem;
    }

    .step-card {
        padding: 16px 12px 14px;
        border-radius: 12px;
    }

    .step-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    .step-icon i {
        font-size: 1.1rem;
    }

    .step-number {
        font-size: 2.2rem;
        top: -4px;
        right: -1px;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .how-it-works .section-badge {
        font-size: 0.55rem;
        padding: 4px 12px;
    }
}
/* ============================================
   ABOUT US - NEXT LEVEL
   ============================================ */

.about-home {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.about-home::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

/* --- Section Badge --- */
.about-home .section-badge {
    display: inline-block;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.12);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* --- Heading --- */
.about-home h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-home h2 .highlight {
    color: #B9F000;
    position: relative;
}

.about-home h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* --- About Text --- */
.about-text {
    color: #9A9A9A;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* --- About Button --- */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #B9F000;
    color: #070707;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-about:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.3);
}

.btn-about i {
    transition: all 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* ============================================
   ABOUT IMAGE
   ============================================ */

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(42, 42, 42, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-main-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* --- Image Overlay Gradient --- */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
    pointer-events: none;
}

/* --- Image Badge --- */
.about-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.about-image-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(24, 24, 24, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.1);
}

.about-image-badge i {
    color: #B9F000;
    font-size: 1.2rem;
}

.about-image-badge span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   ABOUT POINTS
   ============================================ */

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.about-point:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 240, 0, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* --- Point Icon --- */
.about-point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-point-icon i {
    color: #B9F000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.about-point:hover .about-point-icon {
    background: rgba(185, 240, 0, 0.12);
}

.about-point:hover .about-point-icon i {
    transform: scale(1.1);
}

/* --- Point Content --- */
.about-point-content {
    flex: 1;
    min-width: 0;
}

.about-point-title {
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-point-text {
    color: #9A9A9A;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .about-home {
        padding: 60px 0;
    }

    .about-home h2 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 0.98rem;
    }

    .about-main-image {
        height: 350px;
    }

    .about-image-badge {
        padding: 8px 16px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .about-home {
        padding: 40px 0;
    }

    .about-home h2 {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 0.92rem;
    }

    .btn-about {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* --- Image on Top (Mobile) --- */
    .about-image-wrapper {
        border-radius: 16px;
        margin-bottom: 8px;
    }

    .about-main-image {
        height: 250px;
    }

    .about-image-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .about-image-badge i {
        font-size: 1rem;
    }

    .about-point {
        padding: 14px 14px;
        gap: 10px;
    }

    .about-point-icon {
        width: 34px;
        height: 34px;
    }

    .about-point-icon i {
        font-size: 0.95rem;
    }

    .about-point-title {
        font-size: 0.85rem;
    }

    .about-point-text {
        font-size: 0.78rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .about-home h2 {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.85rem;
    }

    .about-main-image {
        height: 200px;
    }

    .about-image-wrapper {
        border-radius: 12px;
    }

    .about-image-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .about-image-badge i {
        font-size: 0.85rem;
    }

    .about-point {
        padding: 10px 12px;
        gap: 8px;
        border-radius: 10px;
    }

    .about-point-icon {
        width: 28px;
        height: 28px;
    }

    .about-point-icon i {
        font-size: 0.8rem;
    }

    .about-point-title {
        font-size: 0.78rem;
    }

    .about-point-text {
        font-size: 0.72rem;
        line-height: 1.4;
    }
}
/* ============================================
   FAQ SECTION - NEXT LEVEL
   ============================================ */

.faq-home {
    background: #222222;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.faq-home::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

/* --- Section Header --- */
.faq-home .section-badge {
    display: inline-block;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.12);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-home h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.faq-home h2 .highlight {
    color: #B9F000;
    position: relative;
}

.faq-home h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.faq-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.6;
}

/* ============================================
   FAQ WRAPPER
   ============================================ */

.faq-wrapper {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FAQ ITEM
   ============================================ */

.faq-item {
    background: #242424;
    border-radius: 14px;
    margin-bottom: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(185, 240, 0, 0.06);
}

/* ============================================
   FAQ HEADER / BUTTON
   ============================================ */

.faq-header {
    position: relative;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.faq-btn:hover {
    color: #FFFFFF;
}

/* --- FAQ Icon --- */
.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: #B9F000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-btn:hover .faq-icon {
    background: rgba(185, 240, 0, 0.12);
}

.faq-btn:hover .faq-icon i {
    transform: scale(1.1);
}

/* --- FAQ Question --- */
.faq-question {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
    color: #E0E0E0;
    transition: all 0.3s ease;
}

.faq-btn:hover .faq-question {
    color: #FFFFFF;
}

.faq-btn:not(.collapsed) .faq-question {
    color: #B9F000;
}

/* --- FAQ Toggle Icon (Plus/Minus) --- */
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-toggle i {
    color: #B9F000;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.faq-btn:not(.collapsed) .faq-toggle {
    background: rgba(185, 240, 0, 0.12);
    transform: rotate(45deg);
}

.faq-btn:not(.collapsed) .faq-toggle i {
    color: #D5FF33;
}

.faq-btn:hover .faq-toggle {
    background: rgba(185, 240, 0, 0.12);
}

/* ============================================
   FAQ BODY
   ============================================ */

.faq-body {
    padding: 0 22px 20px 72px;
    color: #9A9A9A;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-body p {
    margin-bottom: 0;
    color: #9A9A9A;
}

/* ============================================
   ACTIVE STATE (Open)
   ============================================ */

.faq-btn:not(.collapsed) {
    color: #B9F000;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .faq-home {
        padding: 60px 0;
    }

    .faq-home h2 {
        font-size: 2.2rem;
    }

    .faq-wrapper {
        padding: 6px;
        border-radius: 16px;
    }

    .faq-btn {
        padding: 16px 18px;
        gap: 12px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-body {
        padding: 0 18px 18px 66px;
        font-size: 0.92rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .faq-home {
        padding: 40px 0;
    }

    .faq-home h2 {
        font-size: 1.6rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .faq-wrapper {
        padding: 4px;
        border-radius: 14px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-btn {
        padding: 14px 14px;
        gap: 10px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq-icon i {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.88rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-toggle i {
        font-size: 0.9rem;
    }

    .faq-body {
        padding: 0 14px 14px 54px;
        font-size: 0.85rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .faq-home h2 {
        font-size: 1.3rem;
    }

    .faq-subtitle {
        font-size: 0.85rem;
    }

    .faq-wrapper {
        padding: 2px;
        border-radius: 12px;
    }

    .faq-btn {
        padding: 10px 10px;
        gap: 8px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-icon i {
        font-size: 0.75rem;
    }

    .faq-question {
        font-size: 0.78rem;
    }

    .faq-toggle {
        width: 22px;
        height: 22px;
    }

    .faq-toggle i {
        font-size: 0.75rem;
    }

    .faq-body {
        padding: 0 10px 10px 44px;
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .faq-home .section-badge {
        font-size: 0.55rem;
        padding: 4px 12px;
    }
}

/* ============================================
   FINAL CTA - NEXT LEVEL
   ============================================ */

.final-cta {
    background: #0a0a0a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

/* --- Background Glow Effects --- */
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.06), transparent 70%);
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.2), rgba(185, 240, 0, 0.4), rgba(185, 240, 0, 0.2), transparent);
}

/* --- Subtle Grid Pattern --- */
.final-cta .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   CTA BADGE
   ============================================ */

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.1);
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-badge i {
    font-size: 0.8rem;
    color: #B9F000;
}

/* ============================================
   CTA HEADING
   ============================================ */

.cta-heading {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-heading .highlight {
    color: #B9F000;
    position: relative;
}

.cta-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* ============================================
   CTA DESCRIPTION
   ============================================ */

.cta-description {
    color: #9A9A9A;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-description strong {
    color: #B9F000;
    font-weight: 600;
}

/* ============================================
   CTA BUTTONS
   ============================================ */

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

/* --- Base Button --- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.cta-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* --- Primary Button (Lime Green) --- */
.cta-btn-primary {
    background: #B9F000;
    color: #070707;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.25);
}

.cta-btn-primary:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.cta-btn-primary:hover i {
    transform: scale(1.1);
}

/* --- Outline Button --- */
.cta-btn-outline {
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-btn-outline:hover {
    border-color: #B9F000;
    color: #B9F000;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.08);
    background: rgba(185, 240, 0, 0.03);
}

.cta-btn-outline:hover i {
    color: #B9F000;
    transform: scale(1.1);
}

/* --- Accent Button (Lime with Dark Text) --- */
.cta-btn-accent {
    background: #B9F000;
    color: #070707;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.cta-btn-accent:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.cta-btn-accent:hover i {
    transform: scale(1.1);
}

/* ============================================
   CTA TRUST INDICATORS
   ============================================ */

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 36px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B6B6B;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-trust-item i {
    color: #B9F000;
    font-size: 1rem;
}

.cta-trust-item:hover {
    color: #E0E0E0;
    transform: translateY(-2px);
}

.cta-trust-item:hover i {
    transform: scale(1.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .final-cta {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .final-cta {
        padding: 40px 0;
    }

    .cta-heading {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 0.92rem;
        padding: 0 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        max-width: 340px;
        padding: 14px 24px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .cta-btn i {
        font-size: 1rem;
    }

    .cta-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .cta-trust {
        gap: 14px 22px;
        margin-top: 28px;
        padding-top: 22px;
    }

    .cta-trust-item {
        font-size: 0.75rem;
        gap: 6px;
    }

    .cta-trust-item i {
        font-size: 0.85rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .final-cta {
        padding: 30px 0;
    }

    .cta-heading {
        font-size: 1.3rem;
    }

    .cta-description {
        font-size: 0.82rem;
        padding: 0 8px;
        margin-bottom: 24px;
    }

    .cta-btn {
        padding: 12px 18px;
        font-size: 0.78rem;
        max-width: 280px;
        gap: 6px;
    }

    .cta-btn i {
        font-size: 0.85rem;
    }

    .cta-badge {
        font-size: 0.5rem;
        padding: 3px 10px;
        gap: 4px;
    }

    .cta-badge i {
        font-size: 0.6rem;
    }

    .cta-trust {
        gap: 10px 16px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .cta-trust-item {
        font-size: 0.65rem;
        gap: 4px;
    }

    .cta-trust-item i {
        font-size: 0.7rem;
    }
}

/* ============================================
   FOOTER BADGES - PROFESSIONAL CARDS
   ============================================ */

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

/* --- Individual Badge Card --- */
.footer-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(24, 24, 24, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 10px 16px 10px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 140px;
    max-width: 220px;
}

/* --- Glow Border on Hover --- */
.footer-badge-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.08), transparent 50%, transparent 60%, rgba(185, 240, 0, 0.04));
    border-radius: 13px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.footer-badge-card:hover::before {
    opacity: 1;
}

.footer-badge-card > * {
    position: relative;
    z-index: 1;
}

/* --- Badge Icon --- */
.footer-badge-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-badge-icon i {
    color: #B9F000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-badge-card:hover .footer-badge-icon {
    background: rgba(185, 240, 0, 0.12);
}

.footer-badge-card:hover .footer-badge-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(185, 240, 0, 0.15));
}

/* --- Badge Content --- */
.footer-badge-content {
    flex: 1;
    min-width: 0;
}

.footer-badge-title {
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.footer-badge-text {
    color: #6B6B6B;
    font-size: 0.65rem;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* --- Check Icon --- */
.footer-badge-check {
    flex-shrink: 0;
    color: rgba(185, 240, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-badge-check i {
    font-size: 0.8rem;
}

.footer-badge-card:hover .footer-badge-check {
    color: #B9F000;
}

/* --- Hover Effect --- */
.footer-badge-card:hover {
    transform: translateY(-3px);
    border-color: rgba(185, 240, 0, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 30px rgba(185, 240, 0, 0.02);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet --- */
@media (max-width: 991.98px) {
    .footer-badge-card {
        padding: 8px 14px 8px 12px;
        min-width: 120px;
    }

    .footer-badge-icon {
        width: 32px;
        height: 32px;
    }

    .footer-badge-icon i {
        font-size: 0.95rem;
    }

    .footer-badge-title {
        font-size: 0.75rem;
    }

    .footer-badge-text {
        font-size: 0.6rem;
    }
}

/* --- Mobile --- */
@media (max-width: 575.98px) {
    .footer-badges {
        flex-direction: column;
        gap: 10px;
    }

    .footer-badge-card {
        max-width: 100%;
        padding: 10px 16px 10px 14px;
    }

    .footer-badge-icon {
        width: 34px;
        height: 34px;
    }

    .footer-badge-icon i {
        font-size: 1rem;
    }

    .footer-badge-title {
        font-size: 0.8rem;
    }

    .footer-badge-text {
        font-size: 0.6rem;
    }

    .footer-badge-check i {
        font-size: 0.75rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .footer-badge-card {
        padding: 8px 12px 8px 10px;
        border-radius: 10px;
    }

    .footer-badge-icon {
        width: 28px;
        height: 28px;
    }

    .footer-badge-icon i {
        font-size: 0.8rem;
    }

    .footer-badge-title {
        font-size: 0.7rem;
    }

    .footer-badge-text {
        font-size: 0.55rem;
    }

    .footer-badge-check i {
        font-size: 0.65rem;
    }
}
/* --- Nav Links - Larger Text --- */
.navbar-nav .nav-link {
    font-size: 1.15rem !important;  /* Increased from 0.95rem */
    font-weight: 600;              /* Slightly bolder */
    padding: 10px 20px !important; /* Adjust padding for balance */
}

/* --- On Scroll (Optional) --- */
.navbar.scrolled .navbar-nav .nav-link {
    font-size: 1rem !important;    /* Slightly smaller when scrolled */
    padding: 8px 18px !important;
}

/* --- Mobile View --- */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        font-size: 1.1rem !important;  /* Still large on mobile */
        padding: 12px 16px !important;
    }
}

@media (max-width: 370px) {
    .navbar-nav .nav-link {
        font-size: 0.95rem !important;  /* Readable on very small screens */
        padding: 10px 12px !important;
    }
}
/* ============================================
   CONTACT HERO - WITH BACKGROUND IMAGE
   ============================================ */

.contact-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.75), rgba(7, 7, 7, 0.85)), 
                url('../images/contact-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* --- Parallax Effect Background --- */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(185, 240, 0, 0.04), transparent 60%);
    pointer-events: none;
}

/* --- Glow Effect at Bottom --- */
.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
}

/* --- Hero Badge --- */
.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.08);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.1);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-hero-badge i {
    font-size: 0.8rem;
}

/* --- Hero Title --- */
.contact-hero-title {
    color: #FFFFFF;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.contact-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.contact-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* --- Hero Subtitle --- */
.contact-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 28px;
}

/* --- Hero Buttons --- */
.contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B9F000;
    color: #070707;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.btn-hero-primary:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-outline:hover {
    border-color: #B9F000;
    color: #B9F000;
    transform: translateY(-3px);
    background: rgba(185, 240, 0, 0.03);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */

.contact-info {
    background: #1a1a1a;
    padding: 60px 0;
}

.contact-intro-text {
    color: #9A9A9A;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

/* --- Contact Card --- */
.contact-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 28px 30px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* --- Contact Card Header --- */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    color: #B9F000;
    font-size: 1.2rem;
}

.contact-card-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* --- Contact Items --- */
.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(185, 240, 0, 0.03);
    transform: translateX(4px);
}

.contact-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    color: #B9F000;
    font-size: 1rem;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
}

.contact-item-content strong {
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-item-content span {
    color: #9A9A9A;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item-content a {
    color: #9A9A9A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-content a:hover {
    color: #B9F000;
}

/* --- Hours --- */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(185, 240, 0, 0.03);
}

.hours-day {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-time {
    color: #9A9A9A;
    font-weight: 400;
    font-size: 0.95rem;
}

.hours-time.closed {
    color: #ff6b6b;
}

/* --- Estimate Info --- */
.estimate-title {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.estimate-title i {
    color: #B9F000;
}

.estimate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.estimate-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9A9A9A;
    font-size: 0.92rem;
    padding: 6px 0;
}

.estimate-list li i {
    color: #B9F000;
    font-size: 0.8rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-section {
    background: #222222;
    padding: 60px 0;
}

.contact-form-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-form-header h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-form-header p {
    color: #9A9A9A;
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-body {
    padding: 30px 40px 40px;
}

/* --- Submit Button --- */
.btn-submit-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B9F000;
    color: #070707;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
}

.btn-submit-form:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 22px 24px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 80px 0 50px;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-intro-text {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 18px 16px;
    }

    .contact-item {
        padding: 10px 12px;
    }

    .contact-form-header {
        padding: 24px 20px 16px;
    }

    .contact-form-body {
        padding: 24px 20px 28px;
    }

    .btn-submit-form {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 370px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-title {
        font-size: 1.4rem;
    }

    .contact-hero-subtitle {
        font-size: 0.85rem;
    }

    .contact-hero-badge {
        font-size: 0.55rem;
        padding: 4px 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 18px;
        font-size: 0.78rem;
        max-width: 220px;
    }

    .contact-intro-text {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .contact-card-icon {
        width: 36px;
        height: 36px;
    }

    .contact-card-icon i {
        font-size: 1rem;
    }

    .contact-card-title {
        font-size: 0.95rem;
    }

    .contact-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .contact-item-icon {
        width: 30px;
        height: 30px;
    }

    .contact-item-icon i {
        font-size: 0.85rem;
    }

    .contact-item-content strong {
        font-size: 0.7rem;
    }

    .contact-item-content span {
        font-size: 0.82rem;
    }

    .hours-item {
        padding: 8px 10px;
    }

    .hours-day {
        font-size: 0.82rem;
    }

    .hours-time {
        font-size: 0.82rem;
    }

    .estimate-title {
        font-size: 0.9rem;
    }

    .estimate-list li {
        font-size: 0.8rem;
    }

    .contact-form-header {
        padding: 18px 14px 12px;
    }

    .contact-form-header h3 {
        font-size: 1.2rem;
    }

    .contact-form-header p {
        font-size: 0.8rem;
    }

    .contact-form-body {
        padding: 18px 14px 22px;
    }

    .btn-submit-form {
        padding: 10px 20px;
        font-size: 0.78rem;
    }
}

/* ============================================
   CONTACT FORM - PROFESSIONAL STYLING
   ============================================ */

.contact-form-section {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.contact-form-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* ============================================
   FORM CARD
   ============================================ */

.contact-form-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* --- Card Glow Border --- */
.contact-form-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.contact-form-card:hover::before {
    opacity: 1;
}

.contact-form-card > * {
    position: relative;
    z-index: 1;
}

/* --- Top Lime Line --- */
.contact-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

/* ============================================
   CARD HEADER
   ============================================ */

.contact-form-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 34px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-form-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 240, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-form-card-icon i {
    color: #B9F000;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.contact-form-card:hover .contact-form-card-icon {
    background: rgba(185, 240, 0, 0.12);
}

.contact-form-card:hover .contact-form-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(185, 240, 0, 0.15));
}

.contact-form-card-title-group {
    flex: 1;
}

.contact-form-card-title {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.contact-form-card-subtitle {
    color: #9A9A9A;
    font-size: 0.92rem;
    margin: 0;
}

/* ============================================
   CARD BODY
   ============================================ */

.contact-form-card-body {
    padding: 30px 34px 34px;
}

/* ============================================
   SUCCESS ALERT
   ============================================ */

.alert-form-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(185, 240, 0, 0.06);
    border: 1px solid rgba(185, 240, 0, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.alert-form-success i {
    color: #B9F000;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-form-success div {
    flex: 1;
}

.alert-form-success strong {
    color: #B9F000;
    display: block;
    font-size: 0.95rem;
}

.alert-form-success span {
    color: #9A9A9A;
    font-size: 0.88rem;
}

.alert-close {
    background: none;
    border: none;
    color: #9A9A9A;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: all 0.3s ease;
}

.alert-close:hover {
    color: #FFFFFF;
    transform: rotate(90deg);
}

/* ============================================
   FORM GROUP
   ============================================ */

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E0E0E0;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.form-label i {
    color: #B9F000;
    font-size: 0.95rem;
}

.form-label .required {
    color: #ff6b6b;
    font-weight: 700;
}

.form-label .optional {
    color: #6B6B6B;
    font-weight: 400;
    font-size: 0.75rem;
}

/* ============================================
   FORM INPUTS
   ============================================ */

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    color: #E0E0E0 !important;
    padding: 12px 16px !important;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.contact-form .form-control::placeholder {
    color: #6B6B6B !important;
    font-size: 0.9rem;
}

.contact-form .form-control:focus {
    border-color: #B9F000 !important;
    box-shadow: 0 0 0 4px rgba(185, 240, 0, 0.06) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    transform: translateY(-1px);
}

.contact-form .form-control:hover {
    border-color: rgba(185, 240, 0, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

/* --- Textarea Specific --- */
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #B9F000, #D5FF33);
    color: #070707;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

/* --- Button Shine Effect --- */
.btn-submit-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.8s ease;
}

.btn-submit-form:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.btn-submit-form .btn-text {
    position: relative;
    z-index: 1;
}

.btn-submit-form .btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-submit-form .btn-icon i {
    font-size: 1.1rem;
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-submit-form:hover .btn-icon {
    transform: translateX(4px);
}

.btn-submit-form:active {
    transform: scale(0.98);
}

/* ============================================
   FORM FOOTER NOTE
   ============================================ */

.form-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.form-footer-note i {
    color: #B9F000;
    font-size: 0.9rem;
}

.form-footer-note span {
    color: #6B6B6B;
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-card-header {
        padding: 24px 28px 18px;
    }

    .contact-form-card-body {
        padding: 24px 28px 28px;
    }

    .contact-form-card-title {
        font-size: 1.2rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-card {
        border-radius: 16px;
        margin: 0 12px;
    }

    .contact-form-card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px 16px;
        gap: 12px;
    }

    .contact-form-card-icon {
        width: 44px;
        height: 44px;
    }

    .contact-form-card-icon i {
        font-size: 1.1rem;
    }

    .contact-form-card-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .contact-form-card-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .contact-form-card-body {
        padding: 20px 18px 22px;
    }

    .form-label {
        font-size: 0.82rem;
    }

    .contact-form .form-control {
        padding: 10px 14px !important;
        font-size: 0.9rem;
    }

    .btn-submit-form {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .alert-form-success {
        padding: 14px 16px;
        gap: 10px;
    }

    .alert-form-success i {
        font-size: 1.1rem;
    }

    .alert-form-success strong {
        font-size: 0.88rem;
    }

    .alert-form-success span {
        font-size: 0.82rem;
    }

    .form-footer-note {
        margin-top: 16px;
        padding-top: 14px;
    }

    .form-footer-note span {
        font-size: 0.75rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .contact-form-section {
        padding: 30px 0;
    }

    .contact-form-card {
        border-radius: 12px;
        margin: 0 8px;
    }

    .contact-form-card-header {
        padding: 16px 12px 12px;
        gap: 8px;
    }

    .contact-form-card-icon {
        width: 36px;
        height: 36px;
    }

    .contact-form-card-icon i {
        font-size: 0.9rem;
    }

    .contact-form-card-title {
        font-size: 0.95rem;
    }

    .contact-form-card-subtitle {
        font-size: 0.75rem;
    }

    .contact-form-card-body {
        padding: 14px 12px 18px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-label {
        font-size: 0.75rem;
        gap: 4px;
    }

    .form-label i {
        font-size: 0.8rem;
    }

    .contact-form .form-control {
        padding: 8px 12px !important;
        font-size: 0.82rem;
        border-radius: 10px !important;
    }

    .contact-form .form-control::placeholder {
        font-size: 0.78rem;
    }

    .contact-form textarea.form-control {
        min-height: 80px;
    }

    .btn-submit-form {
        padding: 10px 20px;
        font-size: 0.82rem;
        gap: 8px;
        border-radius: 40px;
    }

    .btn-submit-form .btn-icon i {
        font-size: 0.9rem;
    }

    .alert-form-success {
        padding: 10px 12px;
        gap: 8px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .alert-form-success i {
        font-size: 0.95rem;
    }

    .alert-form-success strong {
        font-size: 0.8rem;
    }

    .alert-form-success span {
        font-size: 0.75rem;
    }

    .alert-close {
        font-size: 1.2rem;
    }

    .form-footer-note {
        margin-top: 12px;
        padding-top: 10px;
        gap: 6px;
    }

    .form-footer-note i {
        font-size: 0.7rem;
    }

    .form-footer-note span {
        font-size: 0.65rem;
    }

    .contact-form .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 0.75rem;
    }
}
/* ============================================
   SERVICE AREAS - PROFESSIONAL
   ============================================ */

.contact-areas {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.contact-areas::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

/* --- Top Border Glow --- */
.contact-areas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), transparent);
}

/* ============================================
   AREAS BADGE
   ============================================ */

.areas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.areas-badge i {
    font-size: 0.8rem;
}

/* ============================================
   AREAS HEADING
   ============================================ */

.areas-heading {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.areas-heading .highlight {
    color: #B9F000;
    position: relative;
}

.areas-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* ============================================
   AREAS SUBTITLE
   ============================================ */

.areas-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 28px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.areas-subtitle i {
    color: #B9F000;
    font-size: 1.1rem;
}

/* ============================================
   CITY BADGES
   ============================================ */

.areas-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-bottom: 32px;
    padding: 10px 0;
}

.area-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    color: #C0C0C0;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.area-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(185, 240, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.area-badge:hover {
    background: rgba(185, 240, 0, 0.04);
    border-color: rgba(185, 240, 0, 0.08);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(185, 240, 0, 0.05);
}

.area-badge:hover::before {
    background: #B9F000;
    box-shadow: 0 0 12px rgba(185, 240, 0, 0.3);
}

/* ============================================
   TAGLINE CARD
   ============================================ */

.areas-tagline-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(24, 24, 24, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(185, 240, 0, 0.06);
    border-radius: 16px;
    padding: 16px 32px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.areas-tagline-card:hover {
    border-color: rgba(185, 240, 0, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(185, 240, 0, 0.02);
}

.areas-tagline-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-tagline-icon i {
    color: #B9F000;
    font-size: 1.1rem;
}

.areas-tagline-text {
    color: #E0E0E0;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

.areas-tagline-text .highlight {
    color: #B9F000;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .contact-areas {
        padding: 50px 0;
    }

    .areas-heading {
        font-size: 2rem;
    }

    .areas-subtitle {
        font-size: 0.98rem;
        padding: 0 16px;
    }

    .areas-badges-wrapper {
        gap: 8px 12px;
    }

    .area-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .areas-tagline-card {
        padding: 14px 24px;
    }

    .areas-tagline-text {
        font-size: 0.95rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .contact-areas {
        padding: 40px 0;
    }

    .areas-heading {
        font-size: 1.5rem;
    }

    .areas-subtitle {
        font-size: 0.9rem;
        padding: 0 12px;
        flex-direction: column;
        gap: 4px;
    }

    .areas-subtitle i {
        font-size: 0.95rem;
    }

    .areas-badges-wrapper {
        gap: 6px 10px;
        margin-bottom: 24px;
        padding: 6px 0;
    }

    .area-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        border-radius: 30px;
    }

    .area-badge::before {
        width: 4px;
        height: 4px;
    }

    .areas-tagline-card {
        padding: 12px 20px;
        gap: 10px;
        border-radius: 12px;
        flex-direction: row;
    }

    .areas-tagline-icon {
        width: 30px;
        height: 30px;
    }

    .areas-tagline-icon i {
        font-size: 0.9rem;
    }

    .areas-tagline-text {
        font-size: 0.85rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .contact-areas {
        padding: 30px 0;
    }

    .areas-badge {
        font-size: 0.55rem;
        padding: 4px 12px;
        gap: 4px;
    }

    .areas-badge i {
        font-size: 0.6rem;
    }

    .areas-heading {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .areas-subtitle {
        font-size: 0.8rem;
        padding: 0 8px;
        line-height: 1.6;
    }

    .areas-badges-wrapper {
        gap: 4px 8px;
        margin-bottom: 20px;
    }

    .area-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        border-radius: 20px;
        gap: 4px;
    }

    .area-badge::before {
        width: 3px;
        height: 3px;
    }

    .areas-tagline-card {
        padding: 10px 14px;
        gap: 8px;
        border-radius: 10px;
    }

    .areas-tagline-icon {
        width: 24px;
        height: 24px;
    }

    .areas-tagline-icon i {
        font-size: 0.75rem;
    }

    .areas-tagline-text {
        font-size: 0.7rem;
        letter-spacing: 0.01em;
    }

    .areas-heading .highlight::after {
        height: 2px;
    }
}

/* ============================================
   SERVICE AREAS - PROFESSIONAL CARDS
   ============================================ */

.areas-home {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.areas-home::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Section Badge --- */
.areas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.areas-badge i {
    font-size: 0.8rem;
}

/* --- Section Heading --- */
.areas-heading {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.areas-heading .highlight {
    color: #B9F000;
    position: relative;
}

.areas-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* --- Section Subtitle --- */
.areas-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   AREA CARD
   ============================================ */

.area-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

/* --- Card Image --- */
.area-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.area-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image Gradient Overlay --- */
.area-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(36, 36, 36, 0.9), transparent);
    pointer-events: none;
}

/* --- Hover Overlay --- */
.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 240, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.area-card-overlay i {
    font-size: 2.5rem;
    color: #B9F000;
    transform: scale(0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Card Body --- */
.area-card-body {
    padding: 20px 24px 24px;
}

/* --- Card Title --- */
.area-card-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-card-title i {
    color: #B9F000;
    font-size: 1.1rem;
}

/* --- Card Text --- */
.area-card-text {
    color: #9A9A9A;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* --- Card Button --- */
.btn-area {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #B9F000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-area::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-area i {
    transition: all 0.3s ease;
}

.btn-area:hover {
    color: #D5FF33;
    gap: 10px;
}

.btn-area:hover::after {
    width: 100%;
}

.btn-area:hover i {
    transform: translateX(4px);
}

/* ============================================
   CARD HOVER EFFECTS
   ============================================ */

.area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.02);
}

.area-card:hover .area-card-image img {
    transform: scale(1.05);
}

.area-card:hover .area-card-overlay {
    opacity: 1;
}

.area-card:hover .area-card-overlay i {
    transform: scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .areas-home {
        padding: 50px 0;
    }

    .areas-heading {
        font-size: 2.2rem;
    }

    .area-card-image {
        height: 160px;
    }

    .area-card-body {
        padding: 18px 20px 20px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .areas-home {
        padding: 40px 0;
    }

    .areas-heading {
        font-size: 1.6rem;
    }

    .areas-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .areas-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .area-card-image {
        height: 140px;
    }

    .area-card-body {
        padding: 14px 16px 18px;
    }

    .area-card-title {
        font-size: 1rem;
    }

    .area-card-text {
        font-size: 0.85rem;
    }

    .btn-area {
        font-size: 0.8rem;
    }

    .area-card-overlay i {
        font-size: 2rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .areas-home {
        padding: 30px 0;
    }

    .areas-heading {
        font-size: 1.3rem;
    }

    .areas-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .areas-badge {
        font-size: 0.55rem;
        padding: 4px 12px;
        gap: 4px;
    }

    .areas-badge i {
        font-size: 0.6rem;
    }

    .area-card {
        border-radius: 12px;
    }

    .area-card-image {
        height: 110px;
    }

    .area-card-body {
        padding: 10px 12px 14px;
    }

    .area-card-title {
        font-size: 0.9rem;
        gap: 6px;
    }

    .area-card-title i {
        font-size: 0.9rem;
    }

    .area-card-text {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .btn-area {
        font-size: 0.75rem;
        gap: 4px;
    }

    .btn-area i {
        font-size: 0.7rem;
    }

    .area-card-overlay i {
        font-size: 1.5rem;
    }

    .areas-heading .highlight::after {
        height: 2px;
    }
}
/* ============================================
   ABOUT HERO - WITH BACKGROUND IMAGE
   ============================================ */

.about-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/about-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* --- Parallax Glow Effect --- */
.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.05), transparent 70%);
    pointer-events: none;
}

/* --- Bottom Glow Line --- */
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.2), rgba(185, 240, 0, 0.5), rgba(185, 240, 0, 0.2), transparent);
}

/* --- Hero Badge --- */
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-hero-badge i {
    font-size: 0.8rem;
}

/* --- Hero Title --- */
.about-hero-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.about-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* --- Hero Subtitle --- */
.about-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 32px;
}

/* --- Hero Stats --- */
.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #B9F000;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    color: #9A9A9A;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   ABOUT INTRO - PROFESSIONAL
   ============================================ */

.about-intro {
    background: #1a1a1a;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.about-intro::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Intro Content --- */
.about-intro-content {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Card Glow Border --- */
.about-intro-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.about-intro-content:hover::before {
    opacity: 1;
}

.about-intro-content > * {
    position: relative;
    z-index: 1;
}

/* --- Top Lime Line --- */
.about-intro-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

/* --- Quote Icon --- */
.about-intro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(185, 240, 0, 0.06);
}

.about-intro-icon i {
    color: #B9F000;
    font-size: 1.3rem;
}

/* --- Intro Text --- */
.about-intro-text {
    color: #E0E0E0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-intro-text strong {
    color: #B9F000;
    font-weight: 600;
}

/* --- Tag/Certification Badge --- */
.about-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(185, 240, 0, 0.04);
    border: 1px solid rgba(185, 240, 0, 0.06);
    border-radius: 50px;
    padding: 8px 22px;
    margin-top: 20px;
}

.about-intro-tag i {
    color: #B9F000;
    font-size: 1rem;
}

.about-intro-tag span {
    color: #B9F000;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-title {
        font-size: 2.4rem;
    }

    .about-hero-stats {
        gap: 30px 40px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-intro-content {
        padding: 32px 36px;
        margin: 0 16px;
    }

    .about-intro-text {
        font-size: 0.98rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .about-hero {
        padding: 80px 0 50px;
        background-position: center;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
        padding: 0 12px;
    }

    .about-hero-stats {
        gap: 20px 30px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .about-hero-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .about-intro {
        padding: 40px 0 50px;
    }

    .about-intro-content {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 0 12px;
    }

    .about-intro-icon {
        width: 40px;
        height: 40px;
    }

    .about-intro-icon i {
        font-size: 1.1rem;
    }

    .about-intro-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .about-intro-tag {
        padding: 6px 16px;
        gap: 8px;
    }

    .about-intro-tag i {
        font-size: 0.85rem;
    }

    .about-intro-tag span {
        font-size: 0.75rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .about-hero {
        padding: 60px 0 40px;
    }

    .about-hero-title {
        font-size: 1.4rem;
    }

    .about-hero-subtitle {
        font-size: 0.85rem;
    }

    .about-hero-stats {
        gap: 16px 20px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .about-hero-badge {
        font-size: 0.5rem;
        padding: 3px 10px;
        gap: 4px;
    }

    .about-hero-badge i {
        font-size: 0.6rem;
    }

    .about-hero-title .highlight::after {
        height: 2px;
    }

    .about-intro {
        padding: 30px 0 40px;
    }

    .about-intro-content {
        padding: 18px 14px;
        border-radius: 12px;
        margin: 0 8px;
    }

    .about-intro-content::after {
        width: 60px;
        height: 2px;
    }

    .about-intro-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
    }

    .about-intro-icon i {
        font-size: 0.9rem;
    }

    .about-intro-text {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .about-intro-tag {
        padding: 4px 12px;
        gap: 6px;
        margin-top: 14px;
    }

    .about-intro-tag i {
        font-size: 0.7rem;
    }

    .about-intro-tag span {
        font-size: 0.65rem;
    }
}
/* ============================================
   ABOUT OWNER - WITH IMAGE
   ============================================ */

.about-owner {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.about-owner::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* ============================================
   OWNER IMAGE
   ============================================ */

.owner-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.owner-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.owner-image-wrapper:hover .owner-image {
    transform: scale(1.03);
}

/* --- Image Gradient Overlay --- */
.owner-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
    pointer-events: none;
}

/* --- Image Badge --- */
.owner-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24, 24, 24, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
}

.owner-image-badge i {
    color: #B9F000;
    font-size: 1rem;
}

.owner-image-badge span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Social Overlay --- */
.owner-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.owner-image-wrapper:hover .owner-image-overlay {
    opacity: 1;
    transform: translateX(0);
}

.owner-image-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(24, 24, 24, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #9A9A9A;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(185, 240, 0, 0.12);
    border-color: rgba(185, 240, 0, 0.15);
    color: #B9F000;
    transform: scale(1.1);
}

/* ============================================
   OWNER CONTENT
   ============================================ */

.owner-content {
    padding: 0 8px;
}

.owner-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.owner-title .highlight {
    color: #B9F000;
    position: relative;
}

.owner-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.owner-text {
    color: #9A9A9A;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Credentials --- */
.owner-credentials {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.credentials-title {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C0C0C0;
    font-size: 0.88rem;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.credential-item i {
    color: #B9F000;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.credential-item:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.credential-item:hover i {
    transform: scale(1.1);
}

/* --- Owner Footer Text --- */
.owner-footer-text {
    color: #9A9A9A;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.owner-footer-text strong {
    color: #B9F000;
}

/* ============================================
   WHY CHOOSE LOCAL - PROFESSIONAL
   ============================================ */

.about-local {
    background: #222222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.about-local::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Section Header --- */
.local-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.local-title .highlight {
    color: #B9F000;
    position: relative;
}

.local-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.local-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   LOCAL CARDS
   ============================================ */

.local-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Card Number (Background) --- */
.local-card-number {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* --- Card Glow Border --- */
.local-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.local-card:hover::before {
    opacity: 1;
}

.local-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Icon --- */
.local-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.local-card-icon i {
    color: #B9F000;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.local-card:hover .local-card-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(185, 240, 0, 0.04);
}

.local-card:hover .local-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.1));
}

/* --- Card Title --- */
.local-card-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* --- Card Text --- */
.local-card-text {
    color: #9A9A9A;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Card Hover --- */
.local-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .about-owner {
        padding: 50px 0;
    }

    .owner-image {
        height: 400px;
    }

    .owner-title {
        font-size: 1.8rem;
    }

    .owner-text {
        font-size: 0.95rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
    }

    .local-title {
        font-size: 2rem;
    }

    .local-card {
        padding: 24px 20px;
    }

    .local-card-icon {
        width: 54px;
        height: 54px;
    }

    .local-card-icon i {
        font-size: 1.3rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .about-owner {
        padding: 40px 0;
    }

    .owner-image {
        height: 300px;
        border-radius: 16px;
    }

    .owner-image-wrapper {
        border-radius: 16px;
        margin: 0 12px;
    }

    .owner-image-badge {
        bottom: 14px;
        left: 14px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .owner-image-badge i {
        font-size: 0.85rem;
    }

    .owner-image-badge span {
        font-size: 0.75rem;
    }

    .owner-content {
        padding: 0 12px;
    }

    .owner-title {
        font-size: 1.5rem;
    }

    .owner-text {
        font-size: 0.9rem;
    }

    .owner-credentials {
        padding: 16px 18px;
        border-radius: 12px;
    }

    .credentials-title {
        font-size: 0.9rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .credential-item {
        font-size: 0.82rem;
        padding: 4px 0;
    }

    .credential-item i {
        font-size: 0.8rem;
    }

    .owner-footer-text {
        font-size: 0.9rem;
    }

    .owner-image-overlay {
        top: 14px;
        right: 14px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link i {
        font-size: 0.8rem;
    }

    /* --- Local Cards Mobile --- */
    .about-local {
        padding: 40px 0;
    }

    .local-title {
        font-size: 1.6rem;
    }

    .local-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .local-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .local-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .local-card-icon i {
        font-size: 1.2rem;
    }

    .local-card-title {
        font-size: 1rem;
    }

    .local-card-text {
        font-size: 0.85rem;
    }

    .local-card-number {
        font-size: 2.8rem;
        top: 4px;
        right: 8px;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .about-owner {
        padding: 30px 0;
    }

    .owner-image {
        height: 220px;
        border-radius: 12px;
    }

    .owner-image-wrapper {
        border-radius: 12px;
        margin: 0 8px;
    }

    .owner-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 4px 10px;
        gap: 4px;
    }

    .owner-image-badge i {
        font-size: 0.7rem;
    }

    .owner-image-badge span {
        font-size: 0.65rem;
    }

    .owner-content {
        padding: 0 8px;
    }

    .owner-title {
        font-size: 1.2rem;
    }

    .owner-text {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .owner-credentials {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .credentials-title {
        font-size: 0.8rem;
    }

    .credential-item {
        font-size: 0.75rem;
        padding: 3px 0;
        gap: 6px;
    }

    .credential-item i {
        font-size: 0.7rem;
    }

    .owner-footer-text {
        font-size: 0.82rem;
    }

    .owner-title .highlight::after {
        height: 2px;
    }

    .about-local {
        padding: 30px 0;
    }

    .local-title {
        font-size: 1.3rem;
    }

    .local-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .local-card {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .local-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .local-card-icon i {
        font-size: 1rem;
    }

    .local-card-title {
        font-size: 0.9rem;
    }

    .local-card-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .local-card-number {
        font-size: 2.2rem;
        top: 2px;
        right: 6px;
    }

    .local-title .highlight::after {
        height: 2px;
    }
}

/* ============================================
   MISSION SECTION - NEXT LEVEL
   ============================================ */

.about-mission {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow Effects --- */
.about-mission::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.about-mission::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

/* --- Subtle Grid Pattern --- */
.about-mission .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   MISSION BADGE
   ============================================ */

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.06);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-badge i {
    font-size: 0.8rem;
}

/* ============================================
   MISSION CARD
   ============================================ */

.mission-card {
    background: rgba(36, 36, 36, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 50px 60px 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Card Glow Border --- */
.mission-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.05), transparent 30%, transparent 70%, rgba(185, 240, 0, 0.02));
    border-radius: 25px;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 240, 0, 0.04);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(185, 240, 0, 0.02);
}

.mission-card > * {
    position: relative;
    z-index: 1;
}

/* --- Top Lime Line --- */
.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
}

/* ============================================
   QUOTE ICON
   ============================================ */

.mission-quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    border: 1px solid rgba(185, 240, 0, 0.04);
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-quote-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
}

.mission-quote-icon i {
    color: #B9F000;
    font-size: 1.4rem;
}

/* ============================================
   MISSION QUOTE
   ============================================ */

.mission-quote {
    color: #E0E0E0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    padding: 0;
    letter-spacing: 0.02em;
}

.mission-quote .highlight-text {
    color: #B9F000;
    font-weight: 600;
    position: relative;
}

.mission-quote .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.3;
}

/* ============================================
   MISSION FOOTER
   ============================================ */

.mission-footer {
    margin-top: 24px;
}

/* --- Divider with Star --- */
.mission-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.mission-divider span {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15));
}

.mission-divider i {
    color: rgba(185, 240, 0, 0.15);
    font-size: 0.8rem;
}

/* --- Tagline --- */
.mission-tagline {
    color: #6B6B6B;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin: 0;
    text-transform: uppercase;
}

/* ============================================
   MISSION TRUST BADGES
   ============================================ */

.mission-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 30px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9A9A9A;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge i {
    color: #B9F000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    color: #E0E0E0;
    transform: translateY(-2px);
}

.trust-badge:hover i {
    transform: scale(1.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .about-mission {
        padding: 60px 0;
    }

    .mission-card {
        padding: 40px 36px 32px;
        margin: 0 16px;
        border-radius: 20px;
    }

    .mission-quote {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .mission-quote-icon {
        width: 48px;
        height: 48px;
    }

    .mission-quote-icon i {
        font-size: 1.2rem;
    }

    .mission-trust-badges {
        gap: 12px 22px;
    }

    .trust-badge {
        font-size: 0.8rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .about-mission {
        padding: 40px 0;
    }

    .mission-badge {
        font-size: 0.6rem;
        padding: 4px 14px;
        gap: 4px;
    }

    .mission-badge i {
        font-size: 0.6rem;
    }

    .mission-card {
        padding: 30px 22px 24px;
        margin: 0 12px;
        border-radius: 16px;
    }

    .mission-card::after {
        width: 80px;
    }

    .mission-quote {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .mission-quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .mission-quote-icon i {
        font-size: 1rem;
    }

    .mission-divider span {
        width: 30px;
    }

    .mission-tagline {
        font-size: 0.7rem;
    }

    .mission-trust-badges {
        gap: 10px 16px;
        margin-top: 20px;
    }

    .trust-badge {
        font-size: 0.7rem;
        gap: 4px;
    }

    .trust-badge i {
        font-size: 0.7rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .about-mission {
        padding: 30px 0;
    }

    .mission-badge {
        font-size: 0.5rem;
        padding: 3px 10px;
        gap: 3px;
    }

    .mission-badge i {
        font-size: 0.5rem;
    }

    .mission-card {
        padding: 20px 14px 18px;
        margin: 0 8px;
        border-radius: 12px;
    }

    .mission-card::after {
        width: 60px;
        height: 1.5px;
    }

    .mission-quote {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .mission-quote .highlight-text::after {
        height: 1.5px;
    }

    .mission-quote-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .mission-quote-icon i {
        font-size: 0.8rem;
    }

    .mission-divider {
        gap: 10px;
    }

    .mission-divider span {
        width: 20px;
    }

    .mission-divider i {
        font-size: 0.6rem;
    }

    .mission-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .mission-trust-badges {
        gap: 6px 12px;
        margin-top: 14px;
    }

    .trust-badge {
        font-size: 0.6rem;
        gap: 4px;
    }

    .trust-badge i {
        font-size: 0.6rem;
    }

    .about-mission .container::before {
        background-size: 30px 30px;
    }
}
/* ============================================
   OUR VALUES - PROFESSIONAL
   ============================================ */

.about-values {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.about-values::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Section Header --- */
.values-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.values-title .highlight {
    color: #B9F000;
    position: relative;
}

.values-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.values-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   VALUE CARDS
   ============================================ */

.value-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Card Number (Background) --- */
.value-card-number {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* --- Card Glow Border --- */
.value-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Icon --- */
.value-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.value-card-icon i {
    color: #B9F000;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-card-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(185, 240, 0, 0.04);
}

.value-card:hover .value-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.1));
}

/* --- Card Title --- */
.value-card-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* --- Card Text --- */
.value-card-text {
    color: #9A9A9A;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Card Hover --- */
.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   CERTIFICATIONS - PROFESSIONAL
   ============================================ */

.about-certifications {
    background: #0a0a0a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.about-certifications::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

/* --- Top Border Glow --- */
.about-certifications::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.1), rgba(185, 240, 0, 0.2), rgba(185, 240, 0, 0.1), transparent);
}

/* --- Section Header --- */
.certs-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.certs-title .highlight {
    color: #B9F000;
    position: relative;
}

.certs-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.certs-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   CERTIFICATION CARDS
   ============================================ */

.cert-card {
    background: rgba(36, 36, 36, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* --- Card Glow Border --- */
.cert-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Icon --- */
.cert-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.cert-card-icon i {
    color: #B9F000;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.cert-card:hover .cert-card-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 40px rgba(185, 240, 0, 0.04);
}

.cert-card:hover .cert-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.1));
}

/* --- Card Title --- */
.cert-card-title {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

/* --- Card Text --- */
.cert-card-text {
    color: #9A9A9A;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Card Check (Bottom Right) --- */
.cert-card-check {
    position: absolute;
    bottom: 12px;
    right: 14px;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.cert-card-check i {
    color: #B9F000;
    font-size: 1.2rem;
}

.cert-card:hover .cert-card-check {
    opacity: 0.6;
    transform: scale(1.1);
}

/* --- Card Hover --- */
.cert-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   CERTIFICATIONS TAGLINE
   ============================================ */

.certs-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(185, 240, 0, 0.03);
    border: 1px solid rgba(185, 240, 0, 0.04);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.4s ease;
}

.certs-tagline:hover {
    border-color: rgba(185, 240, 0, 0.08);
    transform: translateY(-2px);
}

.certs-tagline i {
    color: #B9F000;
    font-size: 1.1rem;
}

.certs-tagline span {
    color: #9A9A9A;
    font-size: 0.9rem;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .about-values,
    .about-certifications {
        padding: 50px 0;
    }

    .values-title,
    .certs-title {
        font-size: 2rem;
    }

    .value-card {
        padding: 24px 20px 20px;
    }

    .value-card-icon {
        width: 54px;
        height: 54px;
    }

    .value-card-icon i {
        font-size: 1.3rem;
    }

    .value-card-number {
        font-size: 2.8rem;
    }

    .cert-card {
        padding: 22px 18px 20px;
    }

    .cert-card-icon {
        width: 50px;
        height: 50px;
    }

    .cert-card-icon i {
        font-size: 1.3rem;
    }

    .certs-tagline {
        padding: 10px 24px;
    }

    .certs-tagline span {
        font-size: 0.8rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .about-values,
    .about-certifications {
        padding: 40px 0;
    }

    .values-title,
    .certs-title {
        font-size: 1.6rem;
    }

    .values-subtitle,
    .certs-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .value-card {
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .value-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .value-card-icon i {
        font-size: 1.2rem;
    }

    .value-card-title {
        font-size: 1rem;
    }

    .value-card-text {
        font-size: 0.85rem;
    }

    .value-card-number {
        font-size: 2.2rem;
        top: 4px;
        right: 8px;
    }

    .cert-card {
        padding: 18px 14px 16px;
        border-radius: 14px;
    }

    .cert-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .cert-card-icon i {
        font-size: 1.1rem;
    }

    .cert-card-title {
        font-size: 0.95rem;
    }

    .cert-card-text {
        font-size: 0.8rem;
    }

    .cert-card-check i {
        font-size: 1rem;
    }

    .certs-tagline {
        padding: 8px 18px;
        gap: 8px;
        border-radius: 40px;
    }

    .certs-tagline i {
        font-size: 0.9rem;
    }

    .certs-tagline span {
        font-size: 0.7rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .about-values,
    .about-certifications {
        padding: 30px 0;
    }

    .values-title,
    .certs-title {
        font-size: 1.3rem;
    }

    .values-subtitle,
    .certs-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .value-card {
        padding: 16px 12px 14px;
        border-radius: 12px;
    }

    .value-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .value-card-icon i {
        font-size: 1rem;
    }

    .value-card-title {
        font-size: 0.9rem;
    }

    .value-card-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .value-card-number {
        font-size: 1.8rem;
        top: 2px;
        right: 6px;
    }

    .cert-card {
        padding: 14px 10px 12px;
        border-radius: 12px;
    }

    .cert-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .cert-card-icon i {
        font-size: 0.9rem;
    }

    .cert-card-title {
        font-size: 0.82rem;
    }

    .cert-card-text {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .cert-card-check i {
        font-size: 0.8rem;
    }

    .cert-card-check {
        bottom: 8px;
        right: 10px;
    }

    .certs-tagline {
        padding: 6px 14px;
        gap: 6px;
        border-radius: 30px;
    }

    .certs-tagline i {
        font-size: 0.7rem;
    }

    .certs-tagline span {
        font-size: 0.6rem;
    }

    .values-title .highlight::after,
    .certs-title .highlight::after {
        height: 2px;
    }
}
/* ============================================
   BLOG HERO - WITH BACKGROUND
   ============================================ */

.blog-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/blog-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

/* --- Glow Effect --- */
.blog-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

/* --- Bottom Glow Line --- */
.blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

/* --- Hero Title --- */
.blog-hero-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.blog-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

/* --- Hero Subtitle --- */
.blog-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   BLOG GRID
   ============================================ */

.blog-grid {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.blog-grid::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* ============================================
   BLOG CARD
   ============================================ */

.blog-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

/* --- Card Glow Border --- */
.blog-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Image --- */
.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #1a1a1a;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image Placeholder --- */
.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #6B6B6B;
}

.blog-card-image-placeholder i {
    font-size: 3rem;
}

/* --- Image Gradient Overlay --- */
.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(36, 36, 36, 0.9), transparent);
    pointer-events: none;
}

/* --- Hover Overlay --- */
.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 240, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.blog-card-overlay i {
    font-size: 2.5rem;
    color: #B9F000;
    transform: scale(0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card:hover .blog-card-overlay i {
    transform: scale(1);
}

/* --- Image Zoom on Hover --- */
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* ============================================
   BLOG CARD BODY
   ============================================ */

.blog-card-body {
    padding: 22px 24px 26px;
}

/* --- Date --- */
.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6B6B6B;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.blog-card-date i {
    color: #B9F000;
    font-size: 0.85rem;
}

/* --- Title --- */
.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-title a:hover {
    color: #B9F000;
}

/* --- Excerpt --- */
.blog-card-excerpt {
    color: #9A9A9A;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* --- Read More Button --- */
.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #B9F000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.blog-card-btn i {
    transition: all 0.3s ease;
}

.blog-card-btn:hover {
    color: #D5FF33;
    gap: 10px;
}

.blog-card-btn:hover::after {
    width: 100%;
}

.blog-card-btn:hover i {
    transform: translateX(4px);
}

/* --- Card Hover --- */
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   BLOG EMPTY STATE
   ============================================ */

.blog-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.blog-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(185, 240, 0, 0.04);
}

.blog-empty-icon i {
    color: #6B6B6B;
    font-size: 2.5rem;
}

.blog-empty-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.blog-empty-text {
    color: #9A9A9A;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .blog-hero {
        padding: 80px 0 50px;
    }

    .blog-hero-title {
        font-size: 2.4rem;
    }

    .blog-grid {
        padding: 50px 0;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-body {
        padding: 18px 20px 22px;
    }

    .blog-card-title {
        font-size: 1.05rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .blog-hero {
        padding: 60px 0 40px;
        background-position: center;
    }

    .blog-hero-title {
        font-size: 1.8rem;
    }

    .blog-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .blog-grid {
        padding: 40px 0;
    }

    .blog-card-image {
        height: 160px;
    }

    .blog-card-body {
        padding: 16px 18px 20px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-excerpt {
        font-size: 0.85rem;
    }

    .blog-card-btn {
        font-size: 0.8rem;
    }

    .blog-card-overlay i {
        font-size: 2rem;
    }

    .blog-empty-state {
        padding: 50px 16px;
    }

    .blog-empty-icon {
        width: 64px;
        height: 64px;
    }

    .blog-empty-icon i {
        font-size: 2rem;
    }

    .blog-empty-title {
        font-size: 1.2rem;
    }

    .blog-empty-text {
        font-size: 0.9rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .blog-hero {
        padding: 50px 0 30px;
    }

    .blog-hero-title {
        font-size: 1.4rem;
    }

    .blog-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .blog-grid {
        padding: 30px 0;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-card-image {
        height: 130px;
    }

    .blog-card-image-placeholder i {
        font-size: 2rem;
    }

    .blog-card-body {
        padding: 12px 14px 16px;
    }

    .blog-card-date {
        font-size: 0.7rem;
    }

    .blog-card-date i {
        font-size: 0.7rem;
    }

    .blog-card-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .blog-card-excerpt {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .blog-card-btn {
        font-size: 0.75rem;
        gap: 4px;
    }

    .blog-card-btn i {
        font-size: 0.7rem;
    }

    .blog-card-overlay i {
        font-size: 1.5rem;
    }

    .blog-hero-title .highlight::after {
        height: 2px;
    }

    .blog-empty-state {
        padding: 30px 12px;
        border-radius: 12px;
    }

    .blog-empty-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .blog-empty-icon i {
        font-size: 1.5rem;
    }

    .blog-empty-title {
        font-size: 1rem;
    }

    .blog-empty-text {
        font-size: 0.8rem;
    }
}
/* ============================================
   BLOG SINGLE - NEXT LEVEL
   ============================================ */

.blog-single {
    background: #1a1a1a;
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

/* --- Background Glow --- */
.blog-single::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* ============================================
   BACK BUTTON
   ============================================ */

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9A9A9A;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.blog-back-btn i {
    transition: all 0.3s ease;
}

.blog-back-btn:hover {
    color: #B9F000;
}

.blog-back-btn:hover i {
    transform: translateX(-4px);
}

/* ============================================
   BLOG HEADER
   ============================================ */

.blog-single-header {
    margin-bottom: 28px;
}

/* --- Meta Info --- */
.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-bottom: 12px;
}

.blog-single-date,
.blog-single-tag,
.blog-single-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6B6B6B;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-single-date i,
.blog-single-tag i,
.blog-single-read-time i {
    color: #B9F000;
    font-size: 0.9rem;
}

.blog-single-tag {
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-single-tag i {
    color: #B9F000;
    font-size: 0.7rem;
}

/* --- Title --- */
.blog-single-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ============================================
   FEATURED IMAGE
   ============================================ */

.blog-single-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.blog-single-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-single-image-wrapper:hover .blog-single-image {
    transform: scale(1.02);
}

/* --- Image Gradient Overlay --- */
.blog-single-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
    pointer-events: none;
}

/* --- Image Caption --- */
.blog-single-image-caption {
    position: absolute;
    bottom: 16px;
    left: 24px;
    right: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
    z-index: 1;
}

/* ============================================
   BLOG CONTENT
   ============================================ */

.blog-single-content {
    color: #E0E0E0;
    font-size: 1.05rem;
    line-height: 1.9;
    padding: 0 4px;
}

/* --- Headings --- */
.blog-single-content h2 {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-single-content h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.blog-single-content h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

/* --- Paragraphs --- */
.blog-single-content p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.blog-single-content p strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* --- Lists --- */
.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.blog-single-content li {
    margin-bottom: 0.6rem;
    line-height: 1.8;
}

.blog-single-content ul li::marker {
    color: #B9F000;
}

/* --- Links --- */
.blog-single-content a {
    color: #B9F000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-single-content a:hover {
    color: #D5FF33;
    text-decoration: underline;
}

/* --- Blockquote --- */
.blog-single-content blockquote {
    border-left: 4px solid #B9F000;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(185, 240, 0, 0.03);
    border-radius: 0 12px 12px 0;
    color: #C0C0C0;
    font-style: italic;
    font-size: 1.1rem;
}

.blog-single-content blockquote p {
    margin-bottom: 0;
}

/* --- Horizontal Rule --- */
.blog-single-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.1), rgba(185, 240, 0, 0.2), rgba(185, 240, 0, 0.1), transparent);
    margin: 32px 0;
}

/* --- Images in Content --- */
.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* --- Tables --- */
.blog-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.blog-single-content table th {
    background: rgba(185, 240, 0, 0.06);
    color: #FFFFFF;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-single-content table td {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #C0C0C0;
}

/* ============================================
   SHARE SECTION
   ============================================ */

.blog-single-share {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.blog-single-share-label {
    color: #9A9A9A;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-single-share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #9A9A9A;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.share-icon i {
    font-size: 1rem;
}

.share-icon:hover {
    transform: translateY(-3px);
}

.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #FFFFFF;
}

.share-twitter:hover {
    background: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.share-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #FFFFFF;
}

.share-email:hover {
    background: #ea4335;
    border-color: #ea4335;
    color: #FFFFFF;
}

.share-copy:hover {
    background: #B9F000;
    border-color: #B9F000;
    color: #070707;
}

/* ============================================
   NAVIGATION
   ============================================ */

.blog-single-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9A9A9A;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.blog-nav-btn i {
    transition: all 0.3s ease;
}

.blog-nav-btn:hover {
    color: #B9F000;
    border-color: rgba(185, 240, 0, 0.06);
}

.blog-nav-prev:hover i {
    transform: translateX(-4px);
}

.blog-nav-next:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .blog-single {
        padding: 30px 0 50px;
    }

    .blog-single-title {
        font-size: 2rem;
    }

    .blog-single-content {
        font-size: 1rem;
        padding: 0;
    }

    .blog-single-content h2 {
        font-size: 1.7rem;
    }

    .blog-single-content h3 {
        font-size: 1.3rem;
    }

    .blog-single-image-wrapper {
        border-radius: 16px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .blog-single {
        padding: 20px 0 40px;
    }

    .blog-back-btn {
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    .blog-single-meta {
        gap: 8px 14px;
    }

    .blog-single-date,
    .blog-single-read-time {
        font-size: 0.78rem;
    }

    .blog-single-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .blog-single-title {
        font-size: 1.6rem;
    }

    .blog-single-image-wrapper {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .blog-single-image-caption {
        font-size: 0.7rem;
        bottom: 10px;
        left: 14px;
        right: 14px;
    }

    .blog-single-content {
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .blog-single-content h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .blog-single-content h3 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }

    .blog-single-content h4 {
        font-size: 1rem;
    }

    .blog-single-content blockquote {
        padding: 12px 16px;
        font-size: 0.95rem;
        margin: 16px 0;
    }

    .blog-single-share {
        gap: 12px;
        padding-top: 20px;
    }

    .blog-single-share-label {
        font-size: 0.78rem;
    }

    .share-icon {
        width: 34px;
        height: 34px;
    }

    .share-icon i {
        font-size: 0.85rem;
    }

    .blog-single-nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
        padding-top: 18px;
    }

    .blog-nav-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.82rem;
        padding: 8px 14px;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .blog-single {
        padding: 16px 0 30px;
    }

    .blog-single-title {
        font-size: 1.3rem;
    }

    .blog-single-meta {
        gap: 6px 10px;
    }

    .blog-single-date,
    .blog-single-read-time {
        font-size: 0.7rem;
    }

    .blog-single-tag {
        font-size: 0.6rem;
        padding: 2px 8px;
    }

    .blog-single-content {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .blog-single-content h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .blog-single-content h3 {
        font-size: 1rem;
        margin-top: 1.2rem;
    }

    .blog-single-content h4 {
        font-size: 0.9rem;
    }

    .blog-single-content ul,
    .blog-single-content ol {
        padding-left: 1rem;
    }

    .blog-single-content li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .blog-single-content blockquote {
        padding: 10px 12px;
        font-size: 0.82rem;
        margin: 12px 0;
    }

    .blog-single-image-wrapper {
        border-radius: 10px;
    }

    .blog-single-image-caption {
        font-size: 0.6rem;
        bottom: 8px;
        left: 10px;
        right: 10px;
    }

    .blog-single-share {
        gap: 8px;
        padding-top: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-single-share-icons {
        gap: 6px;
    }

    .share-icon {
        width: 30px;
        height: 30px;
    }

    .share-icon i {
        font-size: 0.75rem;
    }

    .blog-nav-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
/* ============================================
   GALLERY HERO
   ============================================ */

.gallery-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/gallery-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.gallery-hero-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

.gallery-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.gallery-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.gallery-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-grid {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.gallery-grid::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* ============================================
   GALLERY CARD
   ============================================ */

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card > * {
    position: relative;
    z-index: 1;
}

.gallery-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* --- Image --- */
.gallery-card-image {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: 1 / 1;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.08);
}

/* --- Overlay --- */
.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 240, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

.gallery-card-overlay i {
    font-size: 2.5rem;
    color: #B9F000;
    transform: scale(0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-card-overlay i {
    transform: scale(1);
}

/* --- Card Body --- */
.gallery-card-body {
    padding: 16px 18px 18px;
    background: #242424;
}

.gallery-card-title {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.gallery-card-text {
    color: #9A9A9A;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   GALLERY EMPTY STATE
   ============================================ */

.gallery-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.gallery-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(185, 240, 0, 0.04);
}

.gallery-empty-icon i {
    color: #6B6B6B;
    font-size: 2.5rem;
}

.gallery-empty-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-empty-text {
    color: #9A9A9A;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .gallery-hero {
        padding: 80px 0 50px;
    }

    .gallery-hero-title {
        font-size: 2.4rem;
    }

    .gallery-grid {
        padding: 50px 0;
    }

    .gallery-card-body {
        padding: 14px 16px 16px;
    }

    .gallery-card-title {
        font-size: 0.95rem;
    }

    .gallery-card-overlay i {
        font-size: 2rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .gallery-hero {
        padding: 60px 0 40px;
    }

    .gallery-hero-title {
        font-size: 1.8rem;
    }

    .gallery-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .gallery-grid {
        padding: 40px 0;
    }

    .gallery-card-body {
        padding: 12px 14px 14px;
    }

    .gallery-card-title {
        font-size: 0.9rem;
    }

    .gallery-card-text {
        font-size: 0.78rem;
    }

    .gallery-card-overlay i {
        font-size: 1.8rem;
    }

    /* 2 columns on small screens */
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-empty-state {
        padding: 50px 16px;
    }

    .gallery-empty-icon {
        width: 64px;
        height: 64px;
    }

    .gallery-empty-icon i {
        font-size: 2rem;
    }

    .gallery-empty-title {
        font-size: 1.2rem;
    }

    .gallery-empty-text {
        font-size: 0.9rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .gallery-hero {
        padding: 50px 0 30px;
    }

    .gallery-hero-title {
        font-size: 1.4rem;
    }

    .gallery-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .gallery-grid {
        padding: 30px 0;
    }

    .gallery-card {
        border-radius: 12px;
    }

    .gallery-card-body {
        padding: 10px 12px 12px;
    }

    .gallery-card-title {
        font-size: 0.8rem;
    }

    .gallery-card-text {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .gallery-card-overlay i {
        font-size: 1.5rem;
    }

    /* Single column on extra small */
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gallery-empty-state {
        padding: 30px 12px;
        border-radius: 12px;
    }

    .gallery-empty-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .gallery-empty-icon i {
        font-size: 1.5rem;
    }

    .gallery-empty-title {
        font-size: 1rem;
    }

    .gallery-empty-text {
        font-size: 0.8rem;
    }

    .gallery-hero-title .highlight::after {
        height: 2px;
    }
}
/* ============================================
   ESTIMATE HERO - WITH BACKGROUND
   ============================================ */

.estimate-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/estimate-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.estimate-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.estimate-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.estimate-hero-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

.estimate-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.estimate-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.estimate-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Hero Stats --- */
.estimate-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    margin-top: 28px;
}

.estimate-hero-stats .stat-item {
    text-align: center;
}

.estimate-hero-stats .stat-number {
    display: block;
    color: #B9F000;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.estimate-hero-stats .stat-label {
    color: #6B6B6B;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   ESTIMATE OPTIONS
   ============================================ */

.estimate-options {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.estimate-options::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.estimate-options-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.estimate-options-title .highlight {
    color: #B9F000;
    position: relative;
}

.estimate-options-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.estimate-options-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   ESTIMATE OPTION CARDS
   ============================================ */

.estimate-option-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.estimate-option-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.estimate-option-card:hover::before {
    opacity: 1;
}

.estimate-option-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Number --- */
.estimate-option-number {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* --- Icon --- */
.estimate-option-icon {
    width: 64px;
    height: 64px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.estimate-option-icon i {
    color: #B9F000;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.estimate-option-card:hover .estimate-option-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
}

.estimate-option-card:hover .estimate-option-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.1));
}

/* --- Title --- */
.estimate-option-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

/* --- Text --- */
.estimate-option-text {
    color: #9A9A9A;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* --- Button --- */
.estimate-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B9F000;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
    transition: all 0.3s ease;
}

.estimate-option-btn i {
    transition: all 0.3s ease;
}

.estimate-option-btn:hover {
    background: #B9F000;
    color: #070707;
    border-color: #B9F000;
    transform: translateY(-2px);
}

.estimate-option-btn:hover i {
    color: #070707;
}

/* --- Card Hover --- */
.estimate-option-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   ESTIMATE FORM SECTION
   ============================================ */

.estimate-form-section {
    background: #222222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.estimate-form-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Form Card --- */
.estimate-form-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.estimate-form-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.estimate-form-card:hover::before {
    opacity: 1;
}

.estimate-form-card > * {
    position: relative;
    z-index: 1;
}

.estimate-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

/* --- Card Header --- */
.estimate-form-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 34px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.estimate-form-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 240, 0, 0.06);
    transition: all 0.3s ease;
}

.estimate-form-card-icon i {
    color: #B9F000;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.estimate-form-card:hover .estimate-form-card-icon {
    background: rgba(185, 240, 0, 0.12);
}

.estimate-form-card:hover .estimate-form-card-icon i {
    transform: scale(1.1);
}

.estimate-form-card-title-group {
    flex: 1;
}

.estimate-form-card-title {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.estimate-form-card-subtitle {
    color: #9A9A9A;
    font-size: 0.92rem;
    margin: 0;
}

/* --- Card Body --- */
.estimate-form-card-body {
    padding: 30px 34px 34px;
}

/* --- Form Note --- */
.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B6B6B;
    font-size: 0.85rem;
    margin-bottom: 16px;
    padding: 10px 16px;
    background: rgba(185, 240, 0, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(185, 240, 0, 0.03);
}

.form-note i {
    color: #B9F000;
    font-size: 1rem;
}

.form-note strong {
    color: #B9F000;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .estimate-hero {
        padding: 80px 0 50px;
    }

    .estimate-hero-title {
        font-size: 2.4rem;
    }

    .estimate-options {
        padding: 50px 0;
    }

    .estimate-options-title {
        font-size: 2rem;
    }

    .estimate-option-card {
        padding: 24px 20px 22px;
    }

    .estimate-option-icon {
        width: 54px;
        height: 54px;
    }

    .estimate-option-icon i {
        font-size: 1.3rem;
    }

    .estimate-form-section {
        padding: 50px 0;
    }

    .estimate-form-card-header {
        padding: 24px 28px 18px;
    }

    .estimate-form-card-body {
        padding: 24px 28px 28px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .estimate-hero {
        padding: 60px 0 40px;
    }

    .estimate-hero-title {
        font-size: 1.8rem;
    }

    .estimate-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .estimate-hero-stats {
        gap: 20px 30px;
    }

    .estimate-hero-stats .stat-number {
        font-size: 1.2rem;
    }

    .estimate-hero-stats .stat-label {
        font-size: 0.65rem;
    }

    .estimate-options {
        padding: 40px 0;
    }

    .estimate-options-title {
        font-size: 1.6rem;
    }

    .estimate-options-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .estimate-option-card {
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .estimate-option-number {
        font-size: 2.2rem;
        top: 4px;
        right: 8px;
    }

    .estimate-option-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .estimate-option-icon i {
        font-size: 1.2rem;
    }

    .estimate-option-title {
        font-size: 1rem;
    }

    .estimate-option-text {
        font-size: 0.85rem;
    }

    .estimate-option-btn {
        font-size: 0.82rem;
        padding: 6px 14px;
    }

    .estimate-form-section {
        padding: 40px 0;
    }

    .estimate-form-card {
        border-radius: 16px;
        margin: 0 12px;
    }

    .estimate-form-card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px 16px;
        gap: 12px;
    }

    .estimate-form-card-icon {
        width: 44px;
        height: 44px;
    }

    .estimate-form-card-icon i {
        font-size: 1.1rem;
    }

    .estimate-form-card-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .estimate-form-card-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .estimate-form-card-body {
        padding: 20px 18px 22px;
    }

    .form-note {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .btn-submit-form {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .form-footer-note {
        margin-top: 16px;
        padding-top: 14px;
    }

    .form-footer-note span {
        font-size: 0.75rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .estimate-hero {
        padding: 50px 0 30px;
    }

    .estimate-hero-title {
        font-size: 1.4rem;
    }

    .estimate-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .estimate-hero-stats {
        gap: 16px 20px;
        margin-top: 20px;
    }

    .estimate-hero-stats .stat-number {
        font-size: 1rem;
    }

    .estimate-hero-stats .stat-label {
        font-size: 0.55rem;
    }

    .estimate-options {
        padding: 30px 0;
    }

    .estimate-options-title {
        font-size: 1.3rem;
    }

    .estimate-options-subtitle {
        font-size: 0.85rem;
    }

    .estimate-option-card {
        padding: 16px 12px 14px;
        border-radius: 12px;
    }

    .estimate-option-number {
        font-size: 1.8rem;
        top: 2px;
        right: 6px;
    }

    .estimate-option-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .estimate-option-icon i {
        font-size: 1rem;
    }

    .estimate-option-title {
        font-size: 0.9rem;
    }

    .estimate-option-text {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }

    .estimate-option-btn {
        font-size: 0.7rem;
        padding: 4px 12px;
        gap: 4px;
    }

    .estimate-option-btn i {
        font-size: 0.7rem;
    }

    .estimate-form-section {
        padding: 30px 0;
    }

    .estimate-form-card {
        border-radius: 12px;
        margin: 0 8px;
    }

    .estimate-form-card-header {
        padding: 14px 12px 10px;
        gap: 8px;
    }

    .estimate-form-card-icon {
        width: 36px;
        height: 36px;
    }

    .estimate-form-card-icon i {
        font-size: 0.9rem;
    }

    .estimate-form-card-title {
        font-size: 0.95rem;
    }

    .estimate-form-card-subtitle {
        font-size: 0.75rem;
    }

    .estimate-form-card-body {
        padding: 14px 12px 18px;
    }

    .form-note {
        font-size: 0.7rem;
        padding: 6px 10px;
        flex-wrap: wrap;
    }

    .form-note i {
        font-size: 0.8rem;
    }

    .btn-submit-form {
        padding: 10px 20px;
        font-size: 0.82rem;
        gap: 8px;
    }

    .btn-submit-form .btn-icon i {
        font-size: 0.9rem;
    }

    .form-footer-note {
        margin-top: 12px;
        padding-top: 10px;
        gap: 6px;
    }

    .form-footer-note i {
        font-size: 0.7rem;
    }

    .form-footer-note span {
        font-size: 0.65rem;
    }

    .estimate-hero-title .highlight::after {
        height: 2px;
    }

    .estimate-options-title .highlight::after {
        height: 2px;
    }
}
/* ============================================
   SERVICES HERO - WITH BACKGROUND IMAGE
   ============================================ */

.services-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/services-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.services-hero-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

.services-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.services-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.services-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Hero Stats --- */
.services-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    margin-top: 28px;
}

.services-hero-stats .stat-item {
    text-align: center;
}

.services-hero-stats .stat-number {
    display: block;
    color: #B9F000;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.services-hero-stats .stat-label {
    color: #6B6B6B;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-grid::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* ============================================
   SERVICE CARD
   ============================================ */

.service-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Image --- */
.service-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #1a1a1a;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image Gradient Overlay --- */
.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(36, 36, 36, 0.9), transparent);
    pointer-events: none;
}

/* --- Hover Overlay --- */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 240, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.service-card-overlay i {
    font-size: 2.5rem;
    color: #B9F000;
    transform: scale(0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover .service-card-overlay i {
    transform: scale(1);
}

/* --- Image Zoom --- */
.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* --- Card Body --- */
.service-card-body {
    padding: 22px 24px 26px;
    text-align: center;
}

/* --- Icon --- */
.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 14px;
    border: 2px solid rgba(185, 240, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card-icon i {
    color: #B9F000;
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
    border-color: rgba(185, 240, 0, 0.12);
}

.service-card:hover .service-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.1));
}

/* --- Title --- */
.service-card-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* --- Text --- */
.service-card-text {
    color: #9A9A9A;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* --- Button --- */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #B9F000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-service::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-service i {
    transition: all 0.3s ease;
}

.btn-service:hover {
    color: #D5FF33;
    gap: 10px;
}

.btn-service:hover::after {
    width: 100%;
}

.btn-service:hover i {
    transform: translateX(4px);
}

/* --- Card Hover --- */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   SERVICES CTA
   ============================================ */

.services-cta {
    background: #0a0a0a;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.services-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.06);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-cta-badge i {
    font-size: 0.7rem;
}

.services-cta-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.services-cta-title .highlight {
    color: #B9F000;
    position: relative;
}

.services-cta-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.services-cta-text {
    color: #9A9A9A;
    font-size: 1.1rem;
    margin: 0;
}

.services-cta-text strong {
    color: #B9F000;
}

/* --- CTA Button --- */
.btn-cta-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B9F000;
    color: #070707;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.btn-cta-services:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-cta-services i {
    transition: all 0.3s ease;
}

.btn-cta-services:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .services-hero {
        padding: 80px 0 50px;
    }

    .services-hero-title {
        font-size: 2.4rem;
    }

    .services-grid {
        padding: 50px 0;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-body {
        padding: 18px 20px 22px;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
    }

    .service-card-icon i {
        font-size: 1.2rem;
    }

    .services-cta-title {
        font-size: 1.8rem;
    }

    .btn-cta-services {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .services-hero {
        padding: 60px 0 40px;
    }

    .services-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .services-hero-stats {
        gap: 20px 30px;
    }

    .services-hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .services-hero-stats .stat-label {
        font-size: 0.65rem;
    }

    .services-grid {
        padding: 40px 0;
    }

    .service-card-image {
        height: 160px;
    }

    .service-card-body {
        padding: 16px 18px 18px;
    }

    .service-card-icon {
        width: 44px;
        height: 44px;
        margin: -34px auto 10px;
    }

    .service-card-icon i {
        font-size: 1.1rem;
    }

    .service-card-title {
        font-size: 1rem;
    }

    .service-card-text {
        font-size: 0.85rem;
    }

    .btn-service {
        font-size: 0.8rem;
    }

    .service-card-overlay i {
        font-size: 2rem;
    }

    .services-cta {
        padding: 40px 0;
        text-align: center;
    }

    .services-cta-title {
        font-size: 1.5rem;
    }

    .services-cta-text {
        font-size: 0.95rem;
    }

    .btn-cta-services {
        margin-top: 12px;
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .services-cta .col-lg-8 {
        text-align: center;
    }

    .services-cta .col-lg-4 {
        text-align: center !important;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .services-hero {
        padding: 50px 0 30px;
    }

    .services-hero-title {
        font-size: 1.4rem;
    }

    .services-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .services-hero-stats {
        gap: 16px 20px;
        margin-top: 20px;
    }

    .services-hero-stats .stat-number {
        font-size: 1.2rem;
    }

    .services-hero-stats .stat-label {
        font-size: 0.55rem;
    }

    .services-grid {
        padding: 30px 0;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-card-image {
        height: 130px;
    }

    .service-card-body {
        padding: 12px 14px 16px;
    }

    .service-card-icon {
        width: 36px;
        height: 36px;
        margin: -28px auto 8px;
    }

    .service-card-icon i {
        font-size: 0.9rem;
    }

    .service-card-title {
        font-size: 0.9rem;
    }

    .service-card-text {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .btn-service {
        font-size: 0.75rem;
        gap: 4px;
    }

    .btn-service i {
        font-size: 0.7rem;
    }

    .service-card-overlay i {
        font-size: 1.5rem;
    }

    .services-hero-title .highlight::after {
        height: 2px;
    }

    .services-cta {
        padding: 30px 0;
    }

    .services-cta-title {
        font-size: 1.2rem;
    }

    .services-cta-text {
        font-size: 0.82rem;
    }

    .services-cta-badge {
        font-size: 0.55rem;
        padding: 3px 12px;
    }

    .btn-cta-services {
        padding: 10px 24px;
        font-size: 0.8rem;
        max-width: 220px;
        gap: 6px;
    }

    .btn-cta-services i {
        font-size: 0.8rem;
    }
}
/* ============================================
   SERVICE AREAS HERO - WITH BACKGROUND IMAGE
   ============================================ */

.areas-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/areas-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.areas-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.areas-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.areas-hero-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

.areas-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.areas-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.areas-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Hero Stats --- */
.areas-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    margin-top: 28px;
}

.areas-hero-stats .stat-item {
    text-align: center;
}

.areas-hero-stats .stat-number {
    display: block;
    color: #B9F000;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.areas-hero-stats .stat-label {
    color: #6B6B6B;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   AREAS GRID
   ============================================ */

.areas-grid {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.areas-grid::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.areas-grid-intro {
    display: inline-block;
    color: #9A9A9A;
    font-size: 1.1rem;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.01);
}

/* ============================================
   AREA CARD
   ============================================ */

.area-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.area-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.area-card:hover::before {
    opacity: 1;
}

.area-card > * {
    position: relative;
    z-index: 1;
}

/* --- Card Image --- */
.area-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: #1a1a1a;
}

.area-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image Gradient Overlay --- */
.area-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(36, 36, 36, 0.9), transparent);
    pointer-events: none;
}

/* --- Hover Overlay --- */
.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 240, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.area-card-overlay i {
    font-size: 2.5rem;
    color: #B9F000;
    transform: scale(0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.area-card:hover .area-card-overlay {
    opacity: 1;
}

.area-card:hover .area-card-overlay i {
    transform: scale(1);
}

/* --- Image Zoom --- */
.area-card:hover .area-card-image img {
    transform: scale(1.05);
}

/* --- Card Body --- */
.area-card-body {
    padding: 20px 24px 24px;
    text-align: center;
}

/* --- Icon --- */
.area-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 12px;
    border: 2px solid rgba(185, 240, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.area-card-icon i {
    color: #B9F000;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.area-card:hover .area-card-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
    border-color: rgba(185, 240, 0, 0.12);
}

.area-card:hover .area-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.1));
}

/* --- Title --- */
.area-card-title {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

/* --- Text --- */
.area-card-text {
    color: #9A9A9A;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* --- Button --- */
.btn-area {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #B9F000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-area::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-area i {
    transition: all 0.3s ease;
}

.btn-area:hover {
    color: #D5FF33;
    gap: 10px;
}

.btn-area:hover::after {
    width: 100%;
}

.btn-area:hover i {
    transform: translateX(4px);
}

/* --- Card Hover --- */
.area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(185, 240, 0, 0.02);
}

/* ============================================
   AREAS CTA
   ============================================ */

.areas-cta {
    background: #0a0a0a;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

.areas-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.areas-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.06);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.areas-cta-badge i {
    font-size: 0.7rem;
}

.areas-cta-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.areas-cta-title .highlight {
    color: #B9F000;
    position: relative;
}

.areas-cta-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.areas-cta-text {
    color: #9A9A9A;
    font-size: 1.1rem;
    margin: 0;
}

.areas-cta-text strong {
    color: #B9F000;
}

/* --- CTA Button --- */
.btn-cta-areas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B9F000;
    color: #070707;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.btn-cta-areas:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-cta-areas i {
    transition: all 0.3s ease;
}

.btn-cta-areas:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .areas-hero {
        padding: 80px 0 50px;
    }

    .areas-hero-title {
        font-size: 2.4rem;
    }

    .areas-grid {
        padding: 50px 0;
    }

    .area-card-image {
        height: 160px;
    }

    .area-card-body {
        padding: 18px 20px 20px;
    }

    .area-card-icon {
        width: 42px;
        height: 42px;
        margin: -26px auto 10px;
    }

    .area-card-icon i {
        font-size: 1rem;
    }

    .areas-cta-title {
        font-size: 1.8rem;
    }

    .btn-cta-areas {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .areas-hero {
        padding: 60px 0 40px;
    }

    .areas-hero-title {
        font-size: 1.8rem;
    }

    .areas-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .areas-hero-stats {
        gap: 20px 30px;
    }

    .areas-hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .areas-hero-stats .stat-label {
        font-size: 0.65rem;
    }

    .areas-grid {
        padding: 40px 0;
    }

    .areas-grid-intro {
        font-size: 0.95rem;
        padding: 8px 20px;
    }

    .area-card-image {
        height: 140px;
    }

    .area-card-body {
        padding: 14px 16px 18px;
    }

    .area-card-icon {
        width: 38px;
        height: 38px;
        margin: -22px auto 8px;
    }

    .area-card-icon i {
        font-size: 0.9rem;
    }

    .area-card-title {
        font-size: 0.95rem;
    }

    .area-card-text {
        font-size: 0.82rem;
        margin-bottom: 10px;
    }

    .btn-area {
        font-size: 0.8rem;
    }

    .area-card-overlay i {
        font-size: 2rem;
    }

    .areas-cta {
        padding: 40px 0;
        text-align: center;
    }

    .areas-cta-title {
        font-size: 1.5rem;
    }

    .areas-cta-text {
        font-size: 0.95rem;
    }

    .btn-cta-areas {
        margin-top: 12px;
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .areas-cta .col-lg-8 {
        text-align: center;
    }

    .areas-cta .col-lg-4 {
        text-align: center !important;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .areas-hero {
        padding: 50px 0 30px;
    }

    .areas-hero-title {
        font-size: 1.4rem;
    }

    .areas-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .areas-hero-stats {
        gap: 16px 20px;
        margin-top: 20px;
    }

    .areas-hero-stats .stat-number {
        font-size: 1.2rem;
    }

    .areas-hero-stats .stat-label {
        font-size: 0.55rem;
    }

    .areas-grid {
        padding: 30px 0;
    }

    .areas-grid-intro {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .area-card {
        border-radius: 12px;
    }

    .area-card-image {
        height: 110px;
    }

    .area-card-body {
        padding: 10px 12px 14px;
    }

    .area-card-icon {
        width: 32px;
        height: 32px;
        margin: -18px auto 6px;
    }

    .area-card-icon i {
        font-size: 0.75rem;
    }

    .area-card-title {
        font-size: 0.85rem;
    }

    .area-card-text {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .btn-area {
        font-size: 0.7rem;
        gap: 4px;
    }

    .btn-area i {
        font-size: 0.65rem;
    }

    .area-card-overlay i {
        font-size: 1.5rem;
    }

    .areas-hero-title .highlight::after {
        height: 2px;
    }

    .areas-cta {
        padding: 30px 0;
    }

    .areas-cta-title {
        font-size: 1.2rem;
    }

    .areas-cta-text {
        font-size: 0.82rem;
    }

    .areas-cta-badge {
        font-size: 0.55rem;
        padding: 3px 12px;
    }

    .btn-cta-areas {
        padding: 10px 24px;
        font-size: 0.8rem;
        max-width: 220px;
        gap: 6px;
    }

    .btn-cta-areas i {
        font-size: 0.8rem;
    }
}
/* ============================================
   LOCATION HERO - WITH BACKGROUND IMAGE
   ============================================ */

.location-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/locations/location-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.location-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.location-hero-title {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

/* --- Hero Stats --- */
.location-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    margin-top: 20px;
}

.location-hero-stats .stat-item {
    text-align: center;
}

.location-hero-stats .stat-number {
    display: block;
    color: #B9F000;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.location-hero-stats .stat-label {
    color: #6B6B6B;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   LOCATION CONTENT CARD
   ============================================ */

.location-content {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.location-content::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.location-content-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-content-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.location-content-card:hover::before {
    opacity: 1;
}

.location-content-card > * {
    position: relative;
    z-index: 1;
}

.location-content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

.location-content-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(185, 240, 0, 0.06);
}

.location-content-icon i {
    color: #B9F000;
    font-size: 1.3rem;
}

.location-content-body {
    color: #E0E0E0;
    font-size: 1.05rem;
    line-height: 1.9;
}

.location-content-body p {
    margin-bottom: 16px;
}

.location-content-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   LOCATION SERVICES - WITH IMAGE
   ============================================ */

.location-services {
    background: #222222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.location-services::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Services Image --- */
.location-services-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.location-services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-services-image:hover img {
    transform: scale(1.03);
}

.location-services-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(34, 34, 34, 0.7), transparent);
    pointer-events: none;
}

.location-services-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24, 24, 24, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
}

.location-services-image-badge i {
    color: #B9F000;
    font-size: 1rem;
}

.location-services-image-badge span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Services Content --- */
.location-services-content {
    padding: 0 8px;
}

.location-services-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.location-services-title .highlight {
    color: #B9F000;
    position: relative;
}

.location-services-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.location-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.location-service-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #C0C0C0;
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.location-service-item i {
    color: #B9F000;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.location-service-item:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE - PROFESSIONAL CARDS
   ============================================ */

.location-why {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.location-why::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.location-why-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.location-why-title .highlight {
    color: #B9F000;
    position: relative;
}

.location-why-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.location-why-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Why Cards --- */
.location-why-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.location-why-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.location-why-card:hover::before {
    opacity: 1;
}

.location-why-card > * {
    position: relative;
    z-index: 1;
}

.location-why-number {
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.location-why-icon {
    width: 40px;
    height: 40px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.location-why-icon i {
    color: #B9F000;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.location-why-card:hover .location-why-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
}

.location-why-card:hover .location-why-icon i {
    transform: scale(1.1);
}

.location-why-text {
    color: #C0C0C0;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.location-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.location-why-card:hover .location-why-text {
    color: #E0E0E0;
}

/* ============================================
   LOCATION CONTACT
   ============================================ */

.location-contact {
    background: #222222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.location-contact::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.location-contact-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.location-contact-title .highlight {
    color: #B9F000;
    position: relative;
}

.location-contact-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.location-contact-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Contact Cards --- */
.location-contact-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.location-contact-card:hover {
    border-color: rgba(185, 240, 0, 0.06);
    transform: translateX(4px);
}

.location-contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.location-contact-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-contact-card-icon i {
    color: #B9F000;
    font-size: 0.9rem;
}

.location-contact-card-title {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.location-contact-card-body {
    padding-left: 44px;
}

.location-contact-card-body p {
    color: #9A9A9A;
    font-size: 0.95rem;
    margin: 0;
}

.location-contact-card-body a {
    color: #9A9A9A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-contact-card-body a:hover {
    color: #B9F000;
}

/* --- Hours --- */
.location-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.location-hours-item:last-child {
    border-bottom: none;
}

.location-hours-item .hours-day {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 0.9rem;
}

.location-hours-item .hours-time {
    color: #9A9A9A;
    font-size: 0.9rem;
}

.location-hours-item .hours-time.closed {
    color: #ff6b6b;
}

/* --- Directions Button --- */
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B9F000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-directions:hover {
    background: #B9F000;
    color: #070707;
    border-color: #B9F000;
    transform: translateY(-2px);
}

.location-directions-text {
    color: #9A9A9A;
    font-size: 0.9rem;
    margin-bottom: 4px !important;
}

/* --- Tagline --- */
.location-contact-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(185, 240, 0, 0.02);
    border: 1px solid rgba(185, 240, 0, 0.04);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.4s ease;
}

.location-contact-tagline:hover {
    border-color: rgba(185, 240, 0, 0.08);
    transform: translateY(-2px);
}

.location-contact-tagline i {
    color: #B9F000;
    font-size: 1.1rem;
}

.location-contact-tagline span {
    color: #9A9A9A;
    font-size: 0.9rem;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .location-hero {
        padding: 80px 0 50px;
    }

    .location-hero-title {
        font-size: 2.2rem;
    }

    .location-content {
        padding: 50px 0;
    }

    .location-content-card {
        padding: 32px 36px;
    }

    .location-services {
        padding: 50px 0;
    }

    .location-services-image img {
        height: 320px;
    }

    .location-services-title {
        font-size: 1.8rem;
    }

    .location-why {
        padding: 50px 0;
    }

    .location-why-title {
        font-size: 2rem;
    }

    .location-why-card {
        padding: 20px 18px;
    }

    .location-contact {
        padding: 50px 0;
    }

    .location-contact-title {
        font-size: 2rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .location-hero {
        padding: 60px 0 40px;
    }

    .location-hero-title {
        font-size: 1.6rem;
    }

    .location-hero-stats {
        gap: 20px 30px;
    }

    .location-hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .location-hero-stats .stat-label {
        font-size: 0.6rem;
    }

    .location-content {
        padding: 40px 0;
    }

    .location-content-card {
        padding: 24px 20px;
        margin: 0 12px;
        border-radius: 16px;
    }

    .location-content-body {
        font-size: 0.95rem;
    }

    .location-services {
        padding: 40px 0;
    }

    .location-services-image img {
        height: 250px;
        border-radius: 16px;
    }

    .location-services-image {
        border-radius: 16px;
        margin: 0 12px;
    }

    .location-services-content {
        padding: 0 12px;
    }

    .location-services-title {
        font-size: 1.5rem;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .location-service-item {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .location-why {
        padding: 40px 0;
    }

    .location-why-title {
        font-size: 1.6rem;
    }

    .location-why-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .location-why-card {
        padding: 16px 16px;
        border-radius: 14px;
    }

    .location-why-number {
        font-size: 2rem;
        top: 4px;
        right: 8px;
    }

    .location-why-icon {
        width: 34px;
        height: 34px;
    }

    .location-why-icon i {
        font-size: 0.9rem;
    }

    .location-why-text {
        font-size: 0.85rem;
    }

    .location-contact {
        padding: 40px 0;
    }

    .location-contact-title {
        font-size: 1.6rem;
    }

    .location-contact-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .location-contact-card {
        padding: 14px 16px;
        margin: 0 12px 10px;
    }

    .location-contact-card-body {
        padding-left: 36px;
    }

    .location-contact-card-body p {
        font-size: 0.88rem;
    }

    .location-hours-item .hours-day,
    .location-hours-item .hours-time {
        font-size: 0.82rem;
    }

    .btn-directions {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .location-contact-tagline {
        padding: 10px 20px;
        gap: 8px;
        margin: 0 12px;
    }

    .location-contact-tagline span {
        font-size: 0.78rem;
    }

    .location-contact-tagline i {
        font-size: 0.9rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .location-hero {
        padding: 50px 0 30px;
    }

    .location-hero-title {
        font-size: 1.3rem;
    }

    .location-hero-stats {
        gap: 14px 20px;
    }

    .location-hero-stats .stat-number {
        font-size: 1.1rem;
    }

    .location-hero-stats .stat-label {
        font-size: 0.5rem;
    }

    .location-content-card {
        padding: 18px 14px;
        margin: 0 8px;
        border-radius: 12px;
    }

    .location-content-body {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .location-content-icon {
        width: 36px;
        height: 36px;
    }

    .location-content-icon i {
        font-size: 1rem;
    }

    .location-services-image img {
        height: 200px;
    }

    .location-services-title {
        font-size: 1.2rem;
    }

    .location-service-item {
        font-size: 0.78rem;
        padding: 3px 0;
        gap: 6px;
    }

    .location-service-item i {
        font-size: 0.8rem;
    }

    .location-why-title {
        font-size: 1.3rem;
    }

    .location-why-subtitle {
        font-size: 0.85rem;
    }

    .location-why-card {
        padding: 12px 12px;
        border-radius: 12px;
    }

    .location-why-number {
        font-size: 1.6rem;
        top: 2px;
        right: 6px;
    }

    .location-why-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }

    .location-why-icon i {
        font-size: 0.75rem;
    }

    .location-why-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .location-contact-title {
        font-size: 1.3rem;
    }

    .location-contact-subtitle {
        font-size: 0.85rem;
    }

    .location-contact-card {
        padding: 10px 12px;
        margin: 0 8px 8px;
        border-radius: 12px;
    }

    .location-contact-card-body {
        padding-left: 30px;
    }

    .location-contact-card-body p {
        font-size: 0.8rem;
    }

    .location-contact-card-icon {
        width: 26px;
        height: 26px;
    }

    .location-contact-card-icon i {
        font-size: 0.75rem;
    }

    .location-contact-card-title {
        font-size: 0.8rem;
    }

    .location-hours-item .hours-day,
    .location-hours-item .hours-time {
        font-size: 0.75rem;
    }

    .btn-directions {
        font-size: 0.7rem;
        padding: 4px 12px;
        gap: 4px;
    }

    .location-contact-tagline {
        padding: 8px 14px;
        gap: 6px;
        border-radius: 30px;
    }

    .location-contact-tagline span {
        font-size: 0.65rem;
    }

    .location-contact-tagline i {
        font-size: 0.7rem;
    }

    .location-hero-title .highlight::after,
    .location-services-title .highlight::after,
    .location-why-title .highlight::after,
    .location-contact-title .highlight::after {
        height: 2px;
    }
}
/* ============================================
   SERVICE HERO - WITH BACKGROUND IMAGE
   ============================================ */

.service-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)), 
                url('../images/services/service-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.service-hero-title {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 12px;
}

/* --- Hero Stats --- */
.service-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    margin-top: 20px;
}

.service-hero-stats .stat-item {
    text-align: center;
}

.service-hero-stats .stat-number {
    display: block;
    color: #B9F000;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.service-hero-stats .stat-label {
    color: #6B6B6B;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   SERVICE CONTENT CARD
   ============================================ */

.service-content {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.service-content::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.service-content-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-content-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-content-card:hover::before {
    opacity: 1;
}

.service-content-card > * {
    position: relative;
    z-index: 1;
}

.service-content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

.service-content-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(185, 240, 0, 0.06);
}

.service-content-icon i {
    color: #B9F000;
    font-size: 1.3rem;
}

.service-content-body {
    color: #E0E0E0;
    font-size: 1.05rem;
    line-height: 1.9;
}

.service-content-body p {
    margin-bottom: 16px;
}

.service-content-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SERVICE FEATURES
   ============================================ */

.service-features {
    background: #222222;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.service-features::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.service-features-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.service-features-title .highlight {
    color: #B9F000;
    position: relative;
}

.service-features-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.service-features-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Feature Cards --- */
.service-feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card > * {
    position: relative;
    z-index: 1;
}

.service-feature-number {
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.service-feature-icon i {
    color: #B9F000;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.service-feature-card:hover .service-feature-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
}

.service-feature-card:hover .service-feature-icon i {
    transform: scale(1.1);
}

.service-feature-text {
    color: #C0C0C0;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-feature-card:hover .service-feature-text {
    color: #E0E0E0;
}

/* ============================================
   SERVICE WHY CHOOSE
   ============================================ */

.service-why {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.service-why::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

.service-why-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.service-why-title .highlight {
    color: #B9F000;
    position: relative;
}

.service-why-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.service-why-subtitle {
    color: #9A9A9A;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Why Cards --- */
.service-why-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-why-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 17px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-why-card:hover::before {
    opacity: 1;
}

.service-why-card > * {
    position: relative;
    z-index: 1;
}

.service-why-number {
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.service-why-icon {
    width: 36px;
    height: 36px;
    background: rgba(185, 240, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid rgba(185, 240, 0, 0.04);
    transition: all 0.4s ease;
}

.service-why-icon i {
    color: #B9F000;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.service-why-card:hover .service-why-icon {
    background: rgba(185, 240, 0, 0.08);
    transform: scale(1.05);
}

.service-why-card:hover .service-why-icon i {
    transform: scale(1.1);
}

.service-why-text {
    color: #C0C0C0;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 240, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-why-card:hover .service-why-text {
    color: #E0E0E0;
}

/* ============================================
   SERVICE CTA
   ============================================ */

.service-cta {
    background: #0a0a0a;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.service-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 240, 0, 0.06);
    color: #B9F000;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.06);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-cta-badge i {
    font-size: 0.7rem;
}

.service-cta-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.service-cta-title .highlight {
    color: #B9F000;
    position: relative;
}

.service-cta-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.service-cta-text {
    color: #9A9A9A;
    font-size: 1.1rem;
    margin: 0;
}

.service-cta-text strong {
    color: #B9F000;
}

/* --- CTA Button --- */
.btn-cta-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B9F000;
    color: #070707;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.btn-cta-service:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-cta-service i {
    transition: all 0.3s ease;
}

.btn-cta-service:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .service-hero {
        padding: 80px 0 50px;
    }

    .service-hero-title {
        font-size: 2.2rem;
    }

    .service-content {
        padding: 50px 0;
    }

    .service-content-card {
        padding: 32px 36px;
    }

    .service-features {
        padding: 50px 0;
    }

    .service-features-title {
        font-size: 2rem;
    }

    .service-feature-card {
        padding: 20px 18px;
    }

    .service-why {
        padding: 50px 0;
    }

    .service-why-title {
        font-size: 2rem;
    }

    .service-why-card {
        padding: 18px 18px;
    }

    .service-cta-title {
        font-size: 1.8rem;
    }

    .btn-cta-service {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .service-hero {
        padding: 60px 0 40px;
    }

    .service-hero-title {
        font-size: 1.6rem;
    }

    .service-hero-stats {
        gap: 20px 30px;
    }

    .service-hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .service-hero-stats .stat-label {
        font-size: 0.6rem;
    }

    .service-content {
        padding: 40px 0;
    }

    .service-content-card {
        padding: 24px 20px;
        margin: 0 12px;
        border-radius: 16px;
    }

    .service-content-body {
        font-size: 0.95rem;
    }

    .service-features {
        padding: 40px 0;
    }

    .service-features-title {
        font-size: 1.6rem;
    }

    .service-features-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .service-feature-card {
        padding: 16px 16px;
        border-radius: 14px;
    }

    .service-feature-number {
        font-size: 2rem;
        top: 4px;
        right: 8px;
    }

    .service-feature-icon {
        width: 34px;
        height: 34px;
    }

    .service-feature-icon i {
        font-size: 0.9rem;
    }

    .service-feature-text {
        font-size: 0.85rem;
    }

    .service-why {
        padding: 40px 0;
    }

    .service-why-title {
        font-size: 1.6rem;
    }

    .service-why-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }

    .service-why-card {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .service-why-number {
        font-size: 1.8rem;
        top: 4px;
        right: 8px;
    }

    .service-why-icon {
        width: 30px;
        height: 30px;
    }

    .service-why-icon i {
        font-size: 0.8rem;
    }

    .service-why-text {
        font-size: 0.85rem;
    }

    .service-cta {
        padding: 40px 0;
        text-align: center;
    }

    .service-cta-title {
        font-size: 1.5rem;
    }

    .service-cta-text {
        font-size: 0.95rem;
    }

    .btn-cta-service {
        margin-top: 12px;
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .service-cta .col-lg-8 {
        text-align: center;
    }

    .service-cta .col-lg-4 {
        text-align: center !important;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .service-hero {
        padding: 50px 0 30px;
    }

    .service-hero-title {
        font-size: 1.3rem;
    }

    .service-hero-stats {
        gap: 14px 20px;
    }

    .service-hero-stats .stat-number {
        font-size: 1.1rem;
    }

    .service-hero-stats .stat-label {
        font-size: 0.5rem;
    }

    .service-content-card {
        padding: 18px 14px;
        margin: 0 8px;
        border-radius: 12px;
    }

    .service-content-body {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .service-content-icon {
        width: 36px;
        height: 36px;
    }

    .service-content-icon i {
        font-size: 1rem;
    }

    .service-features-title {
        font-size: 1.3rem;
    }

    .service-features-subtitle {
        font-size: 0.85rem;
    }

    .service-feature-card {
        padding: 12px 12px;
        border-radius: 12px;
    }

    .service-feature-number {
        font-size: 1.6rem;
        top: 2px;
        right: 6px;
    }

    .service-feature-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }

    .service-feature-icon i {
        font-size: 0.75rem;
    }

    .service-feature-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .service-why-title {
        font-size: 1.3rem;
    }

    .service-why-subtitle {
        font-size: 0.85rem;
    }

    .service-why-card {
        padding: 12px 12px;
        border-radius: 12px;
    }

    .service-why-number {
        font-size: 1.5rem;
        top: 2px;
        right: 6px;
    }

    .service-why-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 6px;
    }

    .service-why-icon i {
        font-size: 0.7rem;
    }

    .service-why-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .service-cta-title {
        font-size: 1.2rem;
    }

    .service-cta-text {
        font-size: 0.82rem;
    }

    .service-cta-badge {
        font-size: 0.55rem;
        padding: 3px 12px;
    }

    .btn-cta-service {
        padding: 10px 24px;
        font-size: 0.8rem;
        max-width: 220px;
        gap: 6px;
    }

    .btn-cta-service i {
        font-size: 0.8rem;
    }

    .service-hero-title .highlight::after,
    .service-features-title .highlight::after,
    .service-why-title .highlight::after,
    .service-cta-title .highlight::after {
        height: 2px;
    }
}
/* ============================================
   SERVICE FEATURED IMAGE
   ============================================ */

.service-featured-image {
    background: #1a1a1a;
    padding: 0 0 30px 0;
}

.service-featured-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-top: -30px;
    z-index: 5;
}

.service-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-featured-image-wrapper:hover .service-featured-img {
    transform: scale(1.02);
}

/* --- Image Gradient Overlay --- */
.service-featured-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
    pointer-events: none;
}

/* --- Featured Badge --- */
.service-featured-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(24, 24, 24, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(185, 240, 0, 0.08);
    transition: all 0.3s ease;
}

.service-featured-image-wrapper:hover .service-featured-badge {
    border-color: rgba(185, 240, 0, 0.15);
}

.service-featured-badge i {
    color: #B9F000;
    font-size: 1.1rem;
}

.service-featured-badge span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .service-featured-img {
        height: 320px;
    }

    .service-featured-image-wrapper {
        margin-top: -20px;
        margin-left: 16px;
        margin-right: 16px;
    }
}

@media (max-width: 767.98px) {
    .service-featured-img {
        height: 250px;
    }

    .service-featured-image-wrapper {
        margin-top: -15px;
        border-radius: 16px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .service-featured-badge {
        bottom: 14px;
        left: 16px;
        padding: 6px 16px;
        gap: 6px;
    }

    .service-featured-badge i {
        font-size: 0.9rem;
    }

    .service-featured-badge span {
        font-size: 0.75rem;
    }
}

@media (max-width: 370px) {
    .service-featured-img {
        height: 200px;
    }

    .service-featured-image-wrapper {
        margin-top: -10px;
        border-radius: 12px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .service-featured-badge {
        bottom: 10px;
        left: 12px;
        padding: 4px 12px;
        gap: 4px;
    }

    .service-featured-badge i {
        font-size: 0.75rem;
    }

    .service-featured-badge span {
        font-size: 0.65rem;
    }
}
/* ============================================
   FIXED PAGE SIZE - CONSISTENT WIDTH
   ============================================ */

/* --- Global Container Fix --- */
.container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* --- For Full Width Sections (Hero, CTA, Footer) --- */
.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Ensure all sections use container properly --- */
section .container,
section .container-fluid {
    position: relative;
    z-index: 1;
}

/* --- Page Wrapper (optional if you want to add) --- */
.page-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- Large Desktop (≥ 1400px) --- */
@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }
}

/* --- Desktop (≥ 1200px) --- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
}

/* --- Small Desktop / Tablet (≥ 992px) --- */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* --- Tablet (≥ 768px) --- */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* --- Extra Small Mobile (≤ 370px) --- */
@media (max-width: 370px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}
/* ============================================
   TERMS & CONDITIONS - PROFESSIONAL
   ============================================ */

/* --- Hero --- */
.terms-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.85), rgba(7, 7, 7, 0.92)), 
                url('../images/terms-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.terms-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.terms-hero-title {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 8px;
}

.terms-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.terms-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.terms-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ============================================
   TERMS CONTENT
   ============================================ */

.terms-content {
    background: #1a1a1a;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Terms Card --- */
.terms-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 45px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.4s ease;
}

.terms-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.terms-card:hover::before {
    opacity: 1;
}

.terms-card > * {
    position: relative;
    z-index: 1;
}

/* --- Top Line --- */
.terms-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

/* ============================================
   TERMS CLAUSE
   ============================================ */

.terms-clause {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.terms-clause:last-of-type {
    border-bottom: none;
}

.terms-clause:hover {
    padding-left: 8px;
    background: rgba(185, 240, 0, 0.01);
    border-radius: 8px;
}

/* --- Clause Number --- */
.terms-clause-number {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(185, 240, 0, 0.08);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    min-width: 50px;
    transition: all 0.3s ease;
}

.terms-clause:hover .terms-clause-number {
    color: rgba(185, 240, 0, 0.15);
}

/* --- Clause Content --- */
.terms-clause-content {
    flex: 1;
}

.terms-clause-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.terms-clause-text {
    color: #9A9A9A;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.terms-clause-text a {
    color: #B9F000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-clause-text a:hover {
    color: #D5FF33;
    text-decoration: underline;
}

.terms-clause-text strong {
    color: #E0E0E0;
    font-weight: 600;
}

/* ============================================
   TERMS FOOTER TAGLINE
   ============================================ */

.terms-footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(185, 240, 0, 0.02);
    border: 1px solid rgba(185, 240, 0, 0.04);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.terms-footer-tagline:hover {
    border-color: rgba(185, 240, 0, 0.08);
    transform: translateY(-2px);
}

.terms-footer-tagline i {
    color: #B9F000;
    font-size: 1rem;
}

.terms-footer-tagline span {
    color: #6B6B6B;
    font-size: 0.85rem;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .terms-hero {
        padding: 60px 0 40px;
    }

    .terms-hero-title {
        font-size: 2.2rem;
    }

    .terms-card {
        padding: 30px 30px 25px;
        margin: 0 16px;
    }

    .terms-clause {
        padding: 14px 0;
        gap: 16px;
    }

    .terms-clause-number {
        font-size: 1.6rem;
        min-width: 40px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .terms-hero {
        padding: 50px 0 30px;
    }

    .terms-hero-title {
        font-size: 1.6rem;
    }

    .terms-hero-subtitle {
        font-size: 0.95rem;
    }

    .terms-content {
        padding: 30px 0 40px;
    }

    .terms-card {
        padding: 20px 18px 18px;
        margin: 0 12px;
        border-radius: 16px;
    }

    .terms-clause {
        padding: 12px 0;
        gap: 12px;
        flex-direction: column;
    }

    .terms-clause-number {
        font-size: 1.3rem;
        min-width: auto;
        color: rgba(185, 240, 0, 0.12);
    }

    .terms-clause-title {
        font-size: 0.95rem;
    }

    .terms-clause-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .terms-footer-tagline {
        padding: 8px 18px;
        gap: 8px;
        margin-top: 18px;
    }

    .terms-footer-tagline i {
        font-size: 0.85rem;
    }

    .terms-footer-tagline span {
        font-size: 0.75rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .terms-hero-title {
        font-size: 1.3rem;
    }

    .terms-hero-subtitle {
        font-size: 0.8rem;
    }

    .terms-card {
        padding: 14px 12px 14px;
        margin: 0 8px;
        border-radius: 12px;
    }

    .terms-clause {
        padding: 10px 0;
        gap: 8px;
    }

    .terms-clause-number {
        font-size: 1rem;
    }

    .terms-clause-title {
        font-size: 0.85rem;
    }

    .terms-clause-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .terms-footer-tagline {
        padding: 6px 14px;
        gap: 6px;
        margin-top: 14px;
        border-radius: 30px;
    }

    .terms-footer-tagline i {
        font-size: 0.7rem;
    }

    .terms-footer-tagline span {
        font-size: 0.65rem;
    }

    .terms-hero-title .highlight::after {
        height: 2px;
    }
}/* ============================================
   PRIVACY POLICY - PROFESSIONAL
   ============================================ */

/* --- Hero --- */
.privacy-hero {
    background: linear-gradient(rgba(7, 7, 7, 0.85), rgba(7, 7, 7, 0.92)), 
                url('../images/privacy-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(185, 240, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.15), rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.15), transparent);
}

.privacy-hero-title {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 8px;
}

.privacy-hero-title .highlight {
    color: #B9F000;
    position: relative;
}

.privacy-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.privacy-hero-subtitle {
    color: #9A9A9A;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ============================================
   PRIVACY CONTENT
   ============================================ */

.privacy-content {
    background: #1a1a1a;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* --- Privacy Card --- */
.privacy-card {
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 45px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.4s ease;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.04), transparent 40%, transparent 60%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.privacy-card:hover::before {
    opacity: 1;
}

.privacy-card > * {
    position: relative;
    z-index: 1;
}

/* --- Top Line --- */
.privacy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 240, 0, 0.3), rgba(185, 240, 0, 0.6), rgba(185, 240, 0, 0.3), transparent);
    opacity: 0.6;
}

/* ============================================
   PRIVACY INTRO
   ============================================ */

.privacy-intro {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    background: rgba(185, 240, 0, 0.02);
    border: 1px solid rgba(185, 240, 0, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-intro:hover {
    border-color: rgba(185, 240, 0, 0.08);
}

.privacy-intro-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 240, 0, 0.06);
}

.privacy-intro-icon i {
    color: #B9F000;
    font-size: 1.1rem;
}

.privacy-intro-text {
    color: #E0E0E0;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */

.privacy-section {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section:hover {
    padding-left: 8px;
    background: rgba(185, 240, 0, 0.01);
    border-radius: 8px;
}

/* --- Section Number --- */
.privacy-section-number {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(185, 240, 0, 0.08);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    min-width: 50px;
    transition: all 0.3s ease;
}

.privacy-section:hover .privacy-section-number {
    color: rgba(185, 240, 0, 0.15);
}

/* --- Section Content --- */
.privacy-section-content {
    flex: 1;
}

.privacy-section-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section-title i {
    color: #B9F000;
    font-size: 1.1rem;
}

.privacy-section-text {
    color: #9A9A9A;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.privacy-section-text a {
    color: #B9F000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-section-text a:hover {
    color: #D5FF33;
    text-decoration: underline;
}

.privacy-section-text strong {
    color: #E0E0E0;
    font-weight: 600;
}

/* --- Privacy List --- */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9A9A9A;
    font-size: 0.92rem;
    padding: 4px 0;
    line-height: 1.5;
}

.privacy-list li i {
    color: #B9F000;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* --- Contact Info --- */
.privacy-contact-info {
    padding: 8px 0 4px 0;
}

.privacy-contact-info p {
    color: #9A9A9A;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.privacy-contact-info a {
    color: #B9F000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-contact-info a:hover {
    color: #D5FF33;
    text-decoration: underline;
}

.privacy-contact-info strong {
    color: #E0E0E0;
    font-weight: 600;
}

/* ============================================
   PRIVACY FOOTER TAGLINE
   ============================================ */

.privacy-footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(185, 240, 0, 0.02);
    border: 1px solid rgba(185, 240, 0, 0.04);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.privacy-footer-tagline:hover {
    border-color: rgba(185, 240, 0, 0.08);
    transform: translateY(-2px);
}

.privacy-footer-tagline i {
    color: #B9F000;
    font-size: 1rem;
}

.privacy-footer-tagline span {
    color: #6B6B6B;
    font-size: 0.85rem;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991.98px) {
    .privacy-hero {
        padding: 60px 0 40px;
    }

    .privacy-hero-title {
        font-size: 2.2rem;
    }

    .privacy-card {
        padding: 30px 30px 25px;
        margin: 0 16px;
    }

    .privacy-section {
        padding: 14px 0;
        gap: 16px;
    }

    .privacy-section-number {
        font-size: 1.6rem;
        min-width: 40px;
    }

    .privacy-intro {
        padding: 16px 20px;
    }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767.98px) {
    .privacy-hero {
        padding: 50px 0 30px;
    }

    .privacy-hero-title {
        font-size: 1.6rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.95rem;
    }

    .privacy-content {
        padding: 30px 0 40px;
    }

    .privacy-card {
        padding: 20px 18px 18px;
        margin: 0 12px;
        border-radius: 16px;
    }

    .privacy-intro {
        padding: 14px 16px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-intro-icon {
        width: 34px;
        height: 34px;
    }

    .privacy-intro-icon i {
        font-size: 0.9rem;
    }

    .privacy-intro-text {
        font-size: 0.92rem;
    }

    .privacy-section {
        padding: 12px 0;
        gap: 12px;
        flex-direction: column;
    }

    .privacy-section-number {
        font-size: 1.3rem;
        min-width: auto;
        color: rgba(185, 240, 0, 0.12);
    }

    .privacy-section-title {
        font-size: 0.95rem;
    }

    .privacy-section-title i {
        font-size: 0.95rem;
    }

    .privacy-section-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .privacy-list li {
        font-size: 0.85rem;
        padding: 3px 0;
    }

    .privacy-list li i {
        font-size: 0.7rem;
    }

    .privacy-contact-info p {
        font-size: 0.85rem;
    }

    .privacy-footer-tagline {
        padding: 8px 18px;
        gap: 8px;
        margin-top: 18px;
    }

    .privacy-footer-tagline i {
        font-size: 0.85rem;
    }

    .privacy-footer-tagline span {
        font-size: 0.75rem;
    }
}

/* --- Extra Small (≤ 370px) --- */
@media (max-width: 370px) {
    .privacy-hero-title {
        font-size: 1.3rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.8rem;
    }

    .privacy-card {
        padding: 14px 12px 14px;
        margin: 0 8px;
        border-radius: 12px;
    }

    .privacy-intro {
        padding: 10px 12px;
        gap: 8px;
    }

    .privacy-intro-icon {
        width: 28px;
        height: 28px;
    }

    .privacy-intro-icon i {
        font-size: 0.75rem;
    }

    .privacy-intro-text {
        font-size: 0.82rem;
    }

    .privacy-section {
        padding: 10px 0;
        gap: 8px;
    }

    .privacy-section-number {
        font-size: 1rem;
    }

    .privacy-section-title {
        font-size: 0.85rem;
        gap: 6px;
    }

    .privacy-section-title i {
        font-size: 0.8rem;
    }

    .privacy-section-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .privacy-list li {
        font-size: 0.78rem;
        padding: 2px 0;
        gap: 6px;
    }

    .privacy-list li i {
        font-size: 0.6rem;
    }

    .privacy-contact-info p {
        font-size: 0.78rem;
    }

    .privacy-footer-tagline {
        padding: 6px 14px;
        gap: 6px;
        margin-top: 14px;
        border-radius: 30px;
    }

    .privacy-footer-tagline i {
        font-size: 0.7rem;
    }

    .privacy-footer-tagline span {
        font-size: 0.65rem;
    }

    .privacy-hero-title .highlight::after {
        height: 2px;
    }
}

/* ============================================
   HERO SECTION - WITH BACKGROUND IMAGE
   ============================================ */

.hero-section {
    background: #070707; /* Same as header background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* --- Background Image (Right Side) --- */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.85;
    z-index: 1;
}

/* --- Dark Gradient Overlay for Image --- */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, #070707 0%, transparent 40%, rgba(7, 7, 7, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* --- Left Side Glow Effect --- */
.hero-section .hero-glow {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.06), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* --- Hero Container --- */
.hero-section .container {
    position: relative;
    z-index: 10;
    height: 100%;
}

.hero-section .row {
    min-height: 80vh;
}

/* --- Hero Content (Left Aligned) --- */
.hero-section .hero-content {
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-section h1 .highlight {
    color: #B9F000;
    position: relative;
}

.hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.4;
}

.hero-section .tagline {
    color: #E0E0E0;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.hero-section .sub-text {
    color: #9A9A9A;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* --- Hero Buttons --- */
.hero-section .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

/* --- Primary Button (Lime Green) --- */
.hero-section .hero-buttons .btn-primary {
    background: #B9F000;
    color: #070707;
    border: none;
    padding: 16px 34px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(185, 240, 0, 0.2);
}

.hero-section .hero-buttons .btn-primary:hover {
    background: #D5FF33;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.35);
}

.hero-section .hero-buttons .btn-primary i {
    color: #070707;
}

/* --- Secondary Button (Outline) --- */
.hero-section .hero-buttons .btn-outline-light {
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 16px 34px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #B9F000;
    color: #B9F000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(185, 240, 0, 0.1);
}

.hero-section .hero-buttons .btn-outline-light i {
    color: #B9F000;
}

.hero-section .hero-buttons .btn-outline-light:hover i {
    color: #B9F000;
}

/* --- Warning Button (Lime) --- */
.hero-section .hero-buttons .btn-warning {
    background: #B9F000;
    color: #070707;
    border: none;
    padding: 16px 34px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(185, 240, 0, 0.2);
}

.hero-section .hero-buttons .btn-warning:hover {
    background: #D5FF33;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 240, 0, 0.35);
}

/* --- Trust Badge (Optional Below Buttons) --- */
.hero-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(42, 42, 42, 0.4);
}

.hero-trust-badge .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9A9A9A;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-badge .trust-item i {
    color: #B9F000;
    font-size: 1.1rem;
}

.hero-trust-badge .trust-item:hover {
    color: #E0E0E0;
    transition: all 0.3s ease;
}
/* ============================================
   INTRO CARD - SPACING FIX
   ============================================ */

.intro-card-section {
    margin-top: -0px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

/* ── Responsive Spacing ── */

@media (max-width: 991.98px) {
    .intro-card-section {
        margin-top: -30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .intro-card-section {
        margin-top: -20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 370px) {
    .intro-card-section {
        margin-top: -15px;
        margin-bottom: 30px;
    }
}
/* ============================================
   INTRO CARD - MAXIMUM SPACING
   ============================================ */

.intro-card-section {
    margin-top: -60px;      /* More overlap on hero */
    margin-bottom: 80px;    /* More space from next section */
    position: relative;
    z-index: 10;
}

/* ── Responsive Spacing ── */

@media (max-width: 991.98px) {
    .intro-card-section {
        margin-top: -45px;
        margin-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .intro-card-section {
        margin-top: -30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 370px) {
    .intro-card-section {
        margin-top: -20px;
        margin-bottom: 40px;
    }
}
/* ── About Image - Full Size ── */
.about-main-image {
    width: 100%;
    height: auto; /* Remove fixed height, let it scale naturally */
    object-fit: contain; /* Show full image instead of cropping */
    display: block;
}

/* ── Or if you want fixed height with full visibility ── */
.about-image-wrapper {
    overflow: visible; /* Ensure image isn't clipped */
}
/* ── Footer Logo - Maximized ── */
.footer-logo-img {
    height: 80px;          /* Increase from current size */
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* ── Optional: Even bigger on desktop ── */
@media (min-width: 992px) {
    .footer-logo-img {
        height: 100px;      /* Bigger on desktop */
    }
}

/* ── Responsive adjustment ── */
@media (max-width: 767px) {
    .footer-logo-img {
        height: 60px;       /* Smaller on mobile but still big */
    }
}

@media (max-width: 370px) {
    .footer-logo-img {
        height: 50px;
    }
}
/* ============================================
   HERO UNIQUE - PROFESSIONAL
   ============================================ */

.hero-unique {
    background: #070707; /* Same as header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* ── Background Image (Right Side) ── */
.hero-unique::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.85;
    z-index: 1;
}

/* ── Dark Gradient Overlay ── */
.hero-unique::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, #070707 0%, transparent 40%, rgba(7, 7, 7, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ── Glow Effect ── */
.hero-unique-glow {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 240, 0, 0.05), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* ── Container Fix ── */
.hero-unique .container {
    position: relative;
    z-index: 10;
}

.hero-unique .row {
    min-height: 80vh;
}

/* ── Content ── */
.hero-unique-content {
    position: relative;
    z-index: 10;
}

/* ── Top Badge ── */
.hero-unique-top-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 18px;
    background: #070707;
    border: 1px solid rgba(185, 240, 0, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-unique-top-badge:hover {
    border-color: rgba(185, 240, 0, 0.3);
    background: #0a0a0a;
}

.hero-unique-badge-text {
    color: #B9F000;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-unique-badge-text i {
    font-size: 0.85rem;
}

/* ── Heading ── */
.hero-unique-heading {
    color: #FFFFFF;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.hero-unique-highlight {
    color: #B9F000;
    position: relative;
}

.hero-unique-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B9F000, #D5FF33);
    border-radius: 4px;
    opacity: 0.3;
}

/* ── Tagline ── */
.hero-unique-tagline {
    color: #E0E0E0;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

/* ── Sub Text ── */
.hero-unique-sub-text {
    color: #9A9A9A;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ── Buttons ── */
.hero-unique-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.btn-hero-unique {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-hero-unique i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* ── Primary ── */
.btn-hero-unique-primary {
    background: #B9F000;
    color: #070707;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.btn-hero-unique-primary:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-hero-unique-primary:hover i {
    transform: scale(1.1);
}

/* ── Outline ── */
.btn-hero-unique-outline {
    background: transparent;
    color: #E0E0E0;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.btn-hero-unique-outline:hover {
    border-color: #B9F000;
    color: #B9F000;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.06);
    background: rgba(185, 240, 0, 0.03);
}

.btn-hero-unique-outline:hover i {
    color: #B9F000;
    transform: scale(1.1);
}

/* ── Accent ── */
.btn-hero-unique-accent {
    background: #B9F000;
    color: #070707;
    box-shadow: 0 4px 25px rgba(185, 240, 0, 0.2);
}

.btn-hero-unique-accent:hover {
    background: #D5FF33;
    color: #070707;
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(185, 240, 0, 0.35);
}

.btn-hero-unique-accent:hover i {
    transform: scale(1.1);
}

/* ── Trust Badge ── */
.hero-unique-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-unique-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #B0B0B0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-unique-trust-item i {
    font-size: 1.2rem;
    color: #B9F000;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(185, 240, 0, 0.1));
}

.hero-unique-trust-item:hover {
    color: #E0E0E0;
    transform: translateY(-2px);
}

.hero-unique-trust-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(185, 240, 0, 0.2));
}

/* ============================================
   INTRO UNIQUE - PROFESSIONAL
   ============================================ */

.intro-unique {
    margin-top: -50px;
    margin-bottom: 70px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

/* ── Card ── */
.intro-unique-card {
    background: #181818;
    border: 1px solid rgba(42, 42, 42, 0.6);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(185, 240, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* ── Top Lime Line ── */
.intro-unique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B9F000, #D5FF33, transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0.7;
}

/* ── Glow Border ── */
.intro-unique-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(185, 240, 0, 0.05), transparent 50%, rgba(185, 240, 0, 0.02));
    border-radius: 21px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.intro-unique-card:hover::after {
    opacity: 1;
}

.intro-unique-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 240, 0, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(185, 240, 0, 0.04);
}

.intro-unique-card > * {
    position: relative;
    z-index: 1;
}

/* ── Icon ── */
.intro-unique-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(185, 240, 0, 0.06);
    border-radius: 50%;
    margin-bottom: 12px;
    border: 1px solid rgba(185, 240, 0, 0.06);
}

.intro-unique-icon i {
    color: #B9F000;
    font-size: 1.2rem;
}

/* ── Text ── */
.intro-unique-text {
    color: #E0E0E0;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991.98px) {
    .hero-unique {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero-unique::before {
        width: 100%;
        clip-path: none;
        opacity: 0.2;
        right: auto;
        left: 0;
    }

    .hero-unique::after {
        display: none;
    }

    .hero-unique-content {
        text-align: center;
    }

    .hero-unique-heading {
        font-size: 2.5rem;
    }

    .hero-unique-sub-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-unique-buttons {
        justify-content: center;
    }

    .hero-unique-trust-badge {
        justify-content: center;
    }

    .hero-unique-glow {
        display: none;
    }

    .intro-unique {
        margin-top: -35px;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .intro-unique-card {
        padding: 30px 35px;
        border-radius: 18px;
    }

    .intro-unique-text {
        font-size: 1.05rem;
    }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767.98px) {
    .hero-unique {
        padding: 100px 0 50px;
    }

    .hero-unique::before {
        opacity: 0.15;
    }

    .hero-unique-heading {
        font-size: 2rem;
    }

    .hero-unique-tagline {
        font-size: 1.05rem;
    }

    .hero-unique-sub-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-unique-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero-unique {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-hero-unique i {
        font-size: 1rem;
    }

    .hero-unique-top-badge {
        padding: 4px 14px;
        margin-bottom: 16px;
    }

    .hero-unique-badge-text {
        font-size: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-unique-trust-badge {
        gap: 12px 20px;
        padding-top: 20px;
    }

    .hero-unique-trust-item {
        font-size: 0.75rem;
        gap: 6px;
    }

    .hero-unique-trust-item i {
        font-size: 1rem;
    }

    .intro-unique {
        margin-top: -25px;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .intro-unique-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .intro-unique-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .intro-unique-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .intro-unique-icon i {
        font-size: 1rem;
    }

    .intro-unique-card::before {
        width: 50px;
        height: 2px;
    }

    .hero-unique-highlight::after {
        height: 3px;
    }
}

/* ── Extra Small (≤ 370px) ── */
@media (max-width: 370px) {
    .hero-unique {
        padding: 80px 0 40px;
    }

    .hero-unique::before {
        opacity: 0.1;
    }

    .hero-unique-heading {
        font-size: 1.5rem;
    }

    .hero-unique-tagline {
        font-size: 0.9rem;
    }

    .hero-unique-sub-text {
        font-size: 0.85rem;
        padding: 0 6px;
        line-height: 1.6;
    }

    .btn-hero-unique {
        font-size: 0.8rem;
        padding: 12px 18px;
        max-width: 260px;
        gap: 6px;
    }

    .btn-hero-unique i {
        font-size: 0.85rem;
    }

    .hero-unique-badge-text {
        font-size: 0.5rem;
        gap: 4px;
    }

    .hero-unique-badge-text i {
        font-size: 0.55rem;
    }

    .hero-unique-trust-badge {
        gap: 8px 14px;
        padding-top: 16px;
    }

    .hero-unique-trust-item {
        font-size: 0.65rem;
        gap: 4px;
    }

    .hero-unique-trust-item i {
        font-size: 0.85rem;
    }

    .intro-unique {
        margin-top: -18px;
        margin-bottom: 30px;
        padding: 0 12px;
    }

    .intro-unique-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .intro-unique-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .intro-unique-icon {
        width: 34px;
        height: 34px;
    }

    .intro-unique-icon i {
        font-size: 0.85rem;
    }

    .intro-unique-card::before {
        width: 40px;
        height: 2px;
    }

    .hero-unique-highlight::after {
        height: 2px;
    }
}