/*
Theme Name: GetWay Rightway
Theme URI: https://getwaydark.netlify.app
Author: GetWay Rightway
Author URI: https://getwayrightway.com
Description: Enterprise IT Solutions Theme - Dark/Light mode with mega menu, hero section, services, and customizer options.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: getway-rightway
Tags: dark-mode, business, corporate, one-column, two-columns, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template
*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --getway-navy: #234361;
    --getway-red: #C43939;
    --getway-bg: #f8fafc;
    --getway-dark-bg: #050b16;
    --getway-dark-secondary: #0A192F;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;
    --border-radius-3xl: 3rem;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #0f172a;
    transition: background-color 0.5s ease, color 0.5s ease;
    line-height: 1.6;
}

body.dark-mode {
    background-color: var(--getway-dark-bg);
    color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-lg {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 2.5rem;
}

/* ===== SUPPORT BAR ===== */
.getway-support-bar {
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.625rem 0;
    transition: var(--transition-base);
}

.dark-mode .getway-support-bar {
    background-color: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.getway-support-bar .inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .getway-support-bar .inner {
        justify-content: space-between;
    }
}

.getway-support-bar a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #334155;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.dark-mode .getway-support-bar a {
    color: #94a3b8;
}

.getway-support-bar a:hover {
    color: var(--getway-red);
}

.getway-support-bar .dot {
    color: var(--getway-red);
}

.getway-support-bar .tagline {
    display: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #334155;
}

.dark-mode .getway-support-bar .tagline {
    color: #94a3b8;
}

@media (min-width: 1024px) {
    .getway-support-bar .tagline {
        display: block;
    }
}

/* ===== HEADER / NAVBAR ===== */
.getway-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.dark-mode .getway-header {
    background-color: #050b16;
    border-color: #374151;
    box-shadow: none;
}

.getway-header .header-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 5rem;
    position: relative;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .getway-header .header-inner {
        padding: 0 2.5rem;
    }
}

/* Logo */
.getway-logo-wrap {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

@media (min-width: 1024px) {
    .getway-logo-wrap {
        position: static;
        transform: none;
        margin-right: 2.5rem;
    }
}

.getway-logo-wrap img {
    height: 4rem;
    width: auto;
    margin-bottom: 0.5rem;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.dark-mode .logo-light {
    display: none;
}

.dark-mode .logo-dark {
    display: block;
}

/* Desktop Nav */
.getway-nav {
    display: none;
    height: 100%;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .getway-nav {
        display: flex;
    }
}

/* Mega Menu Trigger */
.nav-dropdown {
    /* No position:relative — mega menu anchors to .getway-header (sticky) */
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-dropdown>button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    color: var(--getway-navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-base);
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.dark-mode .nav-dropdown>button {
    color: #cbd5e1;
}

.nav-dropdown>button:hover {
    color: var(--getway-red);
}

.dark-mode .nav-dropdown>button:hover {
    color: #ffffff;
}

/* Mega Menu — positioned relative to .getway-header (sticky) */
.mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    /* top is set dynamically via JS; fallback = header height */
    top: var(--getway-header-bottom, 5rem);
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    transform: translateY(8px);
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.dark-mode .mega-menu {
    background: #020817;
    border-color: #4b5563;
}

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

.mega-menu-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 2.5rem;
    gap: 2.5rem;
}

.mega-menu-list-col {
    grid-column: span 4;
    max-height: 31.25rem;
    overflow-y: auto;
    padding-right: 1.5rem;
}

.mega-menu-list-col::-webkit-scrollbar {
    width: 3px;
}

.mega-menu-list-col::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.mega-menu-cat-title {
    font-size: 10px;
    font-weight: 900;
    color: var(--getway-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--getway-red);
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 13px;
    font-weight: 700;
    color: var(--getway-navy);
    transition: var(--transition-base);
}

.dark-mode .mega-menu-list a {
    color: #94a3b8;
}

.mega-menu-list a:hover {
    background-color: #f8fafc;
    color: var(--getway-red);
}

.dark-mode .mega-menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--getway-red);
}

.mega-menu-list a svg {
    width: 1rem;
    height: 1rem;
    color: var(--getway-red);
    flex-shrink: 0;
}

