﻿/* =========================================================
   Icecool Website Stylesheet
   Cleaned and consolidated version
   ========================================================= */

/* -----------------------------
   1. Theme Variables
----------------------------- */
:root {
    --navy: #0a1628;
    --navy-2: #0d1d34;
    --navy-3: #081222;
    --footer: #06101e;
    --ice: #00c8ff;
    --accent: #00c8ff;
    --surface: #1a2a40;
    --white: #ffffff;
    --muted: #b8c7d9;
    --text: #b8c7d9;
    --line: rgba(0, 200, 255, 0.15);
    --line-strong: rgba(0, 200, 255, 0.36);
    --glass: rgba(255, 255, 255, 0.045);
    --shadow-soft: 0 18px 70px rgba(0, 200, 255, 0.14);
    --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --container: 1120px;
    --container-wide: 1180px;
    --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Syne", sans-serif;
}

/* -----------------------------
   2. Base Reset
----------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

/* -----------------------------
   3. Header and Navigation
----------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.2);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

    .site-header.scrolled {
        background: rgba(10, 22, 40, 0.95);
        border-color: var(--line);
    }

.nav-wrap {
    width: min(var(--container-wide), calc(100% - 28px));
    height: 72px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: auto;
    max-height: 80px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

    .main-nav a {
        position: relative;
        color: var(--muted);
        font-size: 0.95rem;
        font-weight: 800;
    }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--ice);
        }

.nav-cta,
.nav-login,
.btn.primary {
    border-radius: var(--radius-pill);
    font-weight: 900;
}

.nav-cta,
.btn.primary {
    padding: 13px 18px;
    background: var(--ice);
    color: #031421 !important;
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.25);
}

.nav-login {
    padding: 11px 18px;
    border: 1px solid rgba(0, 200, 255, 0.55);
    color: var(--white) !important;
}

    .nav-login:hover {
        background: rgba(0, 200, 255, 0.14);
    }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

    .nav-dropdown > a {
        display: flex;
        align-items: center;
        gap: 6px;
    }

.dropdown-arrow {
    font-size: 0.8rem;
    opacity: 0.75;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    min-width: 240px;
    padding: 12px;
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 16px;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

    .dropdown-menu a {
        display: block;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        color: #d9eef8;
        font-size: 0.9rem;
    }

        .dropdown-menu a:hover {
            background: rgba(0, 200, 255, 0.1);
            color: var(--white);
        }

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
}

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        margin: 6px auto;
        background: var(--white);
    }

.nav-backdrop {
    display: none;
}

/* -----------------------------
   4. Buttons and Utilities
----------------------------- */
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-weight: 900;
}

    .btn.secondary {
        background: rgba(0, 200, 255, 0.04);
        border-color: rgba(0, 200, 255, 0.45);
        color: var(--ice);
    }

.card .btn {
    margin-top: 16px;
}

.accent,
.eyebrow,
.team-role {
    color: var(--ice);
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* -----------------------------
   5. Hero Sections
----------------------------- */
.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 64px 0;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: -25%;
        z-index: -2;
        background: radial-gradient(circle at 25% 30%, rgba(0, 200, 255, 0.28), transparent 30%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.09), transparent 28%), linear-gradient(135deg, #0a1628, #0d2745);
        animation: mesh 12s ease-in-out infinite alternate;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image: linear-gradient(rgba(0, 200, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 255, 0.06) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: linear-gradient(to bottom, #000, transparent);
    }

.hero-grid {
    display: grid;
    gap: 42px;
    align-items: center;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 22px;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.scroll-indicator {
    position: absolute;
    bottom: 18px;
    color: var(--ice);
    font-size: 1.5rem;
    animation: bounce 1.2s infinite;
}

.page-hero {
    padding: 88px 0 58px;
    background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.22), transparent 36%), var(--navy-2);
}

.hero-with-image,
.page-hero-solutions,
.contact-hero,
.cybersecurity-hero,
.cloud-hero,
.industries-hero,
.resources-hero,
.about-hero,
.hosting-hero {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@keyframes mesh {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(3%, 2%, 0) scale(1.05);
    }
}

@keyframes bounce {
    50% {
        transform: translateY(8px);
    }
}

/* -----------------------------
   6. Sections and Layout Grids
----------------------------- */
section {
    position: relative;
    padding: 86px 0;
}

.section-alt {
    background: var(--navy-3);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.section-title {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
}

.section-intro {
    max-width: 850px;
    margin-bottom: 34px;
    color: var(--text);
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.split-section,
.why-grid {
    display: grid;
    align-items: center;
}

.split-section {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.why-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

/* -----------------------------
   7. Cards and Content Blocks
----------------------------- */
.card,
.plan,
.accordion-card,
.portfolio-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--glass);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .card:hover,
    .plan:hover,
    .portfolio-card:hover {
        transform: translateY(-6px);
        border-color: var(--line-strong);
        box-shadow: var(--shadow-soft);
    }

.icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ice);
}

.service-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
    object-fit: contain;
}

