:root {
    --bg-dark: #0a0a0c;
    --bg-surface: #141416;
    --bg-surface-light: #1e1e22;
    --primary: #95122c;
    --primary-hover: #b01535;
    --primary-glow: rgba(149, 18, 44, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0a5;
    --highlight: #d12440;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Cairo', sans-serif;
    
    /* Dynamic Theme Enablers */
    --border-light: rgba(255, 255, 255, 0.05);
    --border-med: rgba(255, 255, 255, 0.15);
    --border-strong: rgba(255, 255, 255, 0.2);
    --nav-bg: rgba(10, 10, 10, 0.85);
    --bg-footer: #050505;
    --svg-invert: brightness(0) invert(1);
    --white-lock: #ffffff;
    --black-lock: #000000;
    
    /* Dynamic Shadows */
    --shadow-soft: var(--shadow-soft);
    --shadow-med: var(--shadow-med);
    --shadow-hard: var(--shadow-hard);
    --shadow-glow: rgba(149, 18, 44, 0.4);
}

body.light-mode {
    --bg-dark: #f8f9fa;
    --bg-surface: #ffffff;
    --bg-surface-light: #f0f2f5;
    --text-main: #18181b;
    --text-muted: #52525b;
    --primary-glow: rgba(149, 18, 44, 0.15);
    
    --border-light: rgba(0, 0, 0, 0.08);
    --border-med: rgba(0, 0, 0, 0.15);
    --border-strong: rgba(0, 0, 0, 0.25);
    --nav-bg: rgba(248, 249, 250, 0.85);
    --bg-footer: #f4f4f5;
    --svg-invert: none;
    
    /* Light Mode Shadows - Super Soft */
    --shadow-soft: rgba(0, 0, 0, 0.04);
    --shadow-med: rgba(0, 0, 0, 0.08);
    --shadow-hard: rgba(0, 0, 0, 0.12);
    --shadow-glow: rgba(149, 18, 44, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
}

.highlight {
    color: var(--highlight);
    font-weight: 900;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary-small {
    padding: 10px 24px;
    font-size: 1rem;
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

@keyframes btnPulse {
    0% { box-shadow: 0 4px 15px var(--primary-glow); }
    50% { box-shadow: 0 4px 25px rgba(209, 36, 64, 0.6); }
    100% { box-shadow: 0 4px 15px var(--primary-glow); }
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px var(--primary-glow);
    animation: btnPulse 3s infinite;
}

.btn-primary:hover, .btn-primary-small:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--primary-glow) !important;
    animation-play-state: paused;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1320px;
    z-index: 1000;
    padding: 16px 32px;
    border-radius: 20px;
    transition: var(--transition);
    /* By default (unscrolled), it has no visible background */
}

.navbar.scrolled {
    background-color: var(--nav-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px var(--shadow-hard);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    transform-origin: right center;
}



.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: var(--svg-invert);
    margin-bottom: 20px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary-small) {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary);
    background: var(--border-light);
    transform: rotate(15deg);
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 20px;
    padding-bottom: 60px;
    overflow: hidden;
}

@keyframes glowPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    33% { transform: scale(1.1) translate(5%, 5%); opacity: 0.9; }
    66% { transform: scale(0.9) translate(-5%, -5%); opacity: 0.7; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    animation: glowPulse 12s ease-in-out infinite alternate;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.massive-text {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 48px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-graphics {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    z-index: 1;
}

.peak-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--bg-surface);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--bg-surface-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-card:hover {
    background-color: var(--bg-surface-light);
    box-shadow: 0 20px 40px var(--shadow-hard);
    border-color: var(--primary-glow);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: inline-block;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Portfolio & Blog Styles */
.portfolio {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.portfolio-item {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.portfolio-item:hover {
    border-color: rgba(149, 18, 44, 0.3);
    box-shadow: 0 15px 30px var(--shadow-hard);
}

.portfolio-image {
    height: 200px;
    background-color: var(--bg-surface-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-image.pattern-1 { background: linear-gradient(45deg, var(--bg-surface-light), var(--bg-dark)); }
.portfolio-image.pattern-2 { background: linear-gradient(135deg, var(--bg-surface), var(--primary-glow)); }
.portfolio-image.pattern-3 { background: linear-gradient(to right, var(--bg-surface-light), var(--bg-surface)); }

.portfolio-content {
    padding: 32px;
    position: relative;
    z-index: 2;
    background-color: var(--bg-surface);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.portfolio-content p {
    color: var(--text-muted);
}

.blog {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-card {
    background-color: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 20px 40px var(--shadow-hard);
}

.blog-image {
    height: 220px;
    background-color: var(--bg-surface-light);
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-image.pattern-4 { background: linear-gradient(135deg, var(--bg-surface-light), var(--primary-glow)); }
.blog-image.pattern-5 { background: linear-gradient(135deg, var(--primary-glow), var(--bg-surface)); }
.blog-image.pattern-6 { background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-light)); }

.blog-info {
    padding: 32px;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.blog-category {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(155, 27, 48, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

/* Partners */
.partners {
    padding: 80px 0;
    background-color: var(--bg-dark);
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    align-items: center;
}
.partner-logo {
    height: 80px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.4;
    /* Force flat white color across all SVG sub-layers */
    filter: brightness(0) invert(1);
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    filter: brightness(0) invert(1);
}

body.light-mode .partner-logo {
    /* Force flat black color across all SVG sub-layers */
    filter: brightness(0);
}

body.light-mode .partner-logo:hover {
    filter: brightness(0);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Marquee */
.marquee-section {
    padding: 40px 0;
    background-color: var(--primary);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.marquee-content span {
    padding: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); } /* RTL scrolling */
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.detail-item span {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-med);
    border-radius: 0;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
}

.input-field textarea {
    resize: none;
}

.input-field select option {
    background-color: var(--bg-surface);
    color: var(--text-main);
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--primary);
    box-shadow: none;
}

.submit-btn {
    width: 100%;
    margin-top: 16px;
}

/* Footer */
.footer {
    background-color: var(--bg-footer);
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(10rem, 25vw, 30rem);
    font-weight: 900;
    color: var(--border-light);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    letter-spacing: 5px;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-slogan {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-main);
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column ul.social-icons {
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.footer-column a, .footer-column span {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.footer-column ul.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--border-light);
    padding: 0;
}

.footer-column ul.social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    padding: 0;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(149, 18, 44, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-footer {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid var(--border-strong);
    border-radius: 40px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    background-color: transparent;
}

.btn-footer:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }
    .footer-brand {
        max-width: 100%;
        text-align: right;
    }
    .footer-links-grid {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* Responsive Options */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Global Mobile Margins */
    .container, .nav-container { padding: 0 10%; }
    
    /* Navbar Adjustment */
    .brand-logo { height: 35px; }
    
    .navbar {
        width: 95%;
        padding: 14px 20px;
        top: 20px;
        border-radius: 14px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px var(--shadow-hard);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.15rem !important; width: 100%; }
    
    .menu-toggle { display: flex; z-index: 1001; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    /* Layout & Padding reductions */
    .hero { padding-top: 100px; }
    .massive-text { font-size: clamp(1.8rem, 8vw, 2.5rem); margin-bottom: 16px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 32px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; padding: 14px; font-size: 1rem; }
    
    /* Sections spacing */
    .services, .portfolio, .blog, .contact, .partners { padding: 80px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.6rem; margin-bottom: 12px; }
    .section-header p { font-size: 0.95rem; }
    
    /* Cards */
    .service-card { padding: 24px; }
    .portfolio-content, .blog-info { padding: 24px; }
    .card-icon { font-size: 2rem; padding: 12px; margin-bottom: 16px; }
    .service-card h3, .portfolio-content h3, .blog-info h3 { font-size: 1.25rem; }
    
    /* Forms & Utilities */
    .input-group { grid-template-columns: 1fr; gap: 16px; }
    .contact-wrapper { gap: 40px; }
    .contact-form { padding: 0; }
    .input-field input, .input-field select, .input-field textarea { padding: 12px 16px; font-size: 0.95rem; }
    
    /* Footer Mobile Reorganization - Highly Compact */
    .footer { padding: 40px 0 20px; }
    .footer-watermark { font-size: 18vw; bottom: 2%; opacity: 0.5; }
    .footer-top { gap: 24px; margin-bottom: 24px; align-items: flex-start; text-align: right; }
    .footer-brand { text-align: right; }
    .footer-slogan { font-size: 1.3rem; max-width: 90%; }
    
    .footer-links-grid { flex-direction: column; gap: 24px; width: 100%; text-align: right; }
    .footer-column h4 { margin-bottom: 12px; font-size: 0.85rem; color: var(--primary); }
    
    /* Flow quick links and social links horizontally to save massive vertical space */
    .footer-column ul { align-items: flex-start; gap: 12px 20px; flex-direction: row; flex-wrap: wrap; }
    
    /* Keep contact emails and phones stacked so they are readable */
    .footer-column:nth-child(2) ul { flex-direction: column; gap: 8px; }
    
    .footer-bottom { flex-direction: column-reverse; gap: 16px; text-align: center; padding-top: 20px; }
    .btn-footer { width: 100%; max-width: 250px; display: inline-block; margin: 0 auto; }
}

/* Custom Fluid Cursor */
body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input,
body.custom-cursor-active select,
body.custom-cursor-active textarea {
    cursor: none !important;
}

body.custom-cursor-active .cursor-dot,
body.custom-cursor-active .cursor-outline {
    opacity: 1;
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--primary);
}
.cursor-outline {
    width: 36px; height: 36px;
    border: 1px solid rgba(155, 27, 48, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    transition-timing-function: ease-out;
}
.cursor-outline.hover-action {
    width: 50px; height: 50px;
    background-color: rgba(155, 27, 48, 0.1);
    border-color: rgba(155, 27, 48, 0.8);
}
