/* 
 * Corporate Elite Design
 * A complete, unique, ultra-premium dark mode corporate design.
 */

:root {
    /* Map Elite Design to Customizer Colors, allowing Admin Panel to toggle Light/Dark styles dynamically */
    --elite-dark: var(--gsw-bg, #09090b);
    --elite-dark-bg: color-mix(in srgb, var(--gsw-bg) 95%, #000);
    --elite-light: var(--gsw-text, #fafafa);
    --elite-accent: var(--gsw-accent, #3b82f6);
    --elite-accent-hover: color-mix(in srgb, var(--gsw-accent) 80%, #000);

    /* Dynamic Glassmorphism matching the selected theme (Light or Dark) */
    --elite-card: var(--gsw-card, rgba(255, 255, 255, 0.03));
    --elite-glass: color-mix(in srgb, var(--elite-card) 60%, transparent);
    --elite-glass-border: color-mix(in srgb, var(--gsw-border, rgba(255, 255, 255, 0.08)) 60%, transparent);

    /* Text muted uses a mix of the main text color */
    --elite-text-muted: color-mix(in srgb, var(--gsw-text, #a1a1aa) 75%, transparent);
}

body {
    background-color: var(--elite-dark) !important;
    color: var(--elite-light) !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* Force global typography to light mode to combat inline dynamic styles */
h1,
h2,
h3,
h4,
h5,
h6,
.elite-section-title,
.elite-bento-card__title,
.elite-case-item__content h3,
.elite-timeline__content h3,
.gsw-mega-services__head h3,
.gsw-mega-services__content strong {
    color: var(--elite-light) !important;
}

p,
.elite-section-desc,
.elite-bento-card__desc,
.elite-timeline__content p,
.elite-case-item__content p,
.gsw-mega-services__content small,
.gsw-mega-services__content p {
    color: var(--elite-text-muted) !important;
}

.gsw-neo-head__eyebrow,
.elite-hero__badge-text,
.gsw-mega-services__eyebrow {
    color: var(--elite-accent) !important;
}

/* Elite Header Modifications */
.gsw-header {
    background: rgba(9, 9, 11, 0.7) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid var(--elite-glass-border) !important;
}

.gsw-nav a {
    color: #e4e4e7 !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    padding: 8px 16px !important;
    border-radius: 99px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    border: none !important;
}

.gsw-nav a:hover,
.gsw-menu-item-services.is-mega-open>a {
    background: color-mix(in srgb, var(--elite-light) 10%, transparent) !important;
    color: var(--elite-light) !important;
}

/* Custom services mega menu override */
#gsw-mega-services {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 9, 11, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid var(--elite-glass-border) !important;
    border-bottom: 1px solid var(--elite-glass-border) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    padding: 40px 0;
}

#gsw-mega-services.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gsw-mega-services__inner {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
}

.gsw-mega-services__head h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--elite-light) !important;
}

.gsw-mega-services__eyebrow {
    color: var(--elite-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    margin-bottom: 12px;
}

.gsw-mega-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gsw-mega-services__item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--elite-glass);
    border: 1px solid var(--elite-glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.gsw-mega-services__item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.gsw-mega-services__icon {
    color: var(--elite-accent);
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsw-mega-services__content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--elite-light) !important;
}

.gsw-mega-services__content small {
    font-size: 13px;
    color: var(--elite-text-muted);
    line-height: 1.5;
}


/* -- ELITE FRONT PAGE DESIGN -- */
.elite-wrapper {
    overflow: hidden;
}

/* Animations */
.elite-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Elite Buttons */
.elite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.elite-btn--primary {
    background: var(--elite-light);
    color: var(--elite-dark);
}

.elite-btn--primary:hover {
    background: color-mix(in srgb, var(--elite-light) 90%, #000);
    transform: scale(1.02);
}

.elite-btn--secondary {
    background: transparent;
    color: var(--elite-light);
    border: 1px solid var(--elite-glass-border);
    backdrop-filter: blur(8px);
}

.elite-btn--secondary:hover {
    background: var(--elite-glass);
    border-color: rgba(255, 255, 255, 0.2);
}

.elite-btn--white {
    background: var(--elite-light);
    color: var(--elite-dark);
    padding: 18px 40px;
    font-size: 16px;
}

.elite-btn--white:hover {
    background: color-mix(in srgb, var(--elite-light) 90%, #000);
    box-shadow: 0 0 40px color-mix(in srgb, var(--elite-light) 30%, transparent);
}

/* Hero Section */
.elite-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.elite-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.elite-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 20s infinite ease-in-out alternate;
}

.elite-hero__orb-1 {
    top: 10%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

.elite-hero__orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation-delay: -5s;
}

.elite-hero__grid {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, color-mix(in srgb, var(--elite-light) 5%, transparent) 1px, transparent 1px),
        linear-gradient(to bottom, color-mix(in srgb, var(--elite-light) 5%, transparent) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.elite-hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.elite-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--elite-glass);
    border: 1px solid var(--elite-glass-border);
    border-radius: 99px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.elite-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--elite-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--elite-accent);
}

.elite-hero__badge-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.elite-hero__title {
    font-size: clamp(40px, 6vw, 84px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, #ffffff 30%, rgba(255, 255, 255, 0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elite-hero__lead {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 700px;
    margin-inline: auto;
}

.elite-hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.elite-hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.elite-hero__mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--elite-light);
    border-radius: 99px;
    position: relative;
}

.elite-hero__wheel {
    width: 4px;
    height: 8px;
    background: var(--elite-light);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Marquee Focus */
.elite-marquee-section {
    padding: 60px 0;
    border-top: 1px solid var(--elite-glass-border);
    border-bottom: 1px solid var(--elite-glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.elite-marquee-title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--elite-text-muted);
    margin-bottom: 30px;
}

.elite-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.elite-marquee::before,
.elite-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 2;
    pointer-events: none;
}

.elite-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--elite-dark), transparent);
}