/* Mega Menu Preview Panel */
.mega-menu-preview {
    grid-column: span 8;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-3xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(12px);
    transition: var(--transition-slow);
}

.dark-mode .mega-menu-preview {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(196, 57, 57, 0.15);
}

.mega-menu-preview-text {
    max-width: 20rem;
}

.mega-menu-preview-text h4 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--getway-navy);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.dark-mode .mega-menu-preview-text h4 {
    color: #64748b;
}

.mega-menu-preview-text p {
    color: #475569;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.mega-menu-preview-text .btn-preview {
    background-color: var(--getway-navy);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: 'Inter', sans-serif;
}

.mega-menu-preview-icon {
    width: 10rem;
    height: 10rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    border: 12px solid #f8fafc;
    flex-shrink: 0;
}

.dark-mode .mega-menu-preview-icon {
    background: #1e293b;
    border-color: #0f172a;
}

.mega-menu-preview-icon svg {
    width: 5rem;
    height: 5rem;
    color: var(--getway-navy);
}

.dark-mode .mega-menu-preview-icon svg {
    color: #ffffff;
}

/* Header Right Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-quote {
    display: none;
    background-color: var(--getway-red);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

@media (min-width: 1024px) {
    .btn-quote {
        display: block;
    }
}

.btn-quote:hover {
    background: transparent;
    color: var(--getway-navy);
    border-color: #cbd5e1;
}

.dark-mode .btn-quote:hover {
    color: #ffffff;
    border-color: #4b5563;
    background-color: #374151;
}

/* Theme Toggle */
.btn-theme-toggle {
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: var(--transition-base);
    position: absolute;
    right: 3rem;
}

@media (min-width: 1024px) {
    .btn-theme-toggle {
        position: static;
        margin-left: 1rem;
    }
}

.dark-mode .btn-theme-toggle {
    background: #1e293b;
    color: #facc15;
}

.btn-theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-moon {
    display: block;
}

.icon-sun {
    display: none;
}

.dark-mode .icon-moon {
    display: none;
}

.dark-mode .icon-sun {
    display: block;
}

/* Mobile Menu Toggle */
.btn-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 1rem;
}

@media (min-width: 1024px) {
    .btn-mobile-toggle {
        display: none;
    }
}

.btn-mobile-toggle span {
    display: block;
    height: 2px;
    background-color: var(--getway-navy);
    border-radius: 9999px;
    transition: var(--transition-base);
}

.dark-mode .btn-mobile-toggle span {
    background-color: #e2e8f0;
}

.btn-mobile-toggle span:nth-child(1) {
    width: 1.5rem;
}

.btn-mobile-toggle span:nth-child(2) {
    width: 1rem;
}

.btn-mobile-toggle span:nth-child(3) {
    width: 1.5rem;
}

/* ===== MOBILE SIDEBAR ===== */
#getway-mobile-sidebar {
    position: fixed;
    inset: 0;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.dark-mode #getway-mobile-sidebar {
    background: #050b16;
}

#getway-mobile-sidebar.sidebar-active {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    #getway-mobile-sidebar {
        display: none;
    }
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.dark-mode .sidebar-header {
    background: rgba(5, 11, 22, 0.8);
    border-color: #374151;
}

.sidebar-header img {
    height: 3.5rem;
    width: auto;
}

.btn-close-sidebar {
    background: none;
    border: none;
    font-size: 2.25rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--getway-navy);
    padding: 0 0.5rem;
    line-height: 1;
    border-radius: 0.5rem;
}

.dark-mode .btn-close-sidebar {
    color: #e2e8f0;
}

.sidebar-content {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

/* Mobile Nav Accordion */
.mob-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.dark-mode .mob-nav-item {
    border-color: #1e293b;
}

.mob-nav-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--getway-navy);
    text-transform: uppercase;
    padding: 1rem 1rem;
    border-left: 4px solid var(--getway-red);
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.dark-mode .mob-nav-toggle {
    color: #e2e8f0;
}

.mob-nav-toggle .icon {
    font-size: 1.25rem;
}

.mob-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mob-nav-sub.open {
    max-height: 1000px;
    padding-bottom: 1.25rem;
}