.section-image,
.why-image-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dark);
}

.client-logo-card {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

    .client-logo-card img {
        max-width: 160px;
        max-height: 80px;
        object-fit: contain;
        opacity: 0.65;
    }

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.stat {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

    .stat strong {
        display: block;
        color: var(--ice);
        font-family: var(--font-heading);
        font-size: 2.4rem;
    }

/* -----------------------------
   8. Lists, Badges, Tables
----------------------------- */
.features,
.feature-list {
    list-style: none;
    padding: 0;
}

.features {
    margin: 20px 0;
}

    .features li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--muted);
    }

.feature-list {
    margin: 22px 0;
}

    .feature-list li {
        position: relative;
        margin-bottom: 12px;
        padding-left: 28px;
        color: var(--text);
    }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--ice);
            font-weight: 800;
        }

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

.badge {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: rgba(0, 200, 255, 0.05);
    color: var(--ice);
    font-weight: 800;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--glass);
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

th {
    background: rgba(0, 200, 255, 0.06);
    color: var(--ice);
}

/* -----------------------------
   9. Forms and Alerts
----------------------------- */
.domain-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    max-width: 850px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--glass);
}

    .domain-box input,
    .form-control {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(3, 12, 24, 0.65);
        color: var(--white);
    }

    .domain-box input {
        min-height: 58px;
        padding: 0 24px;
        border-color: rgba(0, 200, 255, 0.22);
        border-radius: var(--radius-pill);
        background: rgba(255, 255, 255, 0.06);
        outline: none;
    }

        .domain-box input::placeholder {
            color: rgba(255, 255, 255, 0.58);
        }

.form-grid,
.contact-side {
    display: grid;
    gap: 14px;
}

.contact-side {
    gap: 24px;
}

.form-alert {
    margin-bottom: 15px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

    .form-alert.success {
        border: 1px solid rgba(0, 200, 120, 0.35);
        background: rgba(0, 200, 120, 0.12);
        color: #36e79c;
    }

    .form-alert.error {
        border: 1px solid rgba(255, 80, 80, 0.35);
        background: rgba(255, 80, 80, 0.12);
        color: #ff9b9b;
    }

/* -----------------------------
   10. Accordions and Timelines
----------------------------- */
.timeline {
    display: grid;
    gap: 14px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

    .timeline-step b {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--ice);
        color: #031421;
    }

.accordion-card button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-weight: 900;
    text-align: left;
}

.accordion-body {
    display: none;
    padding-top: 12px;
    color: var(--muted);
}

.accordion-card.open .accordion-body {
    display: block;
}

.solutions-accordion {
    display: grid;
    gap: 18px;
}

.solution-card {
    padding: 0;
    overflow: hidden;
}

.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.solution-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.1rem;
    font-weight: 700;
}

    .solution-heading img {
        width: 58px;
        height: 58px;
        object-fit: contain;
    }

.accordion-symbol {
    color: var(--ice);
    font-size: 2rem;
    line-height: 1;
}

.solution-card .accordion-body {
    max-height: 0;
    display: block;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s ease;
}

.solution-card.active .accordion-body {
    padding-bottom: 26px;
}

.solution-card .accordion-body p {
    margin-bottom: 18px;
}

