/* ==========================================
   WELCOME PAGE ENHANCEMENTS - CSS
   ========================================== */

/* ==========================================
   1. CSS VARIABLES & THEME SYSTEM
   ========================================== */
:root {
    /* Light theme (default for landing - actually dark) */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-blue: #38bdf8;
    --accent-purple: #a855f7;
    --accent-green: #10b981;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   2. SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-green));
    width: 0%;
    transition: width 0.1s ease-out;
    border-radius: 0 2px 2px 0;
}

/* ==========================================
   3. HERO ENHANCEMENTS
   ========================================== */

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 20s infinite ease-in-out;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    bottom: 20%;
    left: -50px;
    animation-delay: -5s;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10b981, #059669);
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(20px, 20px) scale(1.02);
    }
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-blue);
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ==========================================
   4. LOADING SKELETON
   ========================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    padding: 12px;
    animation: pulse 2s infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(56, 189, 248, 0.2);
    }
}

/* ==========================================
   5. ENTRANCE ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* ==========================================
   6. STATS COUNTER SECTION
   ========================================== */
.stats-section {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.1));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
}

.stat-icon.blue {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
}

.stat-icon.purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
}

.stat-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ==========================================
   7. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        min-width: 33.333%;
    }
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.testimonial-quote {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-blue);
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.testimonial-info h5 {
    color: var(--text-primary);
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.testimonial-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.85rem;
}

.testimonial-stars {
    color: #fbbf24;
    margin-top: 0.5rem;
}

/* Slider Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dot.active {
    background: var(--accent-blue);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================
   8. FAQ SECTION
   ========================================== */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   9. PROJECTS GALLERY
   ========================================== */
.projects-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.projects-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: transparent;
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: white;
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
}

.project-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================
   10. LIVE CHAT WIDGET
   ========================================== */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

[dir="rtl"] .chat-widget {
    right: auto;
    left: 20px;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(56, 189, 248, 0.5);
}

.chat-bubble i {
    font-size: 1.8rem;
    color: white;
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--bg-secondary);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

