﻿/* ==========================================================================
   STARTER THEME - Modern Design System
   Clean Version — Core Styles Only
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Primary Brand Colors — Steel Blue */
    --primary: #3e6d8d;
    --primary-light: #5a8aab;
    --primary-dark: #2d5570;
    --primary-darker: #1e3f55;
    --primary-glow: rgba(62, 109, 141, 0.5);
    --primary-rgb: 62, 109, 141;

    /* Secondary Colors — Bright Blue */
    --secondary: #5ba3d9;
    --secondary-light: #7bb8e8;
    --secondary-dark: #3d7fb5;
    --secondary-glow: rgba(91, 163, 217, 0.4);
    --secondary-rgb: 91, 163, 217;

    /* Accent Colors */
    --accent-gold: #e8a838;
    --accent-gold-light: #f0be5e;
    --accent-gold-dark: #c48a20;
    --accent-purple: #7c6bc4;
    --accent-purple-light: #9b8dd8;
    --accent-pink: #d94f7a;
    --accent-blue: #3e6d8d;
    --accent-orange: #e07a3a;

    /* Success/Warning/Error */
    --success: #2eaa6e;
    --warning: #e8a838;
    --error: #d94f5c;
    --info: #5ba3d9;

    /* Light Mode Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-tertiary: #edf1f7;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafd;
    --bg-overlay: rgba(255, 255, 255, 0.95);

    /* Dark Backgrounds — Based on #121d30 */
    --bg-dark: #121d30;
    --bg-dark-secondary: #0e1726;
    --bg-dark-tertiary: #1a2840;
    --bg-dark-card: rgba(255, 255, 255, 0.06);
    --bg-dark-overlay: rgba(18, 29, 48, 0.95);

    /* Text Colors */
    --text-primary: #0d1117;
    --text-secondary: #3d4656;
    --text-tertiary: #5d6779;
    --text-muted: #8590a3;
    --text-white: #ffffff;
    --text-dark-primary: #ffffff;
    --text-dark-secondary: #d1d5db;
    --text-dark-tertiary: #9ca3af;
    --text-dark-muted: #6b7280;

    /* Borders */
    --border-light: #dde3ec;
    --border-medium: #c5ced8;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-darker: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(62, 109, 141, 0.4);
    --border-glow-secondary: rgba(91, 163, 217, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3e6d8d 0%, #5ba3d9 100%);
    --gradient-primary-hover: linear-gradient(135deg, #5a8aab 0%, #7bb8e8 100%);
    --gradient-gold: linear-gradient(135deg, #e8a838 0%, #c48a20 100%);
    --gradient-purple: linear-gradient(135deg, #7c6bc4 0%, #d94f7a 100%);
    --gradient-dark: linear-gradient(135deg, #121d30 0%, #1a2840 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(18, 29, 48, 0.8) 0%, rgba(18, 29, 48, 0.95) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 50px rgba(62, 109, 141, 0.2);
    --shadow-glow-strong: 0 8px 40px rgba(62, 109, 141, 0.35);
    --shadow-glow-secondary: 0 0 50px rgba(91, 163, 217, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 15px 35px -5px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(62, 109, 141, 0.1);
    --card-shadow-active: 0 5px 15px -3px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 500;
    --z-modal-backdrop: 900;
    --z-modal: 1000;
    --z-toast: 1100;

    /* Backdrop Blur */
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(62, 109, 141, 0.12), rgba(91, 163, 217, 0.08));
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    border: 1px solid rgba(62, 109, 141, 0.3);
    backdrop-filter: var(--blur-sm);
    box-shadow: 0 2px 10px rgba(62, 109, 141, 0.1);
    transition: var(--transition-base);
}

.section-tag:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(62, 109, 141, 0.2);
    transform: translateY(-1px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-hover);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition-base);
}

.btn-outline-small:hover {
    background: var(--primary);
    color: #fff;
}

/* Glowing Button */
.btn-glow {
    position: relative;
    overflow: visible;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    border-radius: var(--radius-full);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    animation: glowRotate 4s ease-in-out infinite;
}

.btn-glow:hover::after {
    opacity: 0.9;
    filter: blur(25px);
}

@keyframes glowRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Link Button */
a.btn-secondary {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   NAVBAR (Old theme.css navbar - kept for backwards compat)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar .logo img,
.custom-logo {
    max-width: 150px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-tertiary);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: var(--text-primary);
    background: transparent;
    border: none;
    position: relative;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.hamburger:hover {
    background: var(--bg-secondary);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer,
.site-footer {
    background: #121d30;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-logo img,
.footer-brand .custom-logo-link img {
    max-width: 150px;
    height: auto;
    max-height: 50px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(62, 109, 141, 0.15);
    border-color: rgba(62, 109, 141, 0.3);
    color: #3e6d8d;
    transform: translateY(-2px);
}

/* Footer Column Titles */
.footer-col__title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

/* Footer Column Toggle (hidden on desktop) */
.footer-col__toggle {
    display: none;
}

/* Footer Link Lists */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.93rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a:hover {
    color: #3e6d8d;
    padding-left: 4px;
}

/* Footer WP Menus */
.footer-menu-nav ul,
.footer-services-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-nav ul li,
.footer-services-menu-nav ul li {
    margin-bottom: 12px;
}

.footer-menu-nav ul li a,
.footer-services-menu-nav ul li a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.93rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-menu-nav ul li a:hover,
.footer-services-menu-nav ul li a:hover {
    color: #3e6d8d;
    padding-left: 4px;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright p {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    font-size: 0.93rem;
}

.copyright small {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE - TABLET (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE (768px)
   ========================================================================== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 105px 32px 45px;
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid var(--border-light);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -12px 0 45px rgba(0, 0, 0, 0.12);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(35px);
        transition: all 0.35s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links a:not(.btn-primary) {
        display: flex;
        align-items: center;
        padding: 20px 0;
        font-size: 1.12rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a:not(.btn-primary)::after {
        display: none;
    }

    .nav-links a:not(.btn-primary)::before {
        content: '';
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        margin-right: 0;
        transition: all 0.35s ease;
    }

    .nav-links a:not(.btn-primary):hover,
    .nav-links a:not(.btn-primary):active {
        color: var(--primary);
        padding-left: 18px;
    }

    .nav-links a:not(.btn-primary):hover::before,
    .nav-links a:not(.btn-primary):active::before {
        width: 22px;
        margin-right: 14px;
    }

    .nav-links .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin-top: 28px;
        padding: 18px 26px;
        font-size: 1.02rem;
        text-align: center;
        border-radius: var(--radius-lg);
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 105px;
        background: linear-gradient(to top, var(--bg-primary), transparent);
        pointer-events: none;
    }

    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Footer Mobile */
    .site-footer .footer-grid,
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }

    .site-footer {
        padding: 50px 0 25px;
    }

    .footer-brand {
        text-align: center;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 0;
    }

    .social-links {
        justify-content: center;
    }

    /* Hide desktop title on mobile */
    .footer-col__title {
        display: none;
    }

    /* Show toggle button on mobile */
    .footer-col__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 0;
        background: transparent;
        border: none;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: color 0.25s ease;
    }

    .footer-col__toggle:hover {
        color: #3e6d8d;
    }

    .footer-col__arrow {
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.3);
    }

    .footer-col__toggle[aria-expanded="true"] .footer-col__arrow {
        transform: rotate(180deg);
        color: #3e6d8d;
    }

    /* Collapsible sections */
    .footer-collapsible {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-collapsible:last-child {
        border-bottom: none;
    }

    .footer-col__body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .footer-collapsible.open .footer-col__body {
        max-height: 400px;
        padding-bottom: 16px;
    }
}

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ========================================================================== */
@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
        right: -100%;
        border-left: none;
        padding: 90px 25px 40px;
    }

    .nav-links a:not(.btn-primary) {
        padding: 16px 0;
        font-size: 1rem;
    }

    .nav-links .btn-primary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

.gap-4 {
    gap: 32px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}