/* -----------------------------
   11. Contact Page
----------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.contact-card-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    object-fit: contain;
}

.contact-card p {
    margin-bottom: 18px;
}

.contact-card a {
    color: var(--ice);
    font-weight: 700;
}

.map-placeholder,
.contact-map {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.map-placeholder {
    height: 300px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.09), rgba(255, 255, 255, 0.03));
    color: var(--muted);
    text-align: center;
}

.contact-map {
    min-height: 280px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

    .contact-map img,
    .contact-map iframe {
        width: 100%;
        min-height: 280px;
        object-fit: cover;
    }

    .contact-map iframe {
        min-height: 320px;
    }

/* -----------------------------
   12. Team / About
----------------------------- */
.team-grid {
    align-items: stretch;
}

.team-card {
    text-align: left;
}

    .team-card img {
        width: 100%;
        height: 240px;
        margin-bottom: 20px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .team-card h3 {
        margin-bottom: 6px;
    }

.team-role {
    margin-bottom: 14px;
    font-weight: 700;
}

/* -----------------------------
   13. Hosting Page
----------------------------- */
.price {
    margin: 18px 0;
    color: var(--ice);
    font-family: var(--font-heading);
    font-size: 2.8rem;
}

.hosting-page .plan {
    padding: 30px;
    border-color: rgba(0, 200, 255, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hosting-page .featured-plan {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 255, 0.45);
}

.hosting-page .price {
    margin: 20px 0;
    color: var(--ice);
    font-size: 2rem;
    font-weight: 800;
}

.hosting-page .features {
    margin: 0 0 24px;
}

    .hosting-page .features li {
        position: relative;
        margin-bottom: 11px;
        padding-left: 26px;
        border-bottom: 0;
        color: var(--text);
    }

        .hosting-page .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--ice);
            font-weight: 800;
        }

.hosting-feature-grid .card h3 {
    margin-bottom: 10px;
}

.hosting-page table {
    border-radius: var(--radius-lg);
}

.hosting-page th,
.hosting-page td {
    padding: 18px;
    border-bottom: 1px solid rgba(0, 200, 255, 0.12);
}

.hosting-page th {
    background: rgba(0, 200, 255, 0.12);
    color: var(--white);
}

.hosting-page td {
    color: var(--text);
}

.sticky-mobile-order {
    display: none;
}

/* -----------------------------
   14. Footer
----------------------------- */
.site-footer {
    padding: 58px 0 22px;
    border-top: 1px solid var(--line);
    background: var(--footer);
}

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

.footer-logo {
    width: auto;
    max-height: 42px;
    margin-bottom: 12px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: var(--muted);
}

.site-footer p,
.copyright {
    color: var(--muted);
}

.copyright {
    padding-top: 28px;
    font-size: 0.9rem;
}

/* -----------------------------
   15. Responsive Styles
----------------------------- */
@media (max-width: 900px) {
    .split-section,
    .why-grid,
    .grid-3,
    .grid-4,
    .stats,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-alt {
        clip-path: none;
    }

    .hero-with-image,
    .page-hero-solutions,
    .contact-hero,
    .cybersecurity-hero,
    .cloud-hero,
    .industries-hero,
    .resources-hero,
    .about-hero,
    .hosting-hero {
        background-position: center;
    }

    .main-nav {
        align-items: flex-start;
        gap: 0;
    }

    .nav-dropdown {
        width: 100%;
    }

        .nav-dropdown > a,
        .main-nav > a {
            width: 100%;
            padding: 14px 0;
        }

    .dropdown-menu {
        position: static;
        display: block;
        min-width: 100%;
        margin-bottom: 12px;
        border-radius: 12px;
        box-shadow: none;
    }

        .dropdown-menu a {
            padding: 10px 14px;
        }

    .hosting-page .featured-plan {
        transform: none;
    }

    .domain-box {
        grid-template-columns: 1fr;
    }

        .domain-box input,
        .domain-box button {
            width: 100%;
        }

    .team-card img {
        height: 220px;
    }

    .sticky-mobile-order {
        position: fixed;
        left: 18px;
        right: 18px;
        bottom: 18px;
        z-index: 999;
        display: block;
        text-align: center;
    }

    .hosting-page .site-footer {
        padding-bottom: 86px;
    }
}

