/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */
:root {
    /* Color Palette */
    --bg-darkest: #070913;
    --bg-darker: #0c0f1d;
    --bg-dark: #12182b;
    --bg-glass: rgba(18, 24, 43, 0.6);
    --bg-glass-hover: rgba(26, 34, 59, 0.7);
    
    --primary: #8b5cf6; /* Cyber Purple */
    --primary-glow: rgba(139, 92, 246, 0.45);
    --primary-dark: #6d28d9;
    
    --secondary: #06b6d4; /* Tech Cyan */
    --secondary-glow: rgba(6, 182, 212, 0.4);
    --secondary-dark: #0e7490;
    
    --whatsapp: #22c55e;
    --whatsapp-glow: rgba(34, 197, 94, 0.4);
    --whatsapp-dark: #16a34a;
    
    --text-main: #f3f4f6;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(139, 92, 246, 0.15);
    
    /* Layout & Animation */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --font-main: 'Cairo', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-darkest);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: right;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darkest);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 5px;
    border: 2px solid var(--bg-darkest);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
}

/* Glowing Background Blobs */
.bg-blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.blob-primary {
    background: radial-gradient(circle, var(--primary) 0%, rgba(139, 92, 246, 0) 70%);
    top: -100px;
    right: -100px;
    animation: float-blob-1 25s infinite alternate ease-in-out;
}

.blob-secondary {
    background: radial-gradient(circle, var(--secondary) 0%, rgba(6, 182, 212, 0) 70%);
    bottom: -150px;
    left: -150px;
    animation: float-blob-2 20s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 100px) scale(1.1); }
    100% { transform: translate(50px, -50px) scale(0.9); }
}

@keyframes float-blob-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -80px) scale(0.9); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ==========================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--secondary);
    color: var(--secondary);
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--secondary-glow);
}

.btn-outline {
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    background: var(--border-glass);
    border-color: var(--text-muted);
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: #fff;
    box-shadow: 0 4px 15px var(--whatsapp-glow);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--whatsapp-glow);
}

/* Badge pulse */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #c084fc;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
    letter-spacing: 0.3px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.animate-pulse {
    animation: pulse 2.5s infinite ease-in-out;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Card */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state — added via JS */
.main-header.scrolled {
    background: rgba(7, 9, 19, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(139, 92, 246, 0.12);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 80px;
    width: 100%;
}

/* Announcement Banner megashake keyframes */
@keyframes megaphone-shake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* ---- LOGO ---- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 16px var(--primary-glow);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.logo a:hover .logo-icon {
    box-shadow: 0 0 24px var(--primary-glow);
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 40%, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

/* ---- NAV LINKS ---- */
.nav-menu ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

/* ---- HEADER CTA ---- */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-call-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.header-call-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: #fff;
    box-shadow: 0 2px 12px var(--whatsapp-glow);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.header-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--whatsapp-glow);
}

/* ---- MOBILE TOGGLE ---- */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    padding: 180px 0 120px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Tech glows in background */
.hero-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    top: 5%;
    right: -10%;
    z-index: -1;
    opacity: 0.6;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    left: -10%;
    z-index: -1;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Image container with glowing effects */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(20px);
    opacity: 0.8;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    background: var(--bg-dark);
}

.hero-img {
    transition: var(--transition-smooth);
    filter: brightness(0.9) contrast(1.05);
}

.hero-image-container:hover .hero-img {
    transform: scale(1.03) rotate(-1deg);
    filter: brightness(1) contrast(1.1);
}

/* Hero animated grid lines */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Stat divider */
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
    align-self: center;
    opacity: 0.6;
}

/* Hero floating tags */
.hero-floating-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.htag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(6, 182, 212, 0.07);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    transition: var(--transition-fast);
}

.htag:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: var(--secondary);
}

.htag i {
    color: #4ade80;
    font-size: 0.75rem;
}

/* Hero floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 180px;
    height: 180px;
    background: var(--primary);
    opacity: 0.12;
    top: -30px;
    right: -40px;
    animation: float-blob-1 8s infinite alternate ease-in-out;
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: var(--secondary);
    opacity: 0.15;
    bottom: -20px;
    left: -30px;
    animation: float-blob-2 6s infinite alternate ease-in-out;
}

/* Hero image badge */
.img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    background: rgba(7, 9, 19, 0.85);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3;
}

.img-badge i {
    color: #facc15;
    font-size: 0.85rem;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    animation: scroll-bounce 2s infinite ease-in-out;
}