[dir="rtl"] .chat-popup {
    right: auto;
    left: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-popup.active {
    display: block;
}

.chat-header {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-avatar img {
    width: 28px;
    height: 28px;
}

.chat-header-info h5 {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

.chat-header-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.75rem;
}

.chat-close {
    margin-inline-start: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    padding: 1.25rem;
    min-height: 150px;
}

.chat-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-actions {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
}

.chat-action-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.chat-action-btn:hover {
    transform: translateY(-2px);
}

.chat-action-btn.whatsapp {
    background: #25d366;
    color: white;
}

.chat-action-btn.call {
    background: var(--accent-blue);
    color: white;
}

/* ==========================================
   11. DARK/LIGHT MODE TOGGLE
   ========================================== */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(20deg);
}

/* Light theme styles */
body.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: #e2e8f0;
    --bg-card: rgba(0, 0, 0, 0.03);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .landing-nav,
body.light-theme .section,
body.light-theme .landing-footer {
    background: var(--bg-primary);
}

body.light-theme .section-title {
    color: var(--text-primary);
}

/* ==========================================
   12. ACCESSIBILITY
   ========================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-blue);
    color: white;
    padding: 1rem 2rem;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus indicators */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   13. WELCOME PAGE MOBILE RESPONSIVE
   ========================================== */

/* Tablet Breakpoint */
@media (max-width: 992px) {

    /* About Features - 2x2 Grid */
    .about-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Why Us Cards */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Process Timeline for tablet */
    .process-timeline {
        gap: 1rem;
    }

    .process-step {
        flex: 1;
        min-width: 180px;
    }

    /* Brands Grid - 4 columns */
    .brands-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-services {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-service-card {
        padding: 1rem !important;
        flex-direction: row !important;
        align-items: center;
        gap: 1rem;
        text-align: start;
    }

    .hero-service-card i {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
    }

    .hero-service-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .hero-service-card p {
        display: none;
    }

    /* Hero Contact - vertical */
    .hero-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* About Section - Stack layout */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* About Features - 2x2 Grid on Mobile */
    .about-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .about-feature-icon {
        margin: 0 auto;
    }

    .about-feature h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .about-feature p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    /* CCTV Section */
    .cctv-grid {
        grid-template-columns: 1fr !important;
    }

    /* Tech Features - Improved Mobile */
    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .tech-feature-card {
        padding: 1rem;
        text-align: center;
    }

    .tech-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 auto 0.5rem;
    }

    .tech-feature-card h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .tech-feature-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    /* Camera Types Grid */
    .camera-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .camera-type-card {
        padding: 0.75rem;
    }

    /* Network Section */
    .network-grid {
        grid-template-columns: 1fr !important;
    }

    .network-features {
        gap: 1rem;
    }

    /* Security Cards - 2 columns */
    .security-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .security-card {
        padding: 1.25rem;
    }

    .security-card h3 {
        font-size: 1rem;
    }

    .security-card p {
        font-size: 0.8rem;
    }

    .security-card-features p {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    /* Why Us Grid - Single Column on Mobile */
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .why-us-card {
        padding: 1.5rem;
    }

    .why-us-card h3 {
        font-size: 1.1rem;
    }

    /* Brands Grid - 3 columns on Mobile */
    .brands-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem;
    }

    .brand-card {
        padding: 1rem;
        min-height: auto;
    }

    .brand-card img {
        max-height: 30px;
    }

    .brand-fallback {
        font-size: 0.75rem !important;
    }

    .brand-text-icon {
        flex-direction: column;
        gap: 0.25rem;
    }

    .brand-text-icon i {
        font-size: 1.2rem;
    }

    .brand-text-icon span {
        font-size: 0.65rem;
    }

    /* Process Timeline - Improved Mobile */
    .process-timeline {
        flex-direction: column !important;
        gap: 0;
        position: relative;
        padding-inline-start: 50px;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        inset-inline-start: 20px;
        width: 2px;
        background: linear-gradient(to bottom, #38bdf8, #a855f7, #10b981);
    }

    .process-step {
        position: relative;
        padding: 0 0 2rem 0;
        flex: none;
        width: 100%;
    }

    .process-step::before {
        content: '';
        position: absolute;
        inset-inline-start: -30px;
        top: 20px;
        width: 12px;
        height: 12px;
        background: #38bdf8;
        border-radius: 50%;
        border: 2px solid #0f172a;
        z-index: 1;
    }

    .process-step-circle {
        display: none !important;
    }

    .process-step h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .process-step h4::before {
        content: attr(data-step);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #38bdf8, #0ea5e9);
        border-radius: 50%;
        font-size: 0.75rem;
        color: white;
        font-weight: 700;
    }

    .process-step p {
        font-size: 0.85rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.6);
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 100% !important;
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }

    /* Footer - Mobile Improvements */
    .landing-footer .container>div:first-child {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem !important;
    }

    .landing-footer .container>div:last-child {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem !important;
    }

    /* Section Headers */
    .section-header {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {

    /* Hero */
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* About Features - Still 2x2 */
    .about-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
    }

    .about-feature {
        padding: 0.75rem;
    }

    .about-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .about-feature h4 {
        font-size: 0.8rem;
    }

    .about-feature p {
        font-size: 0.7rem;
    }

    /* Tech Features - Still 2x2 */
    .tech-features-grid {
        gap: 0.5rem;
    }

    .tech-feature-card {
        padding: 0.75rem;
    }

    /* Security Cards - Single Column */
    .security-grid {
        grid-template-columns: 1fr !important;
    }

    /* Brands Grid - 2 columns */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Stats Grid - 2 columns */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Projects - Single Column */
    .projects-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .landing-footer {
        padding: 1.5rem 0 1rem !important;
    }

    /* Chat Widget */
    .chat-widget {
        bottom: 80px;
        right: 15px;
    }

    [dir="rtl"] .chat-widget {
        right: auto;
        left: 15px;
    }

    .chat-bubble {
        width: 50px;
        height: 50px;
    }

    .chat-popup {
        width: 280px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
    }
}