@media (max-width: 820px) {
    .brand img {
        max-height: 82px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 8px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: rgba(10, 22, 40, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

        .main-nav.open {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .main-nav a {
            min-height: 48px;
            display: flex;
            align-items: center;
        }

    .nav-backdrop.open {
        position: fixed;
        inset: 72px 0 0;
        z-index: 900;
        display: block;
        background: rgba(0, 0, 0, 0.35);
    }

    .hero {
        padding: 40px 0;
    }

    .domain-box {
        display: grid;
    }

    table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    section {
        padding: 62px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.55rem;
    }

    .cta-row {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .card,
    .plan,
    .accordion-card {
        padding: 20px;
    }

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

.industries-hero {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.industry-grid {
    gap: 26px;
}

.industry-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 200, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

    .industry-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 200, 255, 0.42);
    }

    .industry-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        display: block;
    }

.industry-card-body {
    padding: 22px;
}

    .industry-card-body h3 {
        margin-bottom: 10px;
    }

    .industry-card-body p {
        margin: 0;
        color: var(--text);
    }

@media (max-width: 900px) {
    .industry-card img {
        height: 220px;
    }
}

/* -----------------------------
   5. Hero Sections
----------------------------- */

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: radial-gradient(circle at 25% 30%, rgba(0, 200, 255, 0.18), transparent 30%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06), transparent 28%);
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background-image: linear-gradient(rgba(0, 200, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 255, 0.06) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: linear-gradient(to bottom, #000, transparent);
        pointer-events: none;
    }

    .hero .container,
    .hero .scroll-indicator {
        position: relative;
        z-index: 2;
    }

.hero-with-image {
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

.hero-grid {
    display: grid;
    gap: 42px;
    align-items: center;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 22px;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.scroll-indicator {
    position: absolute;
    bottom: 18px;
    color: var(--ice);
    font-size: 1.5rem;
    animation: bounce 1.2s infinite;
}

.page-hero {
    padding: 88px 0 58px;
    background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.22), transparent 36%), var(--navy-2);
}

.page-hero-solutions,
.contact-hero,
.cybersecurity-hero,
.cloud-hero,
.industries-hero,
.resources-hero,
.about-hero,
.hosting-hero {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.client-confidence-section {
    overflow: hidden;
}

.client-logo-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 34px;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.client-logo-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    animation: clientLogoScroll 28s linear infinite;
}

    .client-logo-track:hover {
        animation-play-state: paused;
    }

    .client-logo-track .client-logo-card {
        flex: 0 0 230px;
        min-height: 130px;
    }

@keyframes clientLogoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.website-package-grid {
    align-items: stretch;
}

    .website-package-grid .plan {
        height: 100%;
    }

.form-label {
    color: var(--ice);
    font-weight: 800;
    margin-top: 8px;
}

.conditional-field {
    display: grid;
}

.industry-discuss-form {
    display: grid;
    gap: 36px;
}

.form-section {
    display: grid;
    gap: 16px;
}

    .form-section h2 {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(1.7rem, 3vw, 2.5rem);
        line-height: 1;
    }

.form-helper {
    max-width: 780px;
    color: var(--muted);
}

.package-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.package-option {
    cursor: pointer;
}

    .package-option input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.package-card {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .package-card h3 {
        margin-top: 0;
    }

.package-price {
    color: var(--ice);
    font-size: 1.35rem;
    font-weight: 900;
    margin: 14px 0;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text);
}

    .package-card li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--ice);
        font-weight: 900;
    }

.package-option:hover .package-card {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.package-option input:checked + .package-card {
    border-color: var(--ice);
    box-shadow: 0 0 0 2px rgba(0, 200, 255, 0.25), var(--shadow-soft);
}

.featured-package .package-card {
    border-color: rgba(0, 200, 255, 0.42);
}

.form-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    color: var(--ice);
    font-weight: 800;
    margin-top: 8px;
}

.conditional-field {
    display: grid;
    gap: 8px;
}

.form-submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 10px;
}

@media (max-width: 900px) {
    .package-selector,
    .form-two-column {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   16. Careers Page and Updated Form Styling
   Additions for careers.php and light form/card sections
===================================================== */

.careers-hero {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.careers-page .page-hero,
.careers-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
}

    .careers-hero .container {
        max-width: var(--container);
    }

    .careers-hero .lead {
        max-width: 720px;
    }

.section-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 200, 255, 0.22);
    border-radius: var(--radius-pill);
    background: rgba(0, 200, 255, 0.08);
    color: var(--ice);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 840px;
    margin: 0 auto 42px;
    text-align: center;
}

    .section-heading h2,
    .grid-2 h2,
    .contact-layout h2 {
        margin: 0 0 16px;
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1;
        letter-spacing: -0.04em;
    }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

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

