/* =============================================
   EFES AIR — STYLE SHEET
   ARS.com-inspired design
   ============================================= */

:root {
    --primary-blue: #007dba;
    --dark-midnight: #0d2138;
    --alert-red: #e31b23;
    --light-gray: #f4f7f9;
    --mid-gray: #e5eaee;
    --white: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
    --transition: all 0.25s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   TOP UTILITY BAR
   ============================================= */
.top-utility {
    background-color: var(--dark-midnight);
    color: rgba(255, 255, 255, 0.8);
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-utility .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-utility a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.top-utility a:hover {
    color: var(--white);
}

.phone-cta {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 7px 16px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-weight: 600;
}

.phone-cta svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.phone-cta:hover {
    background-color: #005f8d;
    transform: translateY(-1px);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 100%;
    position: relative;
}

.logo {
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    line-height: 0;
}

.logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

/* Push nav to the right side */
nav {
    margin-left: auto;
}

/* Desktop Nav */
nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

nav ul li {
    position: relative;
    padding: 14px 0;
}

nav ul li>a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 4px;
    transition: var(--transition);
}

nav ul li>a::after {
    content: '▾';
    font-size: 10px;
    margin-top: 1px;
    color: var(--primary-blue);
}

nav ul li>a:hover {
    color: var(--primary-blue);
    background-color: var(--light-gray);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    border-top: 3px solid var(--primary-blue);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

nav ul li:hover .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    transition: var(--transition);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    padding-left: 24px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark-midnight);
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--light-gray);
}

/* Active link */
nav ul li a.active,
.top-utility a.active {
    color: var(--primary-blue);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #005f8d;
    border-color: #005f8d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 125, 186, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 125, 186, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 125, 186, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--dark-midnight);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--dark-midnight);
    color: var(--white);
    border-color: var(--dark-midnight);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-xl {
    padding: 16px 36px;
    font-size: 16px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-midnight) 0%, #1a3a5a 60%, #0d4f7a 100%);
    color: var(--white);
    padding: 80px 0;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(0,125,186,0.08)"/><circle cx="80" cy="80" r="60" fill="rgba(0,125,186,0.05)"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* CTA Box */
.cta-box {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 36px 32px;
    border-radius: 10px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-midnight);
}

.cta-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: -8px;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.trust-item svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
    padding: 80px 0;
    background-color: var(--white);
}

.about-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-strip-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-midnight);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-strip-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.about-strip-text .btn {
    margin-top: 10px;
}

.image-placeholder-block {
    background: linear-gradient(135deg, var(--light-gray), var(--mid-gray));
    border-radius: 12px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--primary-blue);
    border: 2px dashed var(--mid-gray);
}

.image-placeholder-block svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-blue);
    opacity: 0.6;
}

.image-placeholder-block span {
    font-weight: 600;
    color: var(--text-muted);
}

/* =============================================
   SERVICE FEATURE CARDS (ARS-style)
   ============================================= */
.service-cards-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-midnight);
    margin-bottom: 50px;
}

.service-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
}

.service-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-feature-card.reverse {
    direction: rtl;
}

.service-feature-card.reverse>* {
    direction: ltr;
}