.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    border-radius: 2px;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* Hero CTA button sizes */
.hero-btn-wa {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.hero-btn-calc {
    padding: 1rem 1.8rem;
    font-size: 1rem;
}

/* ==========================================
   ABOUT ME SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

.about-info-card p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-info-card strong {
    color: var(--text-main);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

.highlight-box {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-glow);
}

.highlight-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.highlight-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Features (Why choose me) */
.about-features h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-features h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.features-list li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-icon-wrapper {
    font-size: 1.1rem;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    padding: 0.6rem;
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.features-list li strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.features-list li span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    position: relative;
}

.services-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary);
    filter: drop-shadow(0 0 8px var(--secondary-glow));
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   PROCESS SECTION (How it works)
   ========================================== */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    position: relative;
}

/* Dotted lines between steps on desktop */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 50px;
    left: 50px;
    height: 2px;
    background: repeating-linear-gradient(to left, var(--border-glass) 0px, var(--border-glass) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.step-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 1.8rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    border: 2px solid var(--primary);
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
    transition: var(--transition-smooth);
}

.step-card:hover .step-num {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px var(--secondary-glow);
}

/* Step icon wrap (new) */
.step-icon-wrap {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

/* Calculator Form Card */
.calculator-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.75rem;
    color: #fff;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.form-control option {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 10px;
}

/* Radio Button Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.radio-label:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(139, 92, 246, 0.3);
}

.radio-label input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.radio-label input[type="radio"]:checked + .custom-radio {
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input[type="radio"]:checked {
    background-color: rgba(139, 92, 246, 0.05);
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.04);
}

/* Calculator Result Card */
.calculator-result {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Red Glow State for Unsupport */
.calculator-result.unsupported {
    border-color: #ef4444;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15);
}

/* Amber/Yellow Glow State for Student Inquiries */
.calculator-result.warning-state {
    border-color: #eab308;
    box-shadow: 0 15px 40px rgba(234, 179, 8, 0.15);
}

.result-badge-container {
    margin-bottom: 1.5rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
}

.badge-supported {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--whatsapp);
    color: #4ade80;
}

.badge-unsupported {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
}

.badge-warning {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid #eab308;
    color: #fef08a;
}