.feature-card,
.service-card,
.contact-info-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dark);
}

.feature-card,
.service-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
}

    .feature-card h3,
    .service-card h3 {
        margin-top: 0;
        margin-bottom: 12px;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 1.35rem;
        line-height: 1.1;
    }

    .feature-card p,
    .service-card p {
        color: var(--text);
    }

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

    .check-list li {
        position: relative;
        margin-bottom: 12px;
        padding-left: 30px;
        color: var(--text);
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--ice);
            font-weight: 900;
        }

/* Light sections used on the Careers page */
.section.muted,
.muted {
    background: #f8fafc;
    color: #1f2937;
}

    .section.muted h1,
    .section.muted h2,
    .section.muted h3,
    .section.muted h4,
    .section.muted p,
    .section.muted li,
    .muted h1,
    .muted h2,
    .muted h3,
    .muted h4,
    .muted p,
    .muted li {
        color: #1f2937;
    }

    .section.muted .section-tag,
    .muted .section-tag {
        background: rgba(0, 200, 255, 0.12);
        color: #0a1628;
        border-color: rgba(0, 200, 255, 0.28);
    }

    .section.muted .service-card,
    .muted .service-card {
        background: #ffffff;
        color: #1f2937;
        border: 1px solid #e5e7eb;
        box-shadow: 0 18px 50px rgba(10, 22, 40, 0.08);
    }

        .section.muted .service-card h3,
        .section.muted .service-card p,
        .muted .service-card h3,
        .muted .service-card p {
            color: #1f2937;
        }

/* Careers/contact form readability fix */
.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    margin-top: 28px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
}

    .contact-info-card p {
        margin: 0 0 10px;
        color: var(--text);
    }

    .contact-info-card strong {
        color: var(--white);
    }

.contact-form {
    padding: 34px;
    background: #ffffff;
    color: #1f2937;
}

    .contact-form,
    .contact-form label,
    .contact-form p,
    .contact-form h1,
    .contact-form h2,
    .contact-form h3,
    .contact-form h4,
    .contact-form h5,
    .contact-form h6 {
        color: #1f2937 !important;
    }

        .contact-form label,
        .form-label {
            display: block;
            margin-top: 16px;
            margin-bottom: 8px;
            color: #0a1628 !important;
            font-weight: 900;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea,
        .contact-form .form-control {
            width: 100%;
            min-height: 50px;
            padding: 13px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            background: #ffffff !important;
            color: #111827 !important;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

            .contact-form input::placeholder,
            .contact-form textarea::placeholder {
                color: #6b7280 !important;
            }

            .contact-form input:focus,
            .contact-form select:focus,
            .contact-form textarea:focus,
            .contact-form .form-control:focus {
                border-color: var(--ice);
                box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.16);
            }

        .contact-form .btn-primary,
        button.btn-primary {
            margin-top: 20px;
        }

.form-alert {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

    .form-alert.success {
        border: 1px solid rgba(0, 160, 110, 0.25);
        background: #d1fae5;
        color: #065f46 !important;
    }

    .form-alert.error {
        border: 1px solid rgba(185, 28, 28, 0.22);
        background: #fee2e2;
        color: #991b1b !important;
    }

.btn-primary,
.btn-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    border: 1px solid var(--ice);
    background: var(--ice);
    color: #031421 !important;
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: #51dcff;
        color: #031421 !important;
    }

.btn-secondary {
    border: 1px solid rgba(0, 200, 255, 0.55);
    background: rgba(0, 200, 255, 0.04);
    color: var(--ice) !important;
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        background: rgba(0, 200, 255, 0.12);
        color: var(--white) !important;
    }

/* Footer resource/careers links remain consistent */
.site-footer a:hover {
    color: var(--ice);
}

/* Careers responsive refinements */
@media (max-width: 900px) {
    .careers-hero {
        min-height: 380px;
        background-position: center;
    }

    .grid-2,
    .cards-3,
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        min-height: 360px;
    }

    .contact-form,
    .feature-card,
    .service-card,
    .contact-info-card {
        padding: 24px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
