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

body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    text-align: right;
    background-color: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.8;
    font-size: var(--font-base);
    font-weight: var(--font-regular);
}

/* Image Loading States */
img {
    max-width: 100%;
    height: auto;
}

img.loading {
    filter: blur(5px);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

img.loaded,
img.lazy-loaded {
    filter: blur(0);
    opacity: 1;
}

img.error {
    opacity: 0.3;
    filter: grayscale(100%);
}

/* Lazy Loading Placeholder */
img[loading="lazy"]:not(.lazy-loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Connection-based optimizations */
html[data-save-data="true"] img[loading="lazy"] {
    display: none; /* Hide non-critical images in save-data mode */
}

html[data-connection="slow-2g"] .hero-hands,
html[data-connection="2g"] .hero-hands,
html[data-connection="slow-2g"] .floating-element,
html[data-connection="2g"] .floating-element {
    display: none; /* Hide decorative elements on slow connections */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Utility Classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.tablet-only {
    display: none;
}

@media (max-width: 1023px) {
    .desktop-only {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tablet-only {
        display: block;
    }
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
    
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-tablet-up {
        display: none !important;
    }
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Spacing Utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Text Utilities */
.text-center {
    text-align: center;
}

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

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

@media (max-width: 767px) {
    .mobile-text-center {
        text-align: center;
    }
}

/* ============================================
   COMPREHENSIVE DESIGN SYSTEM
   ============================================ */

/* Design System Variables */
:root {
    /* ======= COLOR PALETTE ======= */
    
    /* Primary Brand Colors */
    --color-primary-50: #f3f0ff;
    --color-primary-100: #e9e3ff;
    --color-primary-200: #d6ccff;
    --color-primary-300: #b8a5ff;
    --color-primary-400: #9575ff;
    --color-primary-500: var(--color-primary-500);
    --color-primary-600: var(--color-primary-600);
    --color-primary-700: #4c1d95;
    --color-primary-800: #3b1878;
    --color-primary-900: #2d1065;

    /* Secondary Colors */
    --color-secondary-50: #f8fafc;
    --color-secondary-100: #f1f5f9;
    --color-secondary-200: var(--border-light);
    --color-secondary-300: #cbd5e1;
    --color-secondary-400: #94a3b8;
    --color-secondary-500: #64748b;
    --color-secondary-600: #475569;
    --color-secondary-700: #334155;
    --color-secondary-800: #1e293b;
    --color-secondary-900: #0f172a;

    /* Success Colors */
    --color-success-50: #f0fdf4;
    --color-success-100: #dcfce7;
    --color-success-200: #bbf7d0;
    --color-success-300: #86efac;
    --color-success-400: #4ade80;
    --color-success-500: #22c55e;
    --color-success-600: #16a34a;
    --color-success-700: #15803d;
    --color-success-800: #166534;
    --color-success-900: #14532d;

    /* Warning Colors */
    --color-warning-50: var(--bg-white)beb;
    --color-warning-100: #fef3c7;
    --color-warning-200: #fde68a;
    --color-warning-300: #fcd34d;
    --color-warning-400: #fbbf24;
    --color-warning-500: #f59e0b;
    --color-warning-600: #d97706;
    --color-warning-700: #b45309;
    --color-warning-800: #92400e;
    --color-warning-900: #78350f;

    /* Error Colors */
    --color-error-50: #fef2f2;
    --color-error-100: #fee2e2;
    --color-error-200: #fecaca;
    --color-error-300: #fca5a5;
    --color-error-400: #f87171;
    --color-error-500: #ef4444;
    --color-error-600: #dc2626;
    --color-error-700: #b91c1c;
    --color-error-800: #991b1b;
    --color-error-900: #7f1d1d;

    /* Neutral Colors */
    --color-neutral-50: #fafafa;
    --color-neutral-100: #f5f5f5;
    --color-neutral-200: #e5e5e5;
    --color-neutral-300: #d4d4d4;
    --color-neutral-400: #a3a3a3;
    --color-neutral-500: #737373;
    --color-neutral-600: #525252;
    --color-neutral-700: #404040;
    --color-neutral-800: #262626;
    --color-neutral-900: #171717;

    /* ======= SEMANTIC COLOR VARIABLES ======= */
    
    /* Background Colors */
    --bg-primary: var(--color-primary-50);
    --bg-secondary: var(--color-neutral-50);
    --bg-white: var(--bg-white)fff;
    --bg-light: var(--color-neutral-100);
    --bg-muted: var(--color-neutral-200);
    --bg-dark: var(--color-neutral-900);

    /* Text Colors */
    --text-primary: var(--color-primary-500);
    --text-secondary: var(--color-primary-600);
    --text-dark: var(--color-neutral-800);
    --text-body: var(--color-neutral-600);
    --text-muted: var(--color-neutral-500);
    --text-light: var(--color-neutral-400);
    --text-white: var(--bg-white)fff;

    /* Border Colors */
    --border-light: var(--color-neutral-200);
    --border-medium: var(--color-neutral-300);
    --border-dark: var(--color-neutral-400);
    --border-primary: var(--color-primary-500);

    /* Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --shadow-primary: rgba(107, 70, 193, 0.3);

    /* ======= GRADIENTS ======= */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    --gradient-primary-light: linear-gradient(135deg, var(--color-primary-100) 0%, var(--color-primary-200) 100%);
    --gradient-primary-dark: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-700) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-secondary-500) 0%, var(--color-secondary-600) 100%);
    --gradient-hero: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 50%, var(--color-primary-700) 100%);
    
    /* ======= LAYOUT VARIABLES ======= */
    
    /* Viewport Height (dynamically set via JS for mobile) */
    --vh: 1vh;
    
    /* Breakpoints (for reference in calculations) */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-wide: 1200px;
    
    /* ======= TYPOGRAPHY VARIABLES ======= */
    
    /* Font Weight Variables */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    
    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 30px;
    --font-4xl: 36px;
    --font-5xl: 48px;
    --font-6xl: 60px;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
}

/* Heading Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: var(--font-5xl);
    line-height: 1.1;
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: var(--font-4xl);
    line-height: var(--leading-tight);
    font-weight: var(--font-bold);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: var(--font-3xl);
    line-height: var(--leading-snug);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

h4 {
    font-size: var(--font-2xl);
    line-height: var(--leading-snug);
    font-weight: var(--font-medium);
    margin-bottom: 0.75rem;
}

h5 {
    font-size: var(--font-xl);
    line-height: var(--leading-normal);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
}

h6 {
    font-size: var(--font-lg);
    line-height: var(--leading-normal);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
}

/* Body Text Typography */
p {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-regular);
    color: var(--text-body);
    margin-bottom: 1rem;
}

