/* ==========================================
   CodFather Logic - Modern Website Styles
   ========================================== */

/* ==========================================
   CSS Variables & Global Styles
   ========================================== */
:root {
    /* Colors - Dark Theme */
    --primary-color: #00f2fe;
    --primary-dark: #00d9e8;
    --primary-light: #4facfe;
    --secondary-color: #f093fb;
    --accent-color: #f5576c;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Neutrals - Black Theme */
    --black: #000000;
    --dark: #0a0a0a;
    --dark-800: #111111;
    --dark-700: #1a1a1a;
    --dark-600: #242424;
    --gray: #888888;
    --light-gray: #b3b3b3;
    --lighter-gray: #d4d4d4;
    --lightest-gray: #e5e5e5;
    --white: #ffffff;
    
    /* Gradients - Dark Theme */
    --gradient-primary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    line-height: 1.6;
    background-color: var(--black);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--light-gray);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.hamburger span {
    width: 1.5rem;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(74, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 172, 254, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(74, 172, 254, 0.1);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(74, 172, 254, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 172, 254, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--light-gray);
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-gray);
    font-weight: 500;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 172, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.visual-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(135deg, rgba(74, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-color: rgba(74, 172, 254, 0.5);
    box-shadow: 0 20px 60px rgba(74, 172, 254, 0.3),
                0 0 40px rgba(74, 172, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.visual-card-1 {
    animation-delay: 0.1s;
}
.visual-card-1:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.visual-card-1 .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.visual-card-2 {
    animation-delay: 0.2s;
}
.visual-card-2:hover {
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 60px rgba(0, 242, 254, 0.3),
                0 0 40px rgba(0, 242, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.visual-card-2 .card-icon {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.visual-card-3 {
    animation-delay: 0.3s;
}
.visual-card-3:hover {
    border-color: rgba(245, 87, 108, 0.5);
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.3),
                0 0 40px rgba(245, 87, 108, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.visual-card-3 .card-icon {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.visual-card-4 {
    animation-delay: 0.4s;
}
.visual-card-4:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3),
                0 0 40px rgba(16, 185, 129, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.visual-card-4 .card-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-icon {
    font-size: 3.5rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(74, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.1) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.visual-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.card-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.visual-card:hover .card-text {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-gray);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
    opacity: 0.6;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--light-gray);
    line-height: 1.7;
    opacity: 0.85;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--dark);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 172, 254, 0.3);
    box-shadow: 0 20px 60px rgba(74, 172, 254, 0.15);
}

.service-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(74, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
    border: 1px solid rgba(74, 172, 254, 0.3);
    color: var(--white);
}

.service-card-featured .service-title,
.service-card-featured .service-description {
    color: var(--white);
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(74, 172, 254, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid rgba(74, 172, 254, 0.15);
}

.service-card-featured .service-icon {
    background: rgba(74, 172, 254, 0.15);
    border-color: rgba(74, 172, 254, 0.3);
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    opacity: 0.85;
}

.service-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(74, 172, 254, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    border: 1px solid rgba(74, 172, 254, 0.2);
}

.service-card-featured .service-features li::before {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap var(--transition-base);
}

.service-card-featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 0.75rem;
}

/* ==========================================
   Process Section
   ========================================== */
.process {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-800);
}

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

.process-step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 172, 254, 0.2);
    box-shadow: 0 15px 40px rgba(74, 172, 254, 0.1);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.6;
    opacity: 0.85;
}

/* ==========================================
   Portfolio Section
   ========================================== */
.portfolio {
    padding: var(--spacing-3xl) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 172, 254, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -30%);
    pointer-events: none;
}

.portfolio .section-subtitle {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.portfolio .section-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.portfolio .section-description {
    color: var(--light-gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(74, 172, 254, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(74, 172, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-large {
    grid-column: span 2;
}

.portfolio-large .portfolio-title {
    font-size: 2rem;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(74, 172, 254, 0.4) 0%,
        rgba(139, 92, 246, 0.4) 50%,
        rgba(240, 147, 251, 0.4) 100%);
    position: relative;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.5) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    overflow: hidden;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 16px;
    background: rgba(74, 172, 254, 0.2);
    border: 1px solid rgba(74, 172, 254, 0.3);
    color: var(--primary-light);
    width: fit-content;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-category {
    background: rgba(74, 172, 254, 0.3);
    border-color: rgba(74, 172, 254, 0.5);
    transform: translateY(-2px);
}

.portfolio-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.65rem;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.portfolio-large .portfolio-title {
    font-size: 1.5rem;
}

.portfolio-item:hover .portfolio-title {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.portfolio-desc {
    color: var(--lighter-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.875rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.portfolio-item:hover .portfolio-desc {
    transform: translateY(-2px);
    opacity: 1;
}

.portfolio-link {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    background: rgba(74, 172, 254, 0.15);
    border: 1px solid rgba(74, 172, 254, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    backdrop-filter: blur(10px);
}

.portfolio-link:hover {
    gap: 0.75rem;
    background: rgba(74, 172, 254, 0.25);
    border-color: rgba(74, 172, 254, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(74, 172, 254, 0.3);
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-800);
}

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

.about-description {
    color: var(--light-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.about-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    color: var(--white);
}

.stats-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item-large:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-icon {
    font-size: 3rem;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-number-large::after {
    content: '+';
}

.stat-label-large {
    color: var(--light-gray);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ==========================================
   Technologies Section
   ========================================== */
.technologies {
    padding: var(--spacing-3xl) 0;
    background: var(--black);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--light-gray);
    transition: all var(--transition-base);
}

.tech-item:hover {
    background: rgba(74, 172, 254, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 172, 254, 0.2);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(10, 10, 10, 1) 100%);
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 172, 254, 0.5) 50%, transparent 100%);
}

.contact .section-subtitle {
    color: var(--primary-light);
}

.contact .section-title {
    color: var(--white);
}

.contact-description {
    color: var(--light-gray);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--light-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(74, 172, 254, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-800) 100%);
    color: var(--light-gray);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 172, 254, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-logo .logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 172, 254, 0.3);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-links li {
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    opacity: 0.75;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--light-gray);
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--light-gray);
    transition: color var(--transition-base);
    opacity: 0.6;
}

.footer-legal a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.separator {
    color: var(--dark-600);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .portfolio-large {
        grid-column: span 1;
    }
    
    .service-card-featured {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 2rem;
        transition: right var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .hero {
        padding-top: 4.5rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-visual {
        height: 300px;
        gap: 1rem;
    }

    .services {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .service-card {
        padding: 1.25rem;
        min-height: auto;
    }

    .service-icon-wrapper {
        margin-bottom: 0.875rem;
    }

    .service-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .service-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .portfolio-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .rating-badge {
        font-size: 0.8rem;
    }

    .rating-number {
        font-size: 0.95rem;
    }

    .rating-stars {
        font-size: 0.85rem;
    }

    .company-info {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 35px;
        max-width: 130px;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 0.875rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .service-card {
        padding: 1.125rem;
    }

    .service-icon-wrapper {
        margin-bottom: 0.75rem;
    }

    .service-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }

    .service-card .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .rating-badge {
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    .rating-number {
        font-size: 0.85rem;
    }

    .rating-stars {
        font-size: 0.75rem;
    }

    .rating-reviews {
        font-size: 0.7rem;
    }

    .company-info {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ==========================================
   NEW SECTIONS - Ekmal Style
   ========================================== */

/* Rating Badge in Hero */
.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.rating-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-reviews {
    color: var(--gray);
    font-size: 0.85rem;
}

.company-info {
    margin: 0.5rem 0 1rem;
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services Marquee */
.services-marquee {
    background: var(--dark-800);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    width: fit-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-separator {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--dark-700);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-box {
    position: relative;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-description {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.review-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    min-height: 350px;
}

.testimonial-card {
    background: var(--dark-700);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .star {
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.author-position {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
    cursor: pointer;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--dark-600);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-600);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* CTA Sections */
.cta-collaborate {
    padding: 4rem 0;
    background: var(--dark-800);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* Footer Enhancements */
.footer-cta {
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4rem;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 172, 254, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.footer-cta .btn {
    position: relative;
    z-index: 1;
}

.footer-contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--light-gray);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(74, 172, 254, 0.3));
}

.footer-contact-item a {
    display: block;
    color: var(--light-gray);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(74, 172, 254, 0.3);
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-phone a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-phone a:hover {
    color: var(--primary-light);
}

.footer-newsletter {
    max-width: 320px;
}

.footer-newsletter .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(74, 172, 254, 0.1);
}

.newsletter-form button {
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter-form button {
    width: 100%;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-title,
    .footer-cta h2 {
        font-size: 2rem;
    }
    
    .footer-contact-info {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .marquee-item {
        font-size: 0.85rem;
    }
    
    .rating-badge {
        flex-wrap: wrap;
        font-size: 0.8rem;
    }
    
    .cta-title,
    .footer-cta h2 {
        font-size: 1.5rem;
    }
}