.calculator-result h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.result-price-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.price-note-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-icon {
    color: var(--secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.detail-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.result-actions .whatsapp-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Legal Warning Container */
.legal-disclaimer {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #f87171;
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.6;
}

.legal-disclaimer i {
    font-size: 2rem;
}

/* Responsive updates for Calculator grid */
@media (max-width: 900px) {
    .pricing-calculator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary-glow);
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #eab308; /* Star Gold */
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.client-status {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.15rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    right: -10%;
    z-index: -1;
    opacity: 0.3;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    gap: 1.5rem;
}

.faq-icon {
    font-size: 1rem;
    color: var(--secondary);
    transition: var(--transition-smooth);
    background: rgba(6, 182, 212, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 1rem;
}

/* Active FAQ Item state */
.faq-item.active {
    background: rgba(18, 24, 43, 0.8);
    border-color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
    background: rgba(139, 92, 246, 0.15);
}

/* ==========================================
   CTA SECTION (Banner before footer)
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.12) 0%,
        rgba(6, 182, 212, 0.08) 50%,
        rgba(139, 92, 246, 0.12) 100%);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 2rem auto;
    filter: drop-shadow(0 0 12px var(--primary-glow));
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-section > .container > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.cta-sub i {
    color: #4ade80;
}


/* ==========================================
   FOOTER SECTION
   ========================================== */
.main-footer {
    background-color: var(--bg-darkest);
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 350px;
    line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-inline-start: 5px;
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact a:hover {
    color: #fff;
}

.text-whatsapp {
    color: var(--whatsapp);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-glass);
    margin-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   FLOATING ACTION WIDGETS
   ========================================== */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.widget-item {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
    position: relative;
}

.call-widget {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.call-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    animation: ripple 2s infinite ease-in-out;
    z-index: -1;
}

.whatsapp-widget {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
}

.whatsapp-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: ripple 2s infinite ease-in-out 1s;
    z-index: -1;
}

.widget-item:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */

/* Tablet viewports (e.g. iPad, smaller laptops) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        gap: 2.5rem;
    }
}

/* Mobile viewports (tablets & phones up to 991px) */
@media (max-width: 991px) {

    /* --- CONTAINER --- */
    .container {
        padding: 0 1.25rem;
    }

    /* --- HEADER / NAV --- */
    .logo-text {
        font-size: 1.15rem;
    }

    .service-status-badge {
        display: none !important;
    }

    /* Hide header buttons — mobile uses floating widgets */
    .header-wa-btn,
    .header-call-btn {
        display: none !important;
    }

    /* Navigation full-screen drawer */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        width: min(320px, 85vw);
        height: calc(100vh - 80px);
        background: rgba(7, 9, 19, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(139, 92, 246, 0.15);
        padding: 1.5rem 0;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.38s;
        z-index: 998;
        pointer-events: none;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0 1rem;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: 700;
        padding: 0.85rem 1rem;
        text-align: right;
        width: 100%;
        border-radius: 10px;
        margin-bottom: 0.25rem;
        background: transparent;
        border: none;
        color: var(--text-muted);
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-main);
    }

    .nav-link.active {
        background: rgba(139, 92, 246, 0.12);
        color: #fff;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }

    .mobile-menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
    }

    /* --- HERO --- */
    .hero-section {
        padding: 120px 0 70px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-btn-wa,
    .hero-btn-calc {
        width: 100%;
        justify-content: center;
    }

    .hero-floating-tags {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-orb {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .cta-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* --- SECTION HEADINGS --- */
    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* --- ABOUT --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-info-card {
        padding: 1.75rem;
    }

    /* --- SERVICES --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* --- PROCESS --- */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .process-steps::before {
        display: none;
    }

    /* --- PRICING --- */
    .pricing-main-card {
        padding: 2rem 1.5rem;
    }

    .price-value .amount {
        font-size: 2.4rem;
    }

    .price-features {
        grid-template-columns: 1fr;
    }

    /* --- CALCULATOR --- */
    .pricing-calculator-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calculator-card,
    .calculator-result {
        padding: 1.5rem;
    }

    .result-actions {
        flex-direction: column;
    }


    /* --- TESTIMONIALS --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* --- FAQ --- */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* --- FOOTER --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    /* --- FLOATING WIDGETS --- */
    .floating-widgets {
        bottom: 20px;
        right: 20px;
    }

    .widget-item {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

/* Small phone viewports (up to 576px) */
@media (max-width: 576px) {

    .container {
        padding: 0 1rem;
    }

    .main-header {
        height: auto;
    }

    .main-header .container {
        height: 65px;
    }

    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .logo-icon {
        font-size: 1.4rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* --- HERO --- */
    .hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .hero-floating-tags {
        gap: 0.4rem;
    }

    .htag {
        font-size: 0.78rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container {
        max-width: 100%;
    }

    /* --- CTA --- */
    .cta-section h2 {
        font-size: 1.7rem;
    }

    /* --- SECTION HEADINGS --- */
    .section-header h2 {
        font-size: 1.5rem;
    }

    /* --- ABOUT --- */
    .about-info-card {
        padding: 1.25rem;
    }

    /* --- SERVICE CARD --- */
    .service-card {
        padding: 1.75rem 1.25rem;
    }

    /* --- PROCESS --- */
    .step-card {
        padding: 1.75rem 1.25rem;
    }

    /* --- PRICING --- */
    .pricing-main-card {
        padding: 1.5rem 1rem;
    }

    .price-value .amount {
        font-size: 2rem;
    }

    /* --- CALCULATOR --- */
    .calculator-card,
    .calculator-result {
        padding: 1.25rem 1rem;
    }

    /* --- BUTTONS --- */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* --- TESTIMONIAL CARD --- */
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    /* --- FAQ ITEM --- */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    /* --- TOAST --- */
    .toast-msg {
        left: 20px;
        right: 20px;
        bottom: 20px;
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }

    /* --- FOOTER --- */
    .footer-brand .logo-text {
        font-size: 1.2rem;
    }

    .footer-social-links {
        justify-content: center;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to left, var(--primary), var(--secondary));
    box-shadow: 0 0 8px var(--primary-glow);
    transition: width 0.1s ease-out;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(150px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    color: #fff;
}

/* Service Status Badge */
.service-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.service-status-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background-color: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-green 2s infinite;
}

.status-dot.busy {
    background-color: #fb923c;
    box-shadow: 0 0 10px #fb923c;
    animation: pulse-orange 2s infinite;
}

.status-dot.offline {
    background-color: #f87171;
    box-shadow: 0 0 10px #f87171;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(251, 146, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}


/* Toast Notification */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(12, 15, 29, 0.95);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    font-weight: 700;
    direction: rtl;
}

.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

/* Simulator Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4)); }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75% { transform: translateX(-8px); }
    30%, 60%, 90% { transform: translateX(8px); }
}

.shake-effect {
    animation: shake 0.4s ease-in-out;
}

.search-highlight {
    background: rgba(139, 92, 246, 0.35);
    color: #fff;
    border-radius: 4px;
    padding: 0 4px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    font-weight: 700;
}

/* Ambient Cursor Glow Follower */
.cursor-glow {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.02) 60%, transparent 100%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    transform: translate3d(-50%, -50%, 0);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform, opacity;
}

@media (max-width: 992px) {
    .cursor-glow {
        display: none !important;
    }
}