.mob-nav-sub a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(35, 67, 97, 0.7);
    padding: 0.5rem 0;
}

.dark-mode .mob-nav-sub a {
    color: #cbd5e1;
}

.mob-nav-link {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--getway-navy);
    text-transform: uppercase;
    padding: 1rem 1rem;
    border-left: 4px solid var(--getway-red);
    border-bottom: 1px solid #f1f5f9;
}

.dark-mode .mob-nav-link {
    color: #cbd5e1;
}

.mob-nav-link-red {
    color: var(--getway-red) !important;
    border-left-color: var(--getway-navy) !important;
}

.dark-mode .mob-nav-link-red {
    border-left-color: #e2e8f0 !important;
}

/* Sidebar Contact Box */
.sidebar-contact {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.dark-mode .sidebar-contact {
    background: rgba(51, 65, 85, 0.5);
}

.sidebar-contact .label {
    font-size: 10px;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.dark-mode .sidebar-contact .label {
    color: #e2e8f0;
}

.sidebar-contact .phone {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--getway-navy);
}

.dark-mode .sidebar-contact .phone {
    color: #e2e8f0;
}

.sidebar-contact .email {
    font-size: 0.875rem;
    color: var(--getway-red);
    font-weight: 500;
    font-style: italic;
}

/* ===== HERO SECTION ===== */
.getway-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8fafc;
    transition: var(--transition-slow);
    padding: 5rem 0;
}

.dark-mode .getway-hero {
    background-color: var(--getway-dark-bg);
}

.hero-bg-blob-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 37.5rem;
    height: 37.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.dark-mode .hero-bg-blob-1 {
    background: rgba(59, 130, 246, 0.03);
}

.hero-bg-blob-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 31.25rem;
    height: 31.25rem;
    background: rgba(196, 57, 57, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.dark-mode .hero-bg-blob-2 {
    background: rgba(196, 57, 57, 0.02);
}

.hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text-card {
    padding: 2rem;
    border-radius: var(--border-radius-3xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(148, 163, 184, 0.3);
}

@media (min-width: 768px) {
    .hero-text-card {
        padding: 3rem;
    }
}

.dark-mode .hero-text-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(196, 57, 57, 0.1);
    color: var(--getway-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.dark-mode .hero-title {
    color: #ffffff;
}

.hero-title .accent {
    color: var(--getway-red);
}

.hero-desc {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.75;
}

.dark-mode .hero-desc {
    color: rgba(191, 219, 254, 0.6);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--getway-red);
    color: #ffffff;
    font-weight: 700;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-hero-primary:hover {
    background-color: #b91c1c;
    box-shadow: 0 0 20px rgba(196, 57, 57, 0.4);
    color: #ffffff;
}

.btn-hero-primary svg {
    width: 1rem;
    height: 1rem;
}

/* Hero Image Grid */
.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-img-col-top {
    padding-top: 3rem;
}

.hero-img-wrap {
    border-radius: var(--border-radius-3xl);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dark-mode .hero-img-wrap {
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-img-wrap img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-img-wrap:hover img {
    transform: scale(1.1);
}

/* ===== SERVICES SECTION ===== */
.getway-services {
    padding: 6rem 0;
    background: #f8fafc;
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
}

.dark-mode .getway-services {
    background: var(--getway-dark-bg);
}

.services-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background: rgba(196, 57, 57, 0.05);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    display: none;
}

.dark-mode .services-glow {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    color: var(--getway-red);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
}

.dark-mode .section-title {
    color: #ffffff;
}

.section-divider {
    width: 5rem;
    height: 0.375rem;
    background: var(--getway-red);
    margin: 0 auto;
    border-radius: 9999px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    border-radius: var(--border-radius-3xl);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(148, 163, 184, 0.3);
}

.dark-mode .service-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.service-card:hover {
    border-color: var(--getway-red);
    transform: translateY(-0.5rem);
}

.dark-mode .service-card:hover {
    border-color: var(--getway-red);
}

.service-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(196, 57, 57, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-slow);
}

.service-card:hover .service-icon-wrap {
    background: var(--getway-red);
}

.service-icon-wrap svg {
    width: 2rem;
    height: 2rem;
    color: var(--getway-red);
    transition: var(--transition-slow);
}

.service-card:hover .service-icon-wrap svg {
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.dark-mode .service-card h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.dark-mode .service-card p {
    color: #94a3b8;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    color: var(--getway-red);
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition-base);
    gap: 0;
}

.service-card a:hover {
    gap: 0.5rem;
}

/* ===== WEB DEV FEATURE SECTION ===== */
.getway-feature {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition-slow);
}

.dark-mode .getway-feature {
    background: #0A192F;
}

.feature-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .feature-inner {
        flex-direction: row;
    }
}

.feature-image-col {
    flex: 1;
    position: relative;
}

.feature-image-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(196, 57, 57, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.feature-image-col:hover .feature-image-glow {
    opacity: 1;
}

.feature-image-frame {
    position: relative;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-2xl);
}

.dark-mode .feature-image-frame {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-image-frame img {
    border-radius: 1.25rem;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.7s ease;
}

.feature-image-col:hover .feature-image-frame img {
    filter: grayscale(0);
}

.feature-badge-overlay {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--getway-red);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(196, 57, 57, 0.4);
    display: none;
}

@media (min-width: 768px) {
    .feature-badge-overlay {
        display: block;
    }
}

.feature-badge-overlay .small {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-badge-overlay .big {
    font-size: 1.5rem;
    font-weight: 900;
}

.feature-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-label {
    font-size: 10px;
    font-weight: 900;
    color: var(--getway-red);
    text-transform: uppercase;
    letter-spacing: 0.25rem;
}

.feature-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 900;
    color: var(--getway-navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.dark-mode .feature-title {
    color: #ffffff;
}

.feature-title .muted {
    color: #94a3b8;
}

.feature-desc {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
    max-width: 32rem;
}

.dark-mode .feature-desc {
    color: #94a3b8;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dark-mode .feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.btn-feature {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--getway-navy);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
    align-self: flex-start;
}

.dark-mode .btn-feature {
    background: #ffffff;
    color: var(--getway-navy);
}

.btn-feature:hover {
    background: var(--getway-red);
    color: #ffffff;
}

/* ===== FOOTER ===== */
.getway-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    transition: var(--transition-slow);
    padding: 0;
}

.dark-mode .getway-footer {
    background: #0d1b2a;
    border-color: rgba(255, 255, 255, 0.05);
}

.footer-inner-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-3xl);
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: 1rem;
}