.elite-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--elite-dark), transparent);
}

.elite-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.elite-marquee__item {
    font-size: 32px;
    font-weight: 800;
    padding: 0 40px;
    color: var(--elite-glass-border);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.elite-marquee__item:hover {
    color: #fff;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* Universal Section Headers */
.elite-section-header {
    margin-bottom: 60px;
    text-align: center;
}

.elite-section-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.elite-section-desc {
    font-size: 18px;
    color: var(--elite-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Bento Box */
.elite-services {
    padding: 140px 0;
    background: var(--elite-dark-bg);
}

.elite-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.elite-bento-card {
    position: relative;
    grid-column: span 1;
    background: var(--elite-glass);
    border: 1px solid var(--elite-glass-border);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.elite-bento-card:hover {
    transform: translateY(-8px);
}

.elite-bento-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.elite-bento-card--wide {
    grid-column: span 2;
}

.elite-bento-card__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elite-bento-card:hover .elite-bento-card__bg {
    opacity: 1;
}

.elite-bento-card__icon-wrap {
    width: 54px;
    height: 54px;
    background: color-mix(in srgb, var(--elite-light) 5%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

.elite-bento-card__icon-wrap .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--elite-light);
}

.elite-bento-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.elite-bento-card--large .elite-bento-card__title {
    font-size: 32px;
}

.elite-bento-card__desc {
    color: var(--elite-text-muted);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.elite-bento-card__link {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--elite-light);
    color: var(--elite-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) translate(-10px, 10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-bento-card:hover .elite-bento-card__link {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}

@media (max-width: 1024px) {
    .elite-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .elite-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(240px, auto);
    }

    .elite-bento-card--large,
    .elite-bento-card--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Process Timeline (Sticky & Elegant) */
.elite-process {
    padding: 140px 0;
    background: var(--elite-dark);
}

.elite-process__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.elite-process__left {
    position: sticky;
    top: 140px;
    align-self: start;
}

.elite-process__left .elite-section-title {
    text-align: left;
}

.elite-process__left .elite-section-desc {
    text-align: left;
    margin: 0;
}

.elite-timeline {
    position: relative;
    padding-left: 40px;
}

.elite-timeline__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--elite-glass-border), transparent);
}

.elite-timeline__item {
    position: relative;
    margin-bottom: 80px;
}

.elite-timeline__dot {
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--elite-accent);
    background: var(--elite-dark);
    transform: translateX(-50%);
    padding: 10px 0;
}

.elite-timeline__content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
}

.elite-timeline__content p {
    font-size: 16px;
    color: var(--elite-text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .elite-process__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .elite-process__left {
        position: static;
    }
}

/* Projects Parallax Showcase */
.elite-cases {
    padding: 140px 0;
    background: var(--elite-dark-bg);
}

.elite-cases-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.elite-case-item {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
    background: var(--elite-glass);
    border: 1px solid var(--elite-glass-border);
    border-radius: 32px;
    padding: 40px;
    overflow: hidden;
}

.elite-case-item:nth-child(even) {
    grid-template-columns: 7fr 5fr;
}

.elite-case-item:nth-child(even) .elite-case-item__content {
    order: 2;
}

.elite-case-item__content h3 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
}

.elite-case-item__content p {
    font-size: 18px;
    color: var(--elite-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.elite-case-item__tags {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.elite-case-item__tags span {
    padding: 8px 16px;
    border: 1px solid var(--elite-glass-border);
    border-radius: 99px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.elite-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--elite-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.elite-link-cta:hover {
    gap: 16px;
}

.elite-case-item__media {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.elite-case-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.elite-case-item:hover .elite-case-item__media img {
    transform: scale(1.05);
}

.elite-placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

@media (max-width: 900px) {

    .elite-case-item,
    .elite-case-item:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .elite-case-item:nth-child(even) .elite-case-item__content {
        order: 0;
    }

    .elite-case-item__media {
        min-height: 300px;
    }
}

/* Call to Action Premium Glass Card */
.elite-cta {
    padding: 100px 0 160px;
    background: var(--elite-dark);
}

.elite-cta__card {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--elite-glass);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    overflow: hidden;
}

.elite-cta__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--elite-accent);
    filter: blur(120px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 0;
}

.elite-cta__card h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.elite-cta__card p {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.elite-cta__card .elite-btn {
    position: relative;
    z-index: 1;
}

/* Darker Footer overrides */
.gsw-footer,
.gsw-footer[class*="gsw-footer-style-"] {
    background: var(--elite-dark) !important;
    border-top: 1px solid var(--elite-glass-border) !important;
    color: var(--elite-text-muted) !important;
}

.gsw-footer h1,
.gsw-footer h2,
.gsw-footer h3,
.gsw-footer h4 {
    color: var(--elite-light) !important;
}

.gsw-footer a,
.gsw-footer-list a {
    color: var(--elite-text-muted) !important;
}

.gsw-footer a:hover,
.gsw-footer-list a:hover {
    color: var(--elite-light) !important;
}

/* -- ELITE GLOBAL FORM & CARD OVERRIDES -- */

/* Cards, Basic Containers, Sidebar Widgets, and Neo Elements in Dark Mode */
.gsw-card,
.gsw-post,
.gsw-module-card,
.gsw-entry-content,
.gsw-page-entry,
.gsw-neo-service-card,
.gsw-neo-project-card,
.gsw-neo-team-card,
.gsw-neo-blog-card,
.gsw-testimonial-slide,
.widget,
.woocommerce ul.products li.product,
.woocommerce div.product .woocommerce-tabs .panel,
table,
th,
td,
.gsw-sidebar {
    background: var(--elite-glass) !important;
    border: 1px solid var(--elite-glass-border) !important;
    color: var(--elite-light) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 20px !important;
}

/* Typography Overrides for All Cards & Widgets */
.gsw-card h1,
.gsw-card h2,
.gsw-card h3,
.gsw-card h4,
.gsw-card h5,
.gsw-card h6,
.gsw-post h1,
.gsw-post h2,
.gsw-post h3,
.gsw-post h4,
.gsw-post h5,
.gsw-post h6,
.gsw-page-entry h1,
.gsw-page-entry h2,
.gsw-page-entry h3,
.gsw-page-entry h4,
.gsw-neo-service-card h3,
.gsw-neo-project-card h3,
.gsw-neo-team-card h3,
.gsw-neo-blog-card h3,
.widget-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.gsw-neo-head h2,
.gsw-neo-head h3,
.gsw-neo-head h1,
.gsw-neo-head h4 {
    color: var(--elite-light) !important;
}

.gsw-card p,
.gsw-post p,
.gsw-page-entry p,
.gsw-card label,
.gsw-page-entry label,
.gsw-neo-service-card p,
.gsw-neo-project-card p,
.gsw-neo-team-card p,
.gsw-neo-blog-card p,
.widget,
.widget a {
    color: var(--elite-text-muted) !important;
}

.gsw-card strong,
.gsw-card b,
.gsw-page-entry strong,
.gsw-page-entry b,
.widget-title,
.woocommerce-Price-amount {
    color: var(--elite-light) !important;
}

/* Elite Glassmorphic Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    background: color-mix(in srgb, var(--elite-light) 5%, transparent) !important;
    border: 1px solid color-mix(in srgb, var(--elite-light) 12%, transparent) !important;
    color: var(--elite-light) !important;
    border-radius: 14px !important;
    padding: 16px 20px !important;
    font-family: inherit;
    font-size: 15px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    background: color-mix(in srgb, var(--elite-light) 8%, transparent) !important;
    border-color: var(--elite-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--elite-accent) 15%, transparent), inset 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

input::placeholder,
textarea::placeholder {
    color: color-mix(in srgb, var(--elite-light) 25%, transparent) !important;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

/* Submit Buttons */
input[type="submit"],
button[type="submit"],
.wp-block-button__link,
a.gsw-neo-btn,
a.gsw-hero__btn-primary {
    background: var(--elite-light) !important;
    color: var(--elite-dark) !important;
    border: none !important;
    border-radius: 99px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--elite-dark) 20%, transparent) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effects */
input[type="submit"]:hover,
button[type="submit"]:hover,
.wp-block-button__link:hover,
a.gsw-neo-btn:hover,
a.gsw-hero__btn-primary:hover {
    background: color-mix(in srgb, var(--elite-light) 90%, #000) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px color-mix(in srgb, var(--elite-light) 20%, transparent) !important;
}

form p {
    margin-bottom: 20px;
}

/* Fallback catch-all for Neo pages texts that are still dark */
.gsw-neo-head p,
.gsw-neo-service-card p,
.gsw-neo-project-card p,
.gsw-neo-team-card p,
.gsw-neo-blog-card p,
.gsw-neo-blog-card__link,
.gsw-neo-cta p,
.gsw-service-content p,
.gsw-service-content li {
    color: var(--elite-text-muted) !important;
}

.gsw-neo-cta h2,
.gsw-service-content h1,
.gsw-service-content h2,
.gsw-service-content h3,
.gsw-service-content h4,
.gsw-page-head__title,
.gsw-entry-content h2,
.gsw-entry-content h3 {
    color: var(--elite-light) !important;
}

/* Ensure mega menu links are visible */
.gsw-mega-services__item strong {
    color: var(--elite-light) !important;
}

.gsw-mega-services__item small {
    color: var(--elite-text-muted) !important;
}

/* Icons inside Neo cards */
.gsw-neo-service-card i,
.gsw-neo-service-card span.dashicons,
.gsw-neo-project-card span.dashicons,
.gsw-neo-service-icon {
    color: var(--elite-accent) !important;
}

/* ========================================================================= */
/* --- USER REQUESTED REVISIONS --- */
/* ========================================================================= */

/* 1. Global Scrollbar Hidden */
::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
}

html,
body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* 2. Top Header & Main Header Redesign */
.gsw-top-header,
.gsw-top-header[class*="gsw-top-header-style-"] {
    background: var(--elite-dark) !important;
    color: var(--elite-text-muted) !important;
    border-bottom: 1px solid var(--elite-glass-border) !important;
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 6px 0 !important;
}

.gsw-header,
.gsw-header[class*="gsw-header-style-"] {
    background: color-mix(in srgb, var(--elite-dark) 85%, transparent) !important;
    border-bottom: 1px solid var(--elite-glass-border) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    color: var(--elite-light) !important;
}

.gsw-header.is-sticky {
    background: color-mix(in srgb, var(--elite-dark) 95%, transparent) !important;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--elite-dark) 50%, transparent) !important;
}

/* Force links in header to use elite-light */
.gsw-header a,
.gsw-menu a,
.gsw-site-title {
    color: var(--elite-light) !important;
}

.gsw-top-header__inner {
    min-height: 28px !important;
}

/* 3. Back to Top Button Overrides */
.gsw-backtop {
    background: var(--elite-glass) !important;
    border: 1px solid var(--elite-glass-border) !important;
    color: var(--elite-light) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--elite-dark) 40%, transparent) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    font-size: 18px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: center !important;
    line-height: 42px !important;
    text-decoration: none !important;
    z-index: 99 !important;
}

.gsw-backtop:hover {
    background: color-mix(in srgb, var(--elite-light) 10%, transparent) !important;
    transform: translateY(-4px) !important;
    border-color: color-mix(in srgb, var(--elite-light) 20%, transparent) !important;
}

/* 4. Internal Page Hero Banners (Neo Head, Standard Page Title) */
.gsw-neo-head,
.gsw-page-header {
    background-color: var(--elite-dark) !important;
    background-image:
        linear-gradient(to bottom, color-mix(in srgb, var(--elite-dark) 50%, transparent), color-mix(in srgb, var(--elite-dark) 95%, transparent)),
        url('../img/elite-bg.png') !important;
    background-size: cover !important;
    background-position: center 30% !important;
    background-repeat: no-repeat !important;
    border-bottom: 1px solid var(--elite-glass-border) !important;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px !important;
}

.gsw-neo-head::before,
.gsw-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, color-mix(in srgb, var(--elite-light) 5%, transparent) 1px, transparent 1px),
        linear-gradient(to bottom, color-mix(in srgb, var(--elite-light) 5%, transparent) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    z-index: 0;
}

