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

/* ── Base ── */
body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0d0d0d;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.container {
    width: 96%;
    margin: auto;
    overflow: hidden;
}

/* ── Top contact bar ── */
.contact-info {
    background: #0a0a0a;
    color: #05b6fc;
    padding: 2px 0;
    text-align: center;
}
.contact-info p {
    margin: 0;
    font-size: clamp(14px, 2.5vw, 25px);
    line-height: 1.5;
}
.contact-info a {
    color: #05b6fc;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* ── Header ── */
header {
    background: #0d0d0d;
    color: #ffffff;
    padding: 10px 0;
    border-bottom: #05b6fc 3px solid;
    position: relative;
    z-index: 9999;
    isolation: isolate;
}
header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
}
header nav a {
    font-size: 14px;
    letter-spacing: 0.5px;
}
header li {
    float: left;
    display: inline;
    padding: 25px 14px;
}
header #branding {
    float: left;
    display: flex;
    align-items: center;
}
header #branding img {
    width: 375px;
    height: 130px;
    margin-right: 25px;
    animation: logo-shimmer 3s ease-in-out infinite;
}
@keyframes logo-shimmer {
    0%, 100% { filter: brightness(0.75); }
    50%       { filter: brightness(1.2);  }
}
header #branding h1 {
    margin-top: -30px;
    height: 160px;
    font-size: 40px;
    color: #ffffff;
}
header .container {
    overflow: visible;
}
header .container::after {
    content: '';
    display: table;
    clear: both;
}
header nav {
    float: right;
    margin-top: 35px;
    display: flex;
    align-items: center;
}
header .current a {
    color: #04a1f0;
    font-weight: bold;
}
header a:hover {
    color: #04a1f0;
    font-weight: bold;
}

/* ── Nav dropdowns ── */
header li.has-dropdown {
    position: relative;
}
header li.has-dropdown > a::after {
    content: ' ▾';
    font-size: 13px;
    opacity: 0.6;
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 210px;
    z-index: 1000;
    border-top: 2px solid #05b6fc;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}
header li.has-dropdown:hover .dropdown {
    display: block;
}
.dropdown li {
    float: none;
    padding: 0;
    display: block;
}
.dropdown a {
    display: block;
    padding: 11px 18px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #272727;
    white-space: nowrap;
    color: #cccccc;
    font-weight: normal;
}
.dropdown a:hover {
    color: #05b6fc;
    font-weight: normal;
    background: #111111;
}
.dropdown li:last-child a {
    border-bottom: none;
}
@media (max-width: 768px) {
    .dropdown {
        display: block;
        position: static;
        background: #111111;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #05b6fc;
        margin: 4px 0 4px 16px;
        min-width: unset;
        width: calc(100% - 16px);
    }
    .dropdown a {
        padding: 8px 14px;
        font-size: 13px;
        text-align: left;
    }
    header li.has-dropdown > a::after {
        display: none;
    }
}

/* ── Social links ── */
.social-links {
    display: flex;
    gap: 20px;
    margin-right: 1px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}
.social-icon img {
    width: 100%;
    height: 100%;
}
.social-icon:hover {
    transform: scale(1.2);
}

/* ── CTA Banner ── */
.cta-banner {
    background: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
}
.cta-banner h2 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
}
.cta-banner-btn {
    display: inline-block;
    background: #05b6fc;
    color: #ffffff;
    padding: 18px 48px;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}
.cta-banner-btn:hover {
    background: #0495d1;
    transform: translateY(-2px);
}

/* ── Footer ── */
footer {
    background: #0a0a0a;
    color: #aaaaaa;
    padding: 60px 0 0;
    font-size: 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    width: 96%;
    margin: 0 auto;
    padding-bottom: 40px;
}
.footer-col h4 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #05b6fc;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #222;
}
.footer-col p,
.footer-col address {
    font-style: normal;
    line-height: 1.9;
    color: #aaaaaa;
}
.footer-col a {
    color: #aaaaaa;
    text-decoration: none;
    display: block;
    line-height: 2;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #05b6fc;
}
.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.9;
}
.footer-tagline {
    color: #aaaaaa;
    line-height: 1.7;
    font-size: 14px;
}
.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    color: #555;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile nav toggle ── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    color: #ffffff;
    line-height: 1;
}