/* Lead/Intro Text */
.lead, .intro-text {
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-regular);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Small Text */
.text-sm, small {
    font-size: var(--font-sm);
    line-height: var(--leading-normal);
    color: var(--text-muted);
}

.text-xs {
    font-size: var(--font-xs);
    line-height: var(--leading-normal);
    color: var(--text-light);
}

/* Large Text */
.text-lg {
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
}

.text-xl {
    font-size: var(--font-xl);
    line-height: var(--leading-relaxed);
}

.text-2xl {
    font-size: var(--font-2xl);
    line-height: var(--leading-snug);
}

/* Font Weight Utilities */
.font-light { font-weight: var(--font-light); }
.font-regular { font-weight: var(--font-regular); }
.font-medium { font-weight: var(--font-medium); }
.font-bold { font-weight: var(--font-bold); }

/* Enhanced Text Color Classes */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-white { color: var(--text-white); }
.text-dark { color: var(--text-dark); }
.text-gray { color: var(--text-body); }

/* Additional Color Utilities */
.text-success { color: var(--color-success-500); }
.text-warning { color: var(--color-warning-500); }
.text-error { color: var(--color-error-500); }

/* Background Color Utilities */
.bg-primary { background-color: var(--color-primary-500); }
.bg-primary-light { background-color: var(--color-primary-100); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-muted { background-color: var(--bg-muted); }
.bg-dark { background-color: var(--bg-dark); }

/* Gradient Background Utilities */
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-primary-light { background: var(--gradient-primary-light); }
.bg-gradient-primary-dark { background: var(--gradient-primary-dark); }
.bg-gradient-hero { background: var(--gradient-hero); }

/* Border Color Utilities */
.border-light { border-color: var(--border-light); }
.border-medium { border-color: var(--border-medium); }
.border-dark { border-color: var(--border-dark); }
.border-primary { border-color: var(--border-primary); }

/* Link Typography */
a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* List Typography */
ul, ol {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
}

li {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

/* Blockquote Typography */
blockquote {
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    border-right: 4px solid var(--border-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
}

/* Arabic Text Optimization */
.arabic-text {
    font-family: 'Tajawal', 'Amiri', 'Noto Sans Arabic', sans-serif;
    line-height: var(--leading-loose);
    letter-spacing: var(--tracking-normal);
}

/* English Text Optimization */
.english-text {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    direction: ltr;
    text-align: left;
    letter-spacing: var(--tracking-normal);
}

/* Display Typography (for hero sections) */
.display-1 {
    font-size: var(--font-6xl);
    font-weight: var(--font-bold);
    line-height: 1;
    letter-spacing: var(--tracking-tight);
}

.display-2 {
    font-size: var(--font-5xl);
    font-weight: var(--font-bold);
    line-height: 1.1;
    letter-spacing: var(--tracking-tight);
}

.display-3 {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
}

/* Professional Typography for Business Content */
.business-title {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    color: var(--text-dark);
    line-height: var(--leading-tight);
    margin-bottom: 1rem;
}

.business-subtitle {
    font-size: var(--font-xl);
    font-weight: var(--font-medium);
    color: var(--text-body);
    line-height: var(--leading-normal);
    margin-bottom: 0.75rem;
}

.business-text {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
    margin-bottom: 1rem;
}

/* Typography for Cards and Components */
.card-title {
    font-size: var(--font-xl);
    font-weight: var(--font-bold);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: var(--leading-snug);
}

.card-subtitle {
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.card-text {
    font-size: var(--font-sm);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
}

/* Button Typography */
.btn-text {
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
}

.btn-text-lg {
    font-size: var(--font-base);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-normal);
}

/* Form Typography */
label {
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

input, textarea, select {
    font-family: inherit;
    font-size: var(--font-base);
    line-height: var(--leading-normal);
    color: var(--text-dark);
}

::placeholder {
    color: var(--text-light);
    font-weight: var(--font-regular);
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --font-5xl: 36px;
        --font-4xl: 28px;
        --font-3xl: 24px;
        --font-2xl: 20px;
        --font-xl: 18px;
        --font-lg: 16px;
    }
    
    h1 { font-size: var(--font-4xl); }
    h2 { font-size: var(--font-3xl); }
    h3 { font-size: var(--font-2xl); }
    
    .display-1 { font-size: var(--font-5xl); }
    .display-2 { font-size: var(--font-4xl); }
    .display-3 { font-size: var(--font-3xl); }
    
    .lead, .intro-text {
        font-size: var(--font-base);
    }
}

@media (max-width: 480px) {
    :root {
        --font-4xl: 24px;
        --font-3xl: 20px;
        --font-2xl: 18px;
    }
    
    body {
        font-size: 15px;
    }
    
    h1 { font-size: var(--font-3xl); }
    h2 { font-size: var(--font-2xl); }
    
    .container {
        padding: 0 15px;
    }
}

/* ================================
   ANIMATION SYSTEM
   ================================ */

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

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

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

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

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Reusable Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease-out;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease-out;
}

.animate-zoomIn {
    animation: zoomIn 0.5s ease-out;
}

.animate-rotateIn {
    animation: rotateIn 0.8s ease-out;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

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

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-swing {
    animation: swing 2s ease-in-out infinite;
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    background-size: 1000px 100%;
}

.animate-gradient {
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-700 { animation-delay: 0.7s; }
.delay-1000 { animation-delay: 1s; }

/* Animation Durations */
.duration-fast { animation-duration: 0.3s; }
.duration-normal { animation-duration: 0.6s; }
.duration-slow { animation-duration: 1s; }
.duration-slower { animation-duration: 1.5s; }

/* Scroll-triggered Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fadeIn {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-fadeIn.active {
    opacity: 1;
}

.scroll-scaleIn {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scaleIn.active {
    opacity: 1;
    transform: scale(1);
}

.scroll-slideLeft {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-slideLeft.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slideRight {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-slideRight.active {
    opacity: 1;
    transform: translateX(0);
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.hover-shrink {
    transition: transform 0.3s ease;
}

.hover-shrink:hover {
    transform: scale(0.95);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px var(--color-primary-300);
}

.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::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 ease;
}

.hover-shine:hover::before {
    left: 100%;
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }
.stagger-item:nth-child(7) { animation-delay: 0.7s; }
.stagger-item:nth-child(8) { animation-delay: 0.8s; }

/* Performance Optimizations */
.will-animate {
    will-change: transform, opacity;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-animate,
    .scroll-fadeIn,
    .scroll-scaleIn,
    .scroll-slideLeft,
    .scroll-slideRight {
        opacity: 1;
        transform: none;
    }
}

/* ================================
   RESPONSIVE DESIGN ENHANCEMENTS
   ================================ */

/* Tablet Landscape (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
        padding: 0 25px;
    }
    
    :root {
        --font-5xl: 42px;
        --font-4xl: 32px;
        --font-3xl: 26px;
        --font-2xl: 22px;
    }
    
    /* Header Adjustments */
    .header-top {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .main-nav {
        padding: 15px 0;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 8px 12px;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    /* Grids - 2 Column Layout */
    .features-grid,
    .services-grid,
    .portfolio-grid,
    .clients-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reason Items */
    .reason-item,
    .reason-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .reason-visual {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Process Timeline */
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team Structure */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape (568px - 767px) */
@media (min-width: 568px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    /* 2-column grids on landscape */
    .features-grid,
    .clients-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Better spacing for landscape */
    .section {
        padding: 60px 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .cta-button,
    .btn,
    button,
    a.button {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .nav-link {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    .mobile-menu-toggle {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Remove hover effects on touch */
    .hover-lift:hover,
    .hover-grow:hover,
    .hover-rotate:hover {
        transform: none;
    }
    
    /* Add tap feedback instead */
    .cta-button:active,
    .card:active,
    .service-card:active,
    .portfolio-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Disable hover animations on touch devices */
    .hover-shine::before {
        display: none;
    }
    
    /* Increase spacing for easier tapping */
    .filter-btn {
        margin: 5px;
        padding: 12px 24px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Enhanced Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Section Spacing */
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    /* Typography */
    h1, .h1 {
        line-height: 1.3;
    }
    
    h2, .h2 {
        line-height: 1.4;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Hide decorative elements on mobile */
    .hero-hands,
    .hero-elements,
    .floating-element {
        display: none;
    }
    
    .hero-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Grids - Single Column */
    .features-grid,
    .services-grid,
    .portfolio-grid,
    .clients-grid,
    .expertise-grid,
    .team-grid,
    .pricing-grid,
    .process-timeline,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards */
    .feature-card,
    .service-card,
    .portfolio-card,
    .testimonial-card {
        padding: 25px;
    }
    
    /* Contact Methods */
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Filter Buttons */
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .filter-btn {
        flex: 1 1 45%;
        min-width: 140px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Tighter spacing */
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Cards */
    .feature-card,
    .service-card,
    .portfolio-card {
        padding: 20px;
    }
    
    /* Smaller images */
    .reason-visual img,
    .feature-icon img {
        max-width: 200px;
    }
    
    .client-logo {
        padding: 15px;
    }
    
    /* Filter buttons stack */
    .filter-btn {
        flex: 1 1 100%;
    }
    
    /* Stats */
    .stat-number {
        font-size: 32px;
    }
    
    /* Forms */
    .contact-form {
        padding: 25px 15px;
    }
    
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Very Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    h1, .display-2 {
        font-size: 22px;
    }
    
    h2, .display-3 {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Landscape Orientation Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .mobile-nav-overlay {
        overflow-y: auto;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .cta-button,
    .filter-buttons,
    .floating-element,
    .hero-elements {
        display: none;
    }
    
    .container {
        max-width: 100%;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Enhanced Header Styles */
.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 20px var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Top Bar */
.header-top {
    background: var(--gradient-primary);
    padding: 8px 0;
    color: var(--text-white);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.header-contact {
    display: flex;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-item .icon {
    font-size: 16px;
    font-style: normal;
}

.header-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link .icon {
    font-size: 16px;
    font-style: normal;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Header Main */
.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Enhanced Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 26px;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Enhanced Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.nav-icon {
    font-size: 18px;
    opacity: 1;
    filter: brightness(1.1);
}

.nav-text {
    font-weight: 500;
}

/* Header CTA Button */
.header-cta {
    margin-left: 20px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--shadow-primary);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-primary);
}

.cta-icon {
    font-size: 16px;
    font-style: normal;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(107, 70, 193, 0.1);
    border: 2px solid var(--color-primary-500);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(107, 70, 193, 0.2);
    border-color: var(--color-primary-600);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #6b46c1;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* Use custom vh for mobile */
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw; /* Responsive width */
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: white;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo img {
    height: 35px;
}

.mobile-logo span {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--gradient-primary);
    color: white;
}

.mobile-nav-icon {
    font-size: 18px;
    font-style: normal;
}

.mobile-nav-cta {
    margin-bottom: 30px;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.mobile-nav-contact {
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.mobile-contact-icon {
    font-size: 16px;
    font-style: normal;
}

.mobile-nav-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    transform: scale(1.1);
}

/* Active Navigation State */
.nav-link.active {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: white;
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: white;
}

.main-nav a:hover {
    color: var(--color-primary-600);
    background-color: var(--color-primary-50);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    background: var(--gradient-primary-light);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: right;
}

.hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-question {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background-color: var(--color-primary-500);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.cta-button.primary:hover {
    background-color: var(--color-primary-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-primary-hover);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-primary-500);
    border: 2px solid var(--color-primary-500);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background-color: var(--color-primary-500);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.hero-hands {
    position: relative;
    width: 100%;
    height: 200px;
}

.hand {
    position: absolute;
    max-width: 80px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.hand-1 {
    top: 0;
    left: 10%;
    animation-delay: 0s;
}

.hand-2 {
    top: 50px;
    right: 20%;
    animation-delay: 1s;
}

.hand-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

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

/* Features Overview Section */
.features-overview {
    padding: 80px 20px;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--gradient-secondary-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-icon img {
    max-width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.feature-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Clients Showcase Section */
.clients-showcase {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.clients-showcase h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: bold;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 100px;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.content-section p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

/* Reasons Section */
.reasons {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.reasons h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: bold;
}

.reasons-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 20px;
    background: var(--gradient-secondary-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.reason-item.reverse {
    grid-template-columns: 1fr 300px;
}

.reason-item.reverse .reason-visual {
    order: 2;
}

.reason-item.reverse .reason-content {
    order: 1;
    text-align: left;
}

.reason-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason-visual img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}

.reason-content {
    text-align: right;
}

.reason-item h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
}

.reason-item p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.call-to-action {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    font-style: italic;
    text-align: center !important;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.how-to-start {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    padding: 40px;
    border-radius: 20px;
    background: var(--gradient-primary-subtle);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.how-to-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-visual img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.how-to-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
}

.how-to-content ul {
    list-style: none;
    padding: 0;
}

.how-to-content li {
    font-size: 18px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-primary-100) 50%, var(--color-primary-200) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-visual img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    animation: pulse 3s ease-in-out infinite;
}

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

.cta-text {
    text-align: right;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: bold;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    font-size: 20px !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    margin: 30px 0 !important;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Tags */
.tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tag {
    background-color: var(--color-primary-500);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}

/* Blog Section */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-card a {
    color: var(--color-secondary-500);
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--text-muted);
}

.footer-bottom p {
    color: var(--text-light);
    margin: 5px 0;
}

/* Identity Page Styles */
.identity-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-primary-100) 100%);
    border-radius: 15px;
    margin-bottom: 40px;
}

.identity-hero h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.identity-hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.brand-showcase {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
}

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

.main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

/* Page Specific Styles */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content h2 {
    color: var(--text-dark);
    font-size: 32px;
    margin: 40px 0 20px 0;
    text-align: center;
}

.page-content h3 {
    color: var(--text-muted);
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

.page-content ul {
    margin: 20px 0;
    padding-right: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.contact-section {
    margin-bottom: 40px;
}

/* Services Page Styles */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
    border-right: 4px solid var(--color-primary-500);
}

.service-card h3 {
    color: var(--color-primary-500);
    margin-bottom: 15px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-primary-100) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

.pricing-card h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header Top - Hide on mobile */
    .header-top {
        display: none;
    }
    
    .header-content {
        position: relative;
        padding: 10px 0;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation */
    .main-nav {
        display: none;
    }
    
    /* Mobile Logo Adjustments */
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    /* Mobile Navigation Active States */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        text-align: center;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .main-nav a:hover {
        background-color: var(--color-primary-50);
        color: var(--color-primary-600);
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-question {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .hero-hands {
        height: 150px;
    }
    
    .hand {
        max-width: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reason-item,
    .reason-item.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .reason-item.reverse .reason-visual,
    .reason-item.reverse .reason-content {
        order: unset;
    }
    
    .reason-visual img {
        max-width: 120px;
    }
    
    .how-to-start {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .how-to-visual img {
        max-width: 100px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-visual img {
        max-width: 180px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .tags {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo a {
        gap: 5px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .pricing-card {
        margin: 10px 0;
        padding: 20px;
    }
    
    .brand-showcase {
        padding: 20px;
        margin: 20px 0;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .identity-hero {
        padding: 40px 15px;
    }
    
    .identity-hero h1 {
        font-size: 28px;
    }
}

/* Enhanced Homepage Styles */
/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-bg-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-bg-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.hero-bg-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
}

.badge-icon {
    font-size: 16px;
}

/* Enhanced Hero Title */
.hero-question {
    font-size: 48px !important;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.main-text {
    color: var(--text-dark);
    display: block;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary-500);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Enhanced CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-icon {
    font-size: 16px;
}

/* Hero Visual Enhancements */
.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo-background {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo {
    width: 100px;
    height: auto;
    z-index: 2;
    position: relative;
}

/* Enhanced Hand Animations */
.hand {
    transition: transform 0.3s ease;
}

.hand[data-animation="float"] {
    animation: float 4s ease-in-out infinite;
}

.hand[data-animation="bounce"] {
    animation: bounce 3s ease-in-out infinite;
}

.hand[data-animation="swing"] {
    animation: swing 5s ease-in-out infinite;
}

.hand[data-animation="pulse"] {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Floating Elements */
.hero-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    border-radius: 50%;
    opacity: 0.3;
}

.elem-1 {
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.elem-2 {
    bottom: 30%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.elem-3 {
    top: 70%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-highlight {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Feature Cards */
.feature-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--color-primary-500);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.feature-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-background {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    font-size: 13px;
    color: var(--color-primary-500);
    font-weight: 500;
}

/* Enhanced Clients Section */
.clients-wrapper {
    margin-bottom: 40px;
}

.client-logo {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo.featured {
    border: 2px solid var(--color-primary-500);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.2);
}

.client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.client-logo:hover .client-overlay {
    opacity: 1;
}

.client-info {
    font-size: 12px;
    font-weight: 500;
}

/* Stats Grid */
.clients-stats {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary-500);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

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

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-question {
        font-size: 32px !important;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card .stat-number {
        font-size: 24px;
    }
    
    .hero-bg-element {
        display: none;
    }
    
    .floating-element {
        display: none;
    }
}

/* ================================
   SERVICES PAGE STYLES
   ================================ */

/* Services Page Layout */
.services-page {
    overflow-x: hidden;
}

/* Services Hero */
.services-hero {
    background: var(--gradient-hero);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-top: 20px;
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid var(--color-primary-500);
    transform: scale(1.02);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-right: 20px;
    color: var(--text-muted);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--color-success-500);
    font-weight: bold;
}

.service-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

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

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary-500);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.step-content {
    margin-top: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-features li {
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.step-features li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--color-primary-500);
}

/* Packages Section */
.packages-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: var(--color-primary-500);
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-primary);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.package-header {
    margin-bottom: 30px;
}

.package-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-price {
    margin: 20px 0;
}

.currency {
    font-size: 16px;
    color: var(--text-muted);
}

.amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-primary-500);
    margin: 0 5px;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
}

.package-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--color-success-500);
    font-size: 14px;
}

.package-cta {
    margin-top: 30px;
}

/* Success Stories */
.success-stories {
    padding: 80px 20px;
    background: var(--gradient-primary-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.story-title {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.story-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.result-tag {
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Services CTA */
.services-cta {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
        order: -1;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .service-stats,
    .story-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 15px;
    }
    
    .services-overview,
    .process-section,
    .packages-section,
    .success-stories,
    .services-cta {
        padding: 60px 15px;
    }
    
    .service-card,
    .process-step,
    .package-card,
    .story-card {
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ================================
   IDENTITY PAGE STYLES
   ================================ */

/* Identity Page Layout */
.identity-page {
    overflow-x: hidden;
}

/* Identity Hero */
.identity-hero {
    background: var(--gradient-hero);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.identity-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.identity-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 20px;
    background: var(--bg-white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.vision-card {
    border: 2px solid var(--color-primary-100);
}

.mission-card {
    border: 2px solid var(--color-secondary-100);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mission-list li {
    padding: 12px 0;
    position: relative;
    padding-right: 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--color-success-500);
    font-weight: bold;
    font-size: 18px;
}

.vm-highlight {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.highlight-text {
    display: inline-block;
    background: var(--gradient-primary-light);
    color: var(--color-primary-600);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Core Values */
.core-values {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--color-primary-500);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.value-badge {
    display: inline-block;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

/* Brand Identity */
.brand-identity {
    padding: 80px 20px;
    background: var(--bg-white);
}

.brand-showcase {
    margin-top: 50px;
}

.logo-section {
    text-align: center;
    margin-bottom: 60px;
}

.logo-display {
    background: var(--gradient-primary-light);
    padding: 60px;
    border-radius: 24px;
    margin-bottom: 30px;
    display: inline-block;
}

.main-logo {
    max-width: 300px;
    height: auto;
}

.brand-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

.colors-section,
.typography-section {
    margin-top: 50px;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.color-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.color-sample {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
}

.color-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.color-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.color-meaning {
    font-size: 12px;
    color: var(--text-muted);
}

.font-samples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.font-sample {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.font-sample:hover {
    border-color: var(--color-primary-500);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.font-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-500);
    margin-bottom: 15px;
}

.sample-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

.arabic-font {
    font-family: 'Tajawal', sans-serif;
}

.english-font {
    font-family: 'Inter', sans-serif;
}

/* Team Structure */
.team-structure {
    padding: 80px 20px;
    background: var(--gradient-primary-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.skill-tag {
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Our Commitment */
.our-commitment {
    padding: 80px 20px;
    background: var(--bg-white);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.commitment-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.commitment-card:hover::before {
    transform: scaleX(1);
}

.commitment-card:hover {
    border-color: var(--color-primary-500);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--color-primary-500);
}

/* Identity CTA */
.identity-cta {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
}

/* Identity Responsive Design */
@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .color-palette {
        grid-template-columns: 1fr;
    }
    
    .font-samples {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-display {
        padding: 40px;
    }
    
    .main-logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .identity-hero {
        padding: 60px 15px;
    }
    
    .vision-mission,
    .core-values,
    .brand-identity,
    .team-structure,
    .our-commitment,
    .identity-cta {
        padding: 60px 15px;
    }
    
    .vm-card,
    .value-card,
    .team-card,
    .commitment-card {
        padding: 25px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-display {
        padding: 30px;
    }
    
    .main-logo {
        max-width: 150px;
    }
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Contact Page Layout */
.contact-page {
    overflow-x: hidden;
}

/* Contact Hero */
.contact-hero {
    background: var(--gradient-hero);
    padding: 80px 20px;
    text-align: center;
}

/* Contact Methods */
.contact-methods {
    padding: 60px 20px;
    background: var(--bg-white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.method-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--color-primary-500);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.method-details {
    margin-top: 20px;
}

.method-link {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.method-link:last-child {
    border-bottom: none;
}

.method-link:hover {
    color: var(--color-primary-500);
}

.link-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.link-value {
    font-size: 16px;
    font-weight: 600;
    direction: ltr;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-item:last-of-type {
    border-bottom: none;
}

.hours-days {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-time {
    color: var(--text-muted);
}

.availability-note {
    margin-top: 15px;
    padding: 10px;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

.availability-note i {
    margin-left: 5px;
}

.location-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.form-container {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px var(--color-primary-50);
}

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

.checkbox-group {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cta-button.full-width {
    width: 100%;
}

/* Consultation Box */
.consultation-box {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px var(--shadow-light);
    position: relative;
    border: 2px solid var(--color-primary-500);
}

.consultation-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consultation-benefits {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefit-item i {
    color: var(--color-success-500);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.social-connect {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--border-light);
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-primary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary-500);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--color-primary-500);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    padding-right: 32px;
}

/* Quick Actions */
.quick-actions {
    padding: 80px 20px;
    background: var(--gradient-primary-light);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.action-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--color-primary-500);
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-500);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.action-link:hover {
    gap: 12px;
    color: var(--color-primary-600);
}

.action-link i {
    transition: transform 0.3s ease;
}

.action-link:hover i {
    transform: translateX(-3px);
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
}

.cta-note {
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-note i {
    font-size: 20px;
}

/* Contact Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-box {
        order: -1;
    }
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 15px;
    }
    
    .contact-methods,
    .contact-form-section,
    .faq-section,
    .quick-actions,
    .contact-cta {
        padding: 60px 15px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container,
    .consultation-box {
        padding: 25px;
    }
    
    .method-card,
    .action-card {
        padding: 25px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* About Page Layout */
.about-page {
    overflow-x: hidden;
}

/* About Hero */
.about-hero {
    background: var(--gradient-hero);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero .hero-badge i {
    font-size: 16px;
}

/* Our Story Section */
.our-story {
    padding: 80px 20px;
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    max-width: 700px;
}

.story-paragraph {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-paragraph strong {
    color: var(--color-primary-500);
    font-weight: 700;
}

.story-impact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    border-color: var(--color-primary-500);
    transform: translateX(-8px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--color-primary-500);
}

.impact-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-500);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.impact-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.principle-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 72px;
    font-weight: 700;
    color: var(--color-primary-50);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 1;
}

.principle-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.principle-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

.expertise-card:hover {
    border-color: var(--color-primary-500);
    box-shadow: 0 12px 35px var(--shadow-light);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--color-primary-500);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.expertise-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.expertise-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.expertise-badge {
    display: inline-block;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
    color: white;
}

.achievements-section .section-label,
.achievements-section .section-title,
.achievements-section .section-description {
    color: white;
}

.achievements-section .section-label {
    background: rgba(255, 255, 255, 0.2);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.achievement-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.achievement-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.vision-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.vision-timeline {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 44px;
    top: 90px;
    width: 2px;
    height: calc(100% - 50px);
    background: var(--gradient-primary-light);
}

.timeline-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px var(--shadow-primary);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--color-primary-500);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* About CTA */
.about-cta {
    background: var(--gradient-secondary-light);
    padding: 80px 20px;
    text-align: center;
}

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

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Responsive Design */
@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-impact {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .impact-card {
        flex: 1;
        min-width: 200px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 15px 60px;
    }
    
    .our-story,
    .philosophy-section,
    .expertise-section,
    .achievements-section,
    .vision-section,
    .about-cta {
        padding: 60px 15px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .timeline-item:not(:last-child)::after {
        right: 34px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
    
    .about-cta p {
        font-size: 16px;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .principle-card,
    .expertise-card,
    .achievement-card {
        padding: 25px;
    }
    
    .principle-number {
        font-size: 60px;
        top: 15px;
        left: 15px;
    }
    
    .principle-icon,
    .expertise-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .achievement-number {
        font-size: 36px;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ================================
   PORTFOLIO PAGE STYLES
   ================================ */

/* Portfolio Page Layout */
.portfolio-page {
    overflow-x: hidden;
}

/* Portfolio Hero */
.portfolio-hero {
    background: var(--gradient-hero);
    padding: 100px 20px 80px;
    text-align: center;
}

.portfolio-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-hero .hero-badge i {
    font-size: 16px;
}

/* Portfolio Filter */
.portfolio-filter-section {
    padding: 40px 20px;
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.filter-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--color-primary-500);
    color: var(--color-primary-500);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--color-primary-500);
    color: white;
    box-shadow: 0 8px 20px var(--shadow-primary);
}

.filter-btn i {
    font-size: 16px;
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.image-placeholder.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-placeholder.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.image-placeholder.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.image-placeholder.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.image-placeholder.gradient-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.image-placeholder.gradient-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 70, 193, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.view-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--color-primary-500);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-card:hover .view-project {
    transform: translateY(0);
}

.view-project:hover {
    background: var(--color-primary-500);
    color: white;
    box-shadow: 0 8px 20px var(--shadow-primary);
}

.portfolio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.project-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.project-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.project-stats .stat i {
    color: var(--color-primary-500);
    font-size: 16px;
}

/* Case Study Section */
.case-study-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.case-study-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-challenge,
.case-solution,
.case-results {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
}

.case-challenge h3,
.case-solution h3,
.case-results h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.case-challenge h3 i {
    color: var(--color-error-500);
}

.case-solution h3 i {
    color: var(--color-warning-500);
}

.case-results h3 i {
    color: var(--color-success-500);
}

.case-challenge p,
.case-solution p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.case-solution ul {
    margin: 15px 0 0;
    padding-right: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.case-solution li {
    margin-bottom: 8px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: var(--gradient-primary-light);
    border-radius: 16px;
}

.result-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-500);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.result-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.case-study-visual {
    display: flex;
    align-items: flex-start;
}

.visual-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 40px;
    color: white;
    box-shadow: 0 15px 40px var(--shadow-primary);
    width: 100%;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.visual-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.timeline-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-period {
    font-size: 14px;
    opacity: 0.9;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: var(--gradient-secondary-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.testimonial-card.featured {
    border: 3px solid var(--color-primary-500);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 8px 20px var(--shadow-primary);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-position {
    font-size: 13px;
    color: var(--text-muted);
}

/* Portfolio CTA */
.portfolio-cta {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
}

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

.portfolio-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.portfolio-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 35px;
}

.portfolio-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Portfolio Responsive Design */
@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 80px 15px 60px;
    }
    
    .portfolio-filter-section {
        padding: 30px 15px;
        position: relative;
    }
    
    .filter-controls {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .portfolio-grid-section,
    .case-study-section,
    .testimonials-section,
    .portfolio-cta {
        padding: 60px 15px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-image {
        height: 240px;
    }
    
    .image-placeholder {
        font-size: 60px;
    }
    
    .portfolio-cta h2 {
        font-size: 28px;
    }
    
    .portfolio-cta p {
        font-size: 16px;
    }
    
    .portfolio-cta .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .portfolio-content,
    .testimonial-card,
    .case-challenge,
    .case-solution,
    .case-results {
        padding: 25px;
    }
    
    .visual-card {
        padding: 30px;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .result-item {
        padding: 15px;
    }
    
    .result-number {
        font-size: 24px;
    }
    
    .timeline-stat {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================================
   FOOTER STYLES
   ================================ */

/* Footer Main */
.site-footer {
    background: var(--color-neutral-900);
    color: var(--color-neutral-100);
}

.footer-main {
    padding: 50px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Footer Brand */
.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    font-family: 'Inter', sans-serif;
}

.footer-tagline {
    font-size: 13px;
    color: var(--color-primary-300);
    margin: 0;
}

.footer-slogan {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-neutral-300);
    margin-top: 15px;
    margin-bottom: 0;
    max-width: 500px;
}

/* Footer Contact Buttons */
.footer-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.footer-contact-btn.whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.footer-contact-btn.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.footer-contact-btn.email {
    background: transparent;
    border-color: var(--color-primary-400);
    color: var(--color-primary-300);
}

.footer-contact-btn.email:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary-500);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-primary);
}

.footer-contact-btn.phone {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-neutral-300);
}

.footer-contact-btn.phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.footer-contact-btn i {
    font-size: 18px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-primary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: var(--color-neutral-400);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: var(--color-neutral-400);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.footer-legal .separator {
    color: var(--color-neutral-600);
}

/* Footer Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-contact {
        width: 100%;
    }
    
    .footer-contact-btn {
        flex: 1;
        justify-content: center;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 15px;
    }
    
    .footer-contact {
        flex-direction: column;
    }
    
    .footer-contact-btn {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ================================
   LEGAL PAGES STYLES
   ================================ */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary-500);
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-600);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-page ul {
    padding-right: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page hr {
    border: none;
    border-top: 2px solid var(--border-light);
    margin: 40px 0;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 15px;
    }
    
    .legal-page h2 {
        font-size: 28px;
    }
    
    .legal-page h3 {
        font-size: 20px;
    }
    
    .legal-page p,
    .legal-page li {
        font-size: 15px;
    }
}