.service-feature-image {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.ac-bg {
    background: linear-gradient(135deg, #0d4f7a 0%, #007dba 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ac-bg::after {
    content: '❄';
    font-size: 80px;
    opacity: 0.15;
}

.heat-bg {
    background: linear-gradient(135deg, #7a2d0d 0%, #c44b1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heat-bg::after {
    content: '🔥';
    font-size: 80px;
    opacity: 0.15;
}

.aq-bg {
    background: linear-gradient(135deg, #0d7a4f 0%, #1abc76 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aq-bg::after {
    content: '🌿';
    font-size: 80px;
    opacity: 0.15;
}

.hvac-bg {
    background: linear-gradient(135deg, #3d0d7a 0%, #7b1abc 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hvac-bg::after {
    content: '⚙';
    font-size: 80px;
    opacity: 0.15;
}

.service-feature-content {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.service-feature-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-midnight);
    line-height: 1.2;
}

.service-feature-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-link-pill {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--mid-gray);
    transition: var(--transition);
    display: inline-block;
}

.service-link-pill:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* =============================================
   VALUE SECTION
   ============================================= */
.value-section {
    padding: 80px 0;
    background: var(--dark-midnight);
    color: var(--white);
}

.value-section .section-title {
    color: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.value-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.value-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* =============================================
   EXPERT TIPS SECTION
   ============================================= */
.tips-section {
    padding: 80px 0;
    background: var(--white);
}

.tips-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.tips-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-midnight);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tip-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.tip-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.tip-img-1 {
    background: linear-gradient(135deg, #1a4a7a, #007dba);
}

.tip-img-2 {
    background: linear-gradient(135deg, #2d5a27, #4caf50);
}

.tip-img-3 {
    background: linear-gradient(135deg, #4a1a7a, #9c27b0);
}

.tip-content {
    padding: 24px;
}

.tip-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.tip-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-midnight);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tip-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.tip-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.tip-link:hover {
    color: var(--dark-midnight);
    transform: translateX(4px);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), #005f8d);
    color: var(--white);
    padding: 70px 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 16px;
    opacity: 0.85;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */
.hero-small {
    background: linear-gradient(135deg, var(--dark-midnight) 0%, #1a3a5a 100%);
    color: var(--white);
    padding: 60px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-small h1 {
    font-size: 38px;
    font-weight: 800;
}

.hero-small p {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    margin-top: 10px;
}

.service-details {
    padding: 60px 0;
}

.service-anchor-section {
    padding: 52px 0;
    border-bottom: 1px solid var(--mid-gray);
}

.service-anchor-section:last-child {
    border-bottom: none;
}

.service-anchor-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-midnight);
    margin-bottom: 18px;
}

.service-anchor-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 800px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background-color: #0a1929;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-section h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    padding: 20px;
}

/* =============================================
   LOCATIONS PAGE
   ============================================= */
.location-info {
    padding: 60px 0;
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }

    nav ul li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid var(--light-gray);
    }

    nav ul li>a {
        padding: 14px 20px;
        justify-content: space-between;
        border-radius: 0;
    }

    nav ul li>a:hover {
        background: var(--light-gray);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--light-gray);
        padding: 0;
        border-top: none;
        border-radius: 0;
    }

    nav ul li.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        padding: 11px 32px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .cta-box {
        width: 100%;
    }

    .trust-strip .container {
        gap: 16px;
    }

    .trust-item {
        font-size: 13px;
    }

    .about-strip-inner {
        grid-template-columns: 1fr;
    }

    .image-placeholder-block {
        height: 220px;
    }

    .service-feature-card {
        grid-template-columns: 1fr;
    }

    .service-feature-card.reverse {
        direction: ltr;
    }

    .service-feature-image {
        min-height: 220px;
    }

    .service-feature-content {
        padding: 32px 28px;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tips-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .top-utility .container {
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-small {
        flex-direction: column;
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}
/* =============================================
   SERVICE PAGE — PAGE HERO
   ============================================= */
.page-hero {
    position: relative;
    padding: 80px 0;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ac-hero   { background: linear-gradient(135deg, #0b3d5c 0%, #007dba 100%); }
.heat-hero { background: linear-gradient(135deg, #4a1a00 0%, #c44b1a 100%); }
.aq-hero   { background: linear-gradient(135deg, #054d2e 0%, #0d7a4f 100%); }
.hvac-hero { background: linear-gradient(135deg, #2a0d5a 0%, #6b1ab0 100%); }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.page-hero-inner { position: relative; z-index: 1; width: 100%; }
.page-hero-content { max-width: 700px; color: var(--white); }

.breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    display: block;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-hero-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   SERVICE LINKS SECTION
   ============================================= */
.service-links-section { padding: 70px 0; background: var(--white); }
.service-links-section h2 {
    font-size: 32px; font-weight: 800; color: var(--dark-midnight); margin-bottom: 16px;
}
.section-intro {
    font-size: 16px; color: var(--text-muted); max-width: 820px; line-height: 1.7; margin-bottom: 44px;
}
.section-intro.center { text-align: center; margin: 0 auto 44px; }

.service-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-link-card {
    background: var(--light-gray);
    border: 1px solid var(--mid-gray);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
    color: var(--text-dark);
}
.service-link-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.slc-icon { font-size: 28px; line-height: 1; }
.service-link-card h4 { font-size: 17px; font-weight: 700; color: var(--dark-midnight); }
.service-link-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.slc-arrow { font-size: 18px; color: var(--primary-blue); font-weight: 700; transition: var(--transition); }
.service-link-card:hover .slc-arrow { transform: translateX(6px); }

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section { padding: 70px 0; }
.content-section.bg-light { background: var(--light-gray); }
.section-center-title {
    font-size: 32px; font-weight: 800; color: var(--dark-midnight); text-align: center; margin-bottom: 16px;
}
.content-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.content-text h2 {
    font-size: 28px; font-weight: 800; color: var(--dark-midnight); margin-bottom: 16px; line-height: 1.3;
}
.content-text p {
    font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.check-list li {
    font-size: 15px; color: var(--text-muted); padding-left: 28px; position: relative; line-height: 1.6;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: var(--primary-blue); font-weight: 700; font-size: 15px;
}

.content-image { display: flex; flex-direction: column; gap: 20px; }
.img-stat-card {
    background: var(--white); border: 1px solid var(--mid-gray); border-radius: 10px;
    padding: 28px 32px; text-align: center; box-shadow: var(--shadow); transition: var(--transition);
}
.img-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.img-stat-card.accent { background: var(--primary-blue); border-color: var(--primary-blue); }
.stat-number {
    font-size: 42px; font-weight: 800; color: var(--primary-blue); line-height: 1; margin-bottom: 6px;
}
.img-stat-card.accent .stat-number { color: var(--white); }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.img-stat-card.accent .stat-label { color: rgba(255,255,255,0.85); }

/* =============================================
   FAQ PROBLEM CARDS
   ============================================= */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.faq-card {
    background: var(--white); border: 1px solid var(--mid-gray); border-radius: 10px;
    padding: 28px; transition: var(--transition);
}
.faq-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.faq-icon { font-size: 28px; margin-bottom: 14px; }
.faq-card h4 { font-size: 17px; font-weight: 700; color: var(--dark-midnight); margin-bottom: 10px; }
.faq-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   ANCHOR SECTIONS
   ============================================= */
.anchor-section {
    padding: 40px 0; border-bottom: 1px solid var(--mid-gray); scroll-margin-top: 100px;
}
.anchor-section:last-child { border-bottom: none; }
.anchor-section h2 {
    font-size: 24px; font-weight: 700; color: var(--dark-midnight);
    margin-bottom: 14px; padding-left: 16px; border-left: 4px solid var(--primary-blue);
}
.anchor-section p {
    font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 800px;
}

/* =============================================
   RESPONSIVE — SERVICE PAGES
   ============================================= */
@media (max-width: 992px) {
    .page-hero-content h1 { font-size: 30px; }
    .service-link-grid { grid-template-columns: 1fr 1fr; }
    .content-two-col { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .hero-cta-group { flex-direction: column; }
}
@media (max-width: 600px) {
    .service-link-grid { grid-template-columns: 1fr; }
    .page-hero-content h1 { font-size: 24px; }
    .page-hero { padding: 50px 0; }
}