@media (min-width: 768px) {
    .footer-inner-wrap {
        padding: 2rem;
        margin: 2rem;
    }
}

.dark-mode .footer-inner-wrap {
    background: rgba(51, 65, 85, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.footer-grid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        padding: 0 1.5rem;
        gap: 3rem;
        margin-bottom: 5rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 3fr 2fr 2fr 2fr;
    }
}

/* Footer Brand */
.footer-brand {}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-decoration: none;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--getway-red);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-icon {
    transform: scale(1.05);
}

.footer-logo-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo-text {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-base);
}

.dark-mode .footer-logo-text {
    color: #94a3b8;
}

.footer-logo-link:hover .footer-logo-text {
    color: var(--getway-red);
}

.footer-desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.75;
    max-width: 20rem;
    margin-bottom: 1.5rem;
}

.dark-mode .footer-desc {
    color: #94a3b8;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.dark-mode .footer-social-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--getway-red);
    border-color: var(--getway-red);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #475569;
    transition: var(--transition-base);
}

.dark-mode .footer-social-link svg {
    color: #cbd5e1;
}

.footer-social-link:hover svg {
    color: #ffffff;
}

/* Footer Nav Columns */
.footer-nav-col {}

.footer-nav-title {
    font-size: 0.875rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dark-mode .footer-nav-title {
    color: #ffffff;
}

.footer-nav-title .dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--getway-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-list a {
    font-size: 0.875rem;
    color: #475569;
    transition: var(--transition-base);
    display: inline-block;
}

.dark-mode .footer-nav-list a {
    color: #94a3b8;
}

.footer-nav-list a:hover {
    color: var(--getway-red);
    transform: translateX(0.25rem);
}

.dark-mode .footer-nav-list a:hover {
    color: #ffffff;
}

.footer-nav-list .link-red {
    color: var(--getway-red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}

/* Footer Contact */
.footer-contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-3xl);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-contact-box {
        padding: 1.25rem 2rem;
    }
}