.gsw-neo-head>*,
.gsw-page-header>* {
    position: relative;
    z-index: 10;
}

/* 5. Adjust page content wrap to look beautiful below new header */
.gsw-main-content {
    background: var(--elite-dark) !important;
    padding-top: 60px;
}

/* 6. Advanced Subpage Grids & Card Hover Enhancements */
.gsw-corporate-grid,
.gsw-neo-service-grid,
.gsw-neo-project-grid,
.gsw-neo-team-grid,
.gsw-neo-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 32px !important;
    padding: 40px 0 !important;
}

/* Supercharge cards with hover lifted depth */
.gsw-card,
.gsw-neo-service-card,
.gsw-neo-project-card,
.gsw-neo-team-card,
.gsw-neo-blog-card,
.gsw-corporate-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--elite-glass-border) !important;
}

.gsw-card:hover,
.gsw-neo-service-card:hover,
.gsw-neo-project-card:hover,
.gsw-neo-team-card:hover,
.gsw-neo-blog-card:hover,
.gsw-corporate-card:hover {
    transform: translateY(-8px) !important;
    border-color: color-mix(in srgb, var(--elite-accent) 40%, transparent) !important;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--elite-dark) 40%, transparent),
        0 0 0 1px color-mix(in srgb, var(--elite-accent) 20%, transparent) inset !important;
}

/* Beautiful Links */
a.gsw-neo-btn,
a.gsw-corporate-card__link,
a.gsw-neo-blog-card__link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 16px !important;
    font-weight: 600 !important;
    color: var(--elite-accent) !important;
    transition: gap 0.3s ease !important;
}

a.gsw-neo-btn:hover,
a.gsw-corporate-card__link:hover,
a.gsw-neo-blog-card__link:hover {
    gap: 14px !important;
    color: var(--elite-accent-hover) !important;
}

/* Beautiful form layouts */
.gsw-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}