/* ── Mobile Spanish link (hidden on desktop) ── */
.lang-mobile-link {
    display: none;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        flex-shrink: 0;
    }
    header .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding: 6px 12px;
        gap: 8px;
    }
    #branding {
        float: none;
        flex: 1;
        justify-content: flex-start;
    }
    header #branding img {
        width: 180px;
        height: auto;
    }
    header #branding h1 {
        display: none;
    }
    header nav {
        float: none;
        margin-top: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        flex: 0 0 100%;
    }
    header nav.open {
        display: flex;
    }
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    header li {
        float: none;
        padding: 10px 25px;
        width: 100%;
        text-align: center;
    }
    /* Hide dropdown sub-items in hamburger menu */
    .dropdown {
        display: none !important;
    }
    .social-links {
        justify-content: center;
        margin: 8px 0;
    }
    .contact-info p {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.8;
    }
    /* Mobile Spanish link visible in header bar */
    .lang-mobile-link {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        color: #05b6fc;
        border: 1.5px solid #05b6fc;
        border-radius: 4px;
        padding: 5px 9px;
        font-size: 11px;
        font-family: 'Oswald', 'Impact', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }
    .lang-mobile-link:hover {
        background: #05b6fc;
        color: #ffffff;
    }
}

/* ── Mobile sticky CTA bar ── */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #0a0a0a;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    }
    .mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 0;
        color: #ffffff;
        font-weight: 700;
        font-size: 18px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Oswald', 'Impact', sans-serif;
    }
    .mobile-cta-call {
        background: #05b6fc;
    }
    .mobile-cta-text {
        background: #0495d1;
        border-left: 2px solid #0a0a0a;
    }
    .mobile-cta-btn:active {
        opacity: 0.85;
    }
    body {
        padding-bottom: 60px;
    }
}

/* ── Hero button group ── */
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btn {
    display: inline-block;
    background: #05b6fc;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
}
.hero-btn:hover {
    background: #0495d1;
    color: #ffffff;
}
@media (max-width: 768px) {
    .hero-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}