.dark-mode .footer-contact-box {
    border-color: #334155;
    background: rgba(51, 65, 85, 0.5);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-icon {
    background: rgba(196, 57, 57, 0.1);
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--getway-red);
}

.footer-contact-label {
    font-size: 10px;
    font-weight: 900;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.footer-contact-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1.5;
}

.dark-mode .footer-contact-value {
    color: #cbd5e1;
}

.footer-contact-value a:hover {
    color: var(--getway-red);
}

/* Footer Bottom */
.footer-bottom {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-top: 2px solid rgba(196, 57, 57, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.dark-mode .footer-bottom {
    border-color: rgba(196, 57, 57, 0.5);
}

.footer-bottom-rule {
    width: 6rem;
    height: 0.25rem;
    background: var(--getway-red);
    border-radius: 9999px;
    opacity: 0.5;
}

.footer-copy {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
}

.dark-mode .footer-copy {
    color: rgba(191, 219, 254, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
}

.dark-mode .footer-legal-links a {
    color: rgba(147, 197, 253, 0.3);
}

.footer-legal-links a:hover {
    color: var(--getway-red);
}

.dark-mode .footer-legal-links a:hover {
    color: #ffffff;
}

/* ===== WORDPRESS SPECIFIC ===== */
.alignnone {
    margin: 1rem 1rem 1rem 0;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.alignright {
    float: right;
    margin: 1rem 0 1rem 1rem;
}

.alignleft {
    float: left;
    margin: 1rem 1rem 1rem 0;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}
/* ===== WP STANDARD MENU STYLES (getway-primary-menu) ===== */
.getway-primary-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.getway-primary-menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.getway-primary-menu > li > a {
    font-size: 11px;
    font-weight: 700;
    color: var(--getway-navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-base);
    padding: 1rem 0;
}

.dark-mode .getway-primary-menu > li > a {
    color: #cbd5e1;
}

.getway-primary-menu > li > a:hover,
.getway-primary-menu > li.current-menu-item > a {
    color: var(--getway-red);
}

.dark-mode .getway-primary-menu > li > a:hover,
.dark-mode .getway-primary-menu > li.current-menu-item > a {
    color: #ffffff;
}

/* Dropdown arrow for WP menu */
.getway-primary-menu > li.menu-item-has-children > a::after {
    content: "▼";
    font-size: 8px;
    margin-left: 4px;
    opacity: 0.7;
}

/* WP Dropdown styles */
.getway-primary-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 100;
}

.dark-mode .getway-primary-menu ul.sub-menu {
    background: #0f172a;
    border-color: #334155;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.getway-primary-menu > li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.getway-primary-menu ul.sub-menu li {
    display: block;
    position: relative;
}

.getway-primary-menu ul.sub-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.dark-mode .getway-primary-menu ul.sub-menu a {
    color: #cbd5e1;
}

.getway-primary-menu ul.sub-menu a:hover {
    color: var(--getway-red);
    background: rgba(196,57,57,0.05);
}

/* Deep dropdowns */
.getway-primary-menu ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0.25rem;
}

/* ===== WP STANDARD MOBILE MENU STYLES (getway-mobile-menu) ===== */
.getway-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.getway-mobile-menu li {
    border-bottom: 1px solid #f1f5f9;
}

.dark-mode .getway-mobile-menu li {
    border-bottom-color: rgba(255,255,255,0.05);
}

.getway-mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--getway-navy);
    text-decoration: none;
}

.dark-mode .getway-mobile-menu a {
    color: #ffffff;
}

.getway-mobile-menu ul.sub-menu {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0;
    border-top: 1px solid #f1f5f9;
}

.dark-mode .getway-mobile-menu ul.sub-menu {
    border-top-color: rgba(255,255,255,0.05);
}

.getway-mobile-menu ul.sub-menu a {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: #475569;
}

.dark-mode .getway-mobile-menu ul.sub-menu a {
    color: #94a3b8;
}
