/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Black, White & Orange Theme */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c42;
    --secondary-color: #ffa500;
    --accent-color: #ff8c42;
    --dark-color: #000000;
    --darker-color: #000000;
    --light-color: #1a1a1a;
    --gray-light: #333333;
    --gray-medium: #666666;
    --gray-dark: #ffffff;
    --white: #ffffff;
    --black: #000000;
    
    /* Gradients - Orange & Black */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-secondary: linear-gradient(135deg, #ffa500 0%, #ff8c42 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo Animation */
.logo-loader {
    position: relative;
    margin-bottom: 40px;
}

.logo-square {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin: 0 auto;
    animation: logoFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-square::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: logoShine 2s infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

/* Progress Bar */
.progress-container {
    margin: 30px 0;
    width: 300px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: progressShine 3s ease-in-out infinite;
}

.progress-percentage {
    text-align: center;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-top: 10px;
    animation: percentageCount 3s ease-in-out infinite;
}

/* Loading Text */
.loading-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.loading-word {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
}

.loading-dots {
    display: flex;
    gap: 3px;
}

.loading-dots span {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0ms; }
.loading-dots span:nth-child(2) { animation-delay: 200ms; }
.loading-dots span:nth-child(3) { animation-delay: 400ms; }

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 20%;
    animation: floatUp 6s ease-in-out infinite;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation: floatUp 8s ease-in-out infinite;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    left: 60%;
    animation: floatUp 7s ease-in-out infinite;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    left: 80%;
    animation: floatUp 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    left: 10%;
    animation: floatUp 10s ease-in-out infinite;
    animation-delay: 3s;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes progressShine {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes percentageCount {
    0% { content: "0%"; }
    25% { content: "25%"; }
    50% { content: "50%"; }
    75% { content: "75%"; }
    100% { content: "100%"; }
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
    40% { transform: translateY(-10px); opacity: 1; }
}

@keyframes floatUp {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Loading Screen Responsive Styles */
@media (max-width: 768px) {
    #loading-screen {
        padding: var(--space-md);
    }
    
    .loader-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .logo-square {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .logo-glow {
        width: 80px;
        height: 80px;
    }
    
    .progress-container {
        width: 250px;
        margin: 0 auto;
    }
    
    .loading-word {
        font-size: 1rem;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    /* Mobile Logo Styles */
    .logo-image {
        height: 42px;
        max-width: 200px;
    }
    
    .footer-logo-image {
        height: 60px;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    #loading-screen {
        padding: var(--space-sm);
    }
    
    .loader-container {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0 var(--space-sm);
    }
    
    .logo-square {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 12px;
    }
    
    .progress-container {
        width: 200px;
    }
    
    .loading-word {
        font-size: 0.9rem;
    }
    
    /* Mobile Logo Styles for Small Screens */
    .logo-image {
        height: 38px;
        max-width: 160px;
    }
    
    .footer-logo-image {
        height: 50px;
        max-width: 200px;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

/* Logo Image Styles */
.logo-image {
    height: 55px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: #cccccc;
    margin-top: -0.25rem;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: var(--font-weight-medium);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: #cccccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-md);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.gradient-text {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.stat-suffix {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: var(--font-weight-medium);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
}

.mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--white);
    margin: 6px auto;
    border-radius: 1px;
    animation: scroll 2s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -2px 0;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(8px); }
    100% { opacity: 0; transform: translateY(8px); }
}

@keyframes arrow {
    0% { opacity: 0; }
    25% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

/* ===== SECTIONS ===== */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-subtitle {
    display: inline-block;
    color: #cccccc;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: #111111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: #1a1a1a;
    padding: var(--space-xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.service-description {
    color: #cccccc;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-md);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-lg);
    border: 1px solid #333;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xs);
    color: #cccccc;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--white);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: gap var(--transition-normal);
    margin-top: auto;
}

.service-link:hover {
    gap: var(--space-sm);
    color: var(--primary-color);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.portfolio-item {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    background: #1a1a1a;
    transition: all var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    padding: var(--space-md);
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.portfolio-content p {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.portfolio-links {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.portfolio-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--black);
    border-top: 1px solid #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text {
    padding-right: var(--space-lg);
}

.about-text p {
    margin-bottom: var(--space-md);
    color: #cccccc;
    line-height: 1.7;
}

.about-features {
    margin-top: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
}

.feature-item p {
    color: #999999;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--white);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 4px;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
}

.social-links h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-semibold);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    background: #1a1a1a;
    padding: var(--space-xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--black);
    color: var(--white);
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    margin-bottom: var(--space-md);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-contact i {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999999;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--space-xl);
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: calc(70px + var(--space-md)) var(--space-sm) var(--space-md);
    }
    
    .hero-content {
        padding: 0;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: var(--space-sm);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
        padding: 0 var(--space-sm);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin: var(--space-md) auto 0;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: calc(70px + var(--space-sm)) var(--space-xs) var(--space-sm);
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
        line-height: 1.1;
        margin-bottom: var(--space-sm);
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .contact-form {
        padding: var(--space-lg);
    }
    
    .form-group {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ===== SERVICE PAGES STYLES ===== */
.service-hero {
    padding: 120px 0 60px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #cccccc;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    color: #999999;
    font-size: 0.75rem;
}

.breadcrumb span {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.service-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: var(--white);
}

.service-hero-description {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    line-height: 1.6;
}

.service-hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.service-hero-image {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--light-color) 40%, transparent 100%);
}

.service-overview {
    padding: var(--space-3xl) 0;
    background: var(--black);
    border-bottom: 1px solid #333;
}

.service-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.overview-text p {
    color: #cccccc;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.overview-features {
    margin-top: var(--space-xl);
}

.feature-check {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.feature-check i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-check span {
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

.overview-image {
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.technologies {
    padding: var(--space-3xl) 0;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-lg);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--black);
    border: 1px solid #333;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.tech-name {
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    text-align: center;
}

.service-features {
    padding: var(--space-3xl) 0;
    background: var(--black);
    border-bottom: 1px solid #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: #1a1a1a;
    padding: var(--space-xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.feature-card .feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

.process {
    padding: var(--space-3xl) 0;
    background: var(--light-color);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 60px;
    background: var(--gradient-primary);
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
}

.process-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.pricing {
    padding: var(--space-3xl) 0;
    background: var(--black);
    border-bottom: 1px solid #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

/* Dynamic popular card behavior */
.pricing-grid:hover .pricing-card.popular {
    transform: scale(1);
    border: 1px solid #333;
}

.pricing-grid:hover .pricing-card:hover {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.pricing-grid:hover .pricing-card.popular:hover {
    transform: scale(1.05);
    border: 3px solid var(--white);
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 3px solid var(--white);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--white);
    color: var(--black);
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    transform: rotate(45deg);
    z-index: 1;
    transition: opacity var(--transition-normal);
}

/* Hide popular badge when hovering over other cards */
.pricing-grid:hover .pricing-card:not(:hover) .popular-badge {
    opacity: 0.3;
}

.pricing-grid:hover .pricing-card.popular:hover .popular-badge {
    opacity: 1;
}

/* Change popular card button styling when other cards are hovered */
.pricing-grid:hover .pricing-card.popular:not(:hover) .btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.pricing-grid:hover .pricing-card.popular:not(:hover) .btn-primary:hover {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.pricing-header {
    padding: var(--space-xl);
    text-align: center;
    border-bottom: 1px solid #333;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.price {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.pricing-header p {
    color: #cccccc;
}

.pricing-features {
    list-style: none;
    padding: var(--space-xl);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: #cccccc;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.pricing-card .btn {
    margin: 0 auto var(--space-xl);
    width: calc(100% - 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section {
    background: var(--black);
    padding: var(--space-3xl) 0;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform var(--transition-normal);
    max-width: 350px;
    color: var(--white);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--primary-color);
    background: #1a1a1a;
}

.notification-success i {
    color: var(--primary-color);
}

.notification-error {
    border-left: 4px solid #ef4444;
    background: #1a1a1a;
}

.notification-error i {
    color: #ef4444;
}

.notification span {
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

.notification-close {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.notification-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== FORM ERROR STYLES ===== */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== RESPONSIVE SERVICE PAGES ===== */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .service-hero-stats {
        justify-content: center;
        gap: var(--space-lg);
    }
    
    .service-hero-image {
        display: none;
    }
    
    .service-overview-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .overview-text {
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--space-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .process-item::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== CUSTOM CURSOR STYLES ===== */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.custom-cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.custom-cursor.hover {
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.5);
}

.custom-cursor-follower.hover {
    border-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* ===== SUPPORT CHANNELS ===== */
.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.support-channel {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.support-channel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.channel-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.channel-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.support-channel h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
}

.support-channel p {
    color: var(--gray-medium);
    margin-bottom: var(--space-md);
}

.channel-contact {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.channel-availability {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: var(--font-weight-medium);
}

/* ===== EMERGENCY STEPS ===== */
.emergency-steps {
    margin-top: var(--space-xl);
}

.emergency-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
}

.step-content p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== ADDITIONAL MOBILE FIXES ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .service-card,
    .portfolio-item {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure no element extends beyond viewport */
    body, html {
        overflow-x: hidden !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    /* Fix any potential wide elements */
    .section-header,
    .hero-content,
    .about-content,
    .contact-content {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix grid gaps for very small screens */
    .hero-stats,
    .features-grid,
    .pricing-grid,
    .tech-grid {
        gap: var(--space-sm) !important;
    }
    
    /* Ensure buttons and forms don't overflow */
    .btn,
    input,
    textarea,
    select {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix any potential table or pre elements */
    table, pre, code {
        overflow-x: auto;
        max-width: 100%;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Enhanced footer centering for small mobile */
    .footer-social {
        justify-content: center !important;
        margin: var(--space-md) auto 0 !important;
        width: 100%;
        max-width: 250px;
    }
    
    .footer-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }
    
    .footer-contact p {
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto var(--space-sm) !important;
        max-width: 280px;
    }
    
    .footer-section {
        text-align: center !important;
        width: 100%;
        max-width: 100%;
    }
}