.hero-btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #ffffff;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.hero-btn-outline:hover {
    background: #ffffff;
    color: #0d0d0d;
}
@media (max-width: 768px) {
    .hero-btn-outline {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ── Page Hero (interior pages) ── */
.page-hero {
    background: #111111;
    padding: 70px 20px;
    text-align: center;
    border-bottom: 3px solid #05b6fc;
}
.page-hero h1 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 48px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.page-hero p {
    color: #aaaaaa;
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.page-hero .cta-banner-btn {
    margin-top: 28px;
}

/* ── Reviews section ── */
.reviews-section {
    background: #111111;
    padding: 70px 0 50px;
}
.reviews-section h2 {
    text-align: center;
    color: #ffffff;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* ── Makes We Service section ── */
.makes-section {
    background: #0d0d0d;
    padding: 70px 0 60px;
}
.makes-heading {
    text-align: center;
    color: #ffffff;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.makes-intro {
    text-align: center;
    color: #aaaaaa;
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.makes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.make-card {
    background: #1a1a1a;
    border-radius: 8px;
    border-top: 3px solid #05b6fc;
    padding: 20px 20px 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}
.make-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.make-card h3 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
}
.make-card p {
    color: #888888;
    font-size: 13px;
    line-height: 1.6;
}
.makes-footer-note {
    text-align: center;
    color: #888888;
    font-size: 15px;
}
.makes-footer-note strong {
    color: #e0e0e0;
}
.makes-footer-note a {
    color: #05b6fc;
    text-decoration: none;
}
.makes-footer-note a:hover {
    text-decoration: underline;
}
.make-card-link {
    display: inline-block;
    margin-top: 10px;
    color: #05b6fc;
    font-size: 12px;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s;
}
.make-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
}
.make-card-link:hover { color: #ffffff; }
@media (max-width: 1024px) {
    .makes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .makes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 400px) {
    .makes-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Service Areas section ── */
.service-areas-section {
    background: #0d0d0d;
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}
.service-areas-section h2 {
    text-align: center;
    color: #ffffff;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.service-areas-section .areas-intro {
    text-align: center;
    color: #aaaaaa;
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px 16px;
    max-width: 960px;
    margin: 0 auto 28px;
}
.areas-grid span {
    color: #888888;
    font-size: 13px;
    padding: 4px 0;
    border-left: 2px solid #1e1e1e;
    padding-left: 10px;
    transition: color 0.2s;
}
.areas-grid span:hover {
    color: #05b6fc;
}
.areas-county-note {
    text-align: center;
    color: #555;
    font-size: 13px;
    margin-top: 8px;
}
@media (max-width: 900px) {
    .areas-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer tagline precision line ── */
.footer-precision {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #05b6fc;
    margin-top: 10px;
    opacity: 0.8;
}

/* ── Contact Form ── */
.form-section {
    background: #111111;
    padding: 70px 0;
    border-bottom: 1px solid #1a1a1a;
}
.form-section-head {
    text-align: center;
    margin-bottom: 44px;
}
.form-section-head h2 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 12px;
}
.form-section-head p {
    color: #aaaaaa;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.form-wrap {
    max-width: 740px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 8px;
    border-top: 3px solid #05b6fc;
    padding: 40px 44px 44px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}
.form-group label {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: #111111;
    border: 1px solid #2e2e2e;
    border-radius: 4px;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #05b6fc;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-group select option {
    background: #1a1a1a;
    color: #e0e0e0;
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}
.form-required {
    color: #05b6fc;
    margin-left: 2px;
}
.form-submit-btn {
    width: 100%;
    background: #05b6fc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 4px;
}
.form-submit-btn:hover {
    background: #0495d1;
    transform: translateY(-2px);
}
.form-submit-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 26px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.form-success p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.7;
}
.form-note {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin-top: 16px;
}
@media (max-width: 640px) {
    .form-wrap {
        padding: 28px 22px 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ── Bilingual badge (about page) ── */
.about-bilingual-badge {
    display: inline-block;
    background: #05b6fc;
    color: #ffffff;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.about-bilingual-badge:hover {
    background: #0495d1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5,182,252,0.25);
}
.about-bilingual-badge span {
    color: #ffffff;
}

/* ── Language toggle button ── */
.lang-toggle {
    background: transparent;
    border: 2px solid #05b6fc;
    color: #05b6fc;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 14px;
    cursor: pointer;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 16px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    align-self: center;
    text-transform: uppercase;
}
.lang-toggle:hover {
    background: #05b6fc;
    color: #ffffff;
}
@media (max-width: 768px) {
    .lang-toggle {
        margin: 6px 0 4px;
        align-self: auto;
    }
}

/* ── About snippet (homepage) ── */
.about-snippet {
    background: #111111;
    padding: 70px 0;
}
.about-snippet-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-snippet-text h2 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}
.about-snippet-text p {
    color: #aaaaaa;
    line-height: 1.85;
    font-size: 15px;
    margin-bottom: 16px;
}
.about-snippet-link {
    display: inline-block;
    color: #05b6fc;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 2px solid #05b6fc;
    padding-bottom: 2px;
    margin-top: 8px;
    transition: color 0.2s, border-color 0.2s;
}
.about-snippet-link:hover {
    color: #0495d1;
    border-color: #0495d1;
}
.about-snippet-img img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    display: block;
}
@media (max-width: 768px) {
    .about-snippet-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-snippet-img {
        order: -1;
    }
}

/* ── Shared service cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border-top: 3px solid #05b6fc;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.service-card-img {
    position: relative;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    color: #05b6fc;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.service-card-body p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin: 0;
}
.service-card-cta {
    display: inline-block;
    color: #ffffff;
    background: #05b6fc;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 3px;
    margin-top: 18px;
    align-self: flex-start;
    transition: background 0.2s;
}
.service-card:hover .service-card-cta {
    background: #0495d1;
}
.services-view-all {
    text-align: center;
    margin-top: 44px;
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ── Shared why-choose-us grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-item {
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid #05b6fc;
    background: #1a1a1a;
    border-radius: 4px;
}
.why-icon {
    font-size: 42px;
    margin-bottom: 16px;
}
.why-item h3 {
    color: #05b6fc;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.why-item p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
