/* ========================================
   ADESKON - MODERN CORPORATE DESIGN
   ======================================== */

/* --- ROOT VARIABLES --- */
:root {
    /* Simplified Blue Theme */
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    
    --secondary-color: #1F2937;
    --secondary-light: #374151;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-secondary: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GLOBAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER / NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-base);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 26px;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- HERO MODERN --- */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-secondary);
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-dark);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content-modern {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-base);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}

.stat-item-hero {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* --- TRUST SECTION --- */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 13px;
    color: var(--gray-600);
}

/* --- SECTION HEADERS --- */
.section-header-modern {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header-modern h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header-modern .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-modern p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- SERVICES MODERN --- */
.services-modern {
    padding: 120px 0;
    background: var(--gray-50);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.service-card-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon-modern {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

.service-card-modern h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.service-card-modern > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.service-features-list i {
    color: var(--primary-color);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 12px;
}

/* Additional Services */
.additional-services {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.additional-services h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

.additional-services-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--gray-200);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.additional-service-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.additional-service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- WHY ADESKON MODERN --- */
.why-adeskon-modern {
    padding: 120px 0;
    background: var(--white);
}

.why-adeskon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-adeskon-content .section-badge {
    margin-bottom: 16px;
}

.why-adeskon-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-cards-compact {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card-compact {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition-base);
}

.feature-card-compact:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.feature-icon-compact {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content-compact h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.feature-content-compact p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-base);
}

.btn-text-link:hover {
    gap: 12px;
}

/* Visual Cards */
.why-adeskon-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.visual-card.card-1 {
    top: 0;
    left: 0;
    width: 240px;
    background: var(--gradient-primary);
    color: var(--white);
}

.visual-card.card-2 {
    top: 120px;
    right: 40px;
    width: 220px;
    border: 2px solid var(--gold-primary);
}

.visual-card.card-3 {
    bottom: 0;
    left: 80px;
    width: 260px;
    background: var(--gray-50);
}

.visual-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.visual-card.card-1 .visual-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.visual-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-value {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
}

.visual-card.card-1 .metric-value {
    color: var(--primary-light);
}

.metric-label {
    font-size: 14px;
    color: var(--gray-600);
}

.visual-card.card-1 .metric-label {
    color: rgba(255, 255, 255, 0.7);
}

/* --- TECH STACK --- */
.tech-stack-section {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.tech-stack-section .section-header-modern h2,
.tech-stack-section .section-header-modern .highlight {
    color: var(--white);
}

.tech-stack-section .section-header-modern p {
    color: rgba(255, 255, 255, 0.7);
}

.tech-stack-section .section-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.tech-category h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.tech-category h4 i {
    color: var(--primary-color);
}

.tech-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition-base);
}

.tech-icon:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
}

.tech-icon i {
    font-size: 24px;
    color: var(--primary-light);
}

.tech-icon span {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

/* --- PROCESS MODERN --- */
.process-modern {
    padding: 120px 0;
    background: var(--gray-50);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 48px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.step-content > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-details span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-50);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.step-details i {
    color: var(--primary-color);
    font-size: 12px;
}

/* --- CTA MODERN --- */
.cta-modern {
    padding: 100px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content-modern {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content-modern h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-white {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content-modern > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}

.cta-feature i {
    color: var(--primary-light);
    font-size: 20px;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: var(--transition-base);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 17px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
}

/* --- FOOTER --- */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-about p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* --- PAGE HERO --- */
.page-hero {
    background: var(--gradient-secondary);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* --- ABOUT STORY MODERN --- */
.about-story-modern {
    padding: 120px 0;
    background: var(--white);
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-modern .section-badge {
    margin-bottom: 16px;
}

.about-content-modern h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content-modern .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content-modern p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--gray-50);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    margin-top: 40px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-content p {
    font-size: 16px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.about-visual-modern {
    position: relative;
}

.visual-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-image img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- MISSION VISION MODERN --- */
.mission-vision-modern {
    padding: 120px 0;
    background: var(--gray-50);
}

.mv-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card-modern {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-base);
}

.mv-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mv-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 72px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.mv-icon-modern {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

.mv-card-modern h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.mv-card-modern p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* --- VALUES MODERN --- */
.values-modern {
    padding: 120px 0;
    background: var(--white);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card-modern {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
}

.value-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon-modern {
    width: 72px;
    height: 72px;
    background: var(--gray-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.value-card-modern:hover .value-icon-modern {
    background: var(--gradient-primary);
    color: var(--white);
}

.value-card-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.value-card-modern p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- WHY ADESKON DETAILED --- */
.why-adeskon-detailed {
    padding: 120px 0;
    background: var(--gray-50);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.advantage-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.advantage-item:hover::before {
    transform: scaleY(1);
}

.advantage-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.advantage-item:hover .advantage-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.advantage-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- STATS BANNER ABOUT --- */
.stats-banner-about {
    padding: 100px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.stats-banner-about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.stat-item-about {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.stat-item-about:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.stat-icon-about {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-light);
    margin: 0 auto 24px;
}

.stat-number-about {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label-about {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-item-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- TEAM APPROACH --- */
.team-approach {
    padding: 120px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-content .section-badge {
    margin-bottom: 16px;
}

.team-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.team-content .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.team-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.team-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.team-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-visual img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.team-visual:hover img {
    transform: scale(1.05);
}

/* --- FOOTER LOGO STYLE --- */
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

/* --- SERVICES OVERVIEW MODERN --- */
.services-overview-modern {
    padding: 100px 0 80px;
    background: var(--white);
}

.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
}

.overview-content .section-badge {
    margin-bottom: 16px;
}

.overview-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.overview-content .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quick-service-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.quick-service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.quick-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.quick-service-card:hover .quick-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.quick-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.quick-service-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* --- SERVICE DETAIL MODERN --- */
.service-detail-modern {
    padding: 100px 0;
    background: var(--gray-50);
}

.service-detail-modern:nth-child(even) {
    background: var(--white);
}

.service-detail-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-reverse .service-detail-grid-modern {
    direction: rtl;
}

.service-detail-reverse .service-detail-content-modern {
    direction: ltr;
}

.service-detail-content-modern {
    position: relative;
}

.service-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    margin: 64px 0 24px;
}

.service-detail-content-modern h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.features-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.feature-item-modern i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.service-highlight {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    margin-top: 32px;
}

.service-detail-modern:nth-child(even) .service-highlight {
    background: var(--gray-50);
}

.service-highlight i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.service-highlight strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.service-highlight p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.service-cta-box {
    padding: 32px;
    background: var(--gradient-primary);
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.service-cta-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.service-cta-box .btn-primary-new {
    background: var(--white);
    color: var(--primary-color);
}

.service-cta-box .btn-primary-new:hover {
    background: var(--gray-100);
}

.service-detail-visual-modern {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-detail-visual-modern img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.service-detail-visual-modern:hover img {
    transform: scale(1.05);
}

/* --- WORK PROCESS MODERN --- */
.work-process-modern {
    padding: 120px 0;
    background: var(--white);
}

.process-timeline-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-item-modern {
    background: var(--gray-50);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.process-item-modern:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.process-number-modern {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.process-icon-modern {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 24px;
}

.process-item-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.process-item-modern p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- RESPONSIVE SERVICES --- */
@media (max-width: 992px) {
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid-modern {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-detail-reverse .service-detail-grid-modern {
        direction: ltr;
    }
    
    .process-timeline-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .overview-content h2 {
        font-size: 32px;
    }
    
    .quick-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content-modern h2 {
        font-size: 28px;
    }
    
    .service-icon-large {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .process-timeline-modern {
        grid-template-columns: 1fr;
    }
}

/* --- CONTACT INFO CARDS --- */
.contact-info-cards {
    padding: 80px 0;
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.info-card-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 24px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.info-card a:hover {
    color: var(--primary-dark);
}

.info-card-sub {
    font-size: 13px !important;
    color: var(--gray-500) !important;
    margin-bottom: 16px !important;
}

/* --- CONTACT FORM SECTION --- */
.contact-form-section {
    padding: 80px 0 120px;
    background: var(--gray-50);
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-modern .section-badge {
    margin-bottom: 16px;
}

.contact-info-modern h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-info-modern .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-features {
    margin: 40px 0;
}

.contact-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-feature-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-feature-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.contact-feature-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.social-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.social-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.social-icons-modern {
    display: flex;
    gap: 12px;
}

.social-icons-modern a {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.social-icons-modern a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

/* --- CONTACT FORM MODERN --- */
.contact-form-modern {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: var(--gray-600);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px;
    background: var(--gray-50);
    border-radius: 12px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 24px;
}

.form-success-message h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.form-success-message p {
    font-size: 16px;
    color: var(--gray-600);
}

/* --- MAP SECTION MODERN --- */
.map-section-modern {
    padding: 120px 0;
    background: var(--white);
}

.map-container-modern {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* --- FAQ SECTION MODERN --- */
.faq-section-modern {
    padding: 120px 0;
    background: var(--gray-50);
}

.faq-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item-modern {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-item-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.faq-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-item-modern:hover .faq-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.faq-item-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item-modern p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- RESPONSIVE CONTACT --- */
@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .faq-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        margin-top: 0;
        padding: 60px 0;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-modern h2 {
        font-size: 32px;
    }
    
    .contact-form-modern {
        padding: 32px 24px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
}

/* --- 404 ERROR PAGE --- */
.error-404-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Animated 404 Number */
.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.number-4,
.number-0 {
    font-size: 180px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.number-0 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit Animation */
.orbit-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
}

.orbit-1 {
    width: 140px;
    height: 140px;
    animation: rotate 8s linear infinite;
}

.orbit-2 {
    width: 180px;
    height: 180px;
    animation: rotate 12s linear infinite reverse;
}

.satellite {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Error Message */
.error-message {
    max-width: 700px;
    margin: 0 auto 48px;
}

.error-message h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.error-description {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Search Box */
.error-search {
    max-width: 600px;
    margin: 0 auto 56px;
}

.search-box {
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 8px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
}

.search-box input::placeholder {
    color: var(--gray-400);
}

.search-box button {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

/* Quick Links */
.error-links {
    margin-bottom: 48px;
}

.error-links h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-link-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.quick-link-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.quick-link-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Fun Fact */
.fun-fact {
    max-width: 700px;
    margin: 0 auto 48px;
}

.fun-fact-box {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.fun-fact-box i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.fun-fact-box p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

.fun-fact-box strong {
    color: var(--secondary-color);
}

/* Error CTA */
.error-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large-404 {
    padding: 16px 32px;
    font-size: 17px;
}

/* Responsive 404 */
@media (max-width: 992px) {
    .error-number {
        gap: 10px;
    }
    
    .number-4,
    .number-0 {
        font-size: 120px;
    }
    
    .orbit-container {
        width: 120px;
        height: 120px;
    }
    
    .planet {
        width: 50px;
        height: 50px;
    }
    
    .orbit-1 {
        width: 90px;
        height: 90px;
    }
    
    .orbit-2 {
        width: 120px;
        height: 120px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .error-404-section {
        padding: 120px 0 60px;
    }
    
    .error-number {
        margin-bottom: 32px;
    }
    
    .number-4,
    .number-0 {
        font-size: 80px;
    }
    
    .orbit-container {
        width: 80px;
        height: 80px;
    }
    
    .planet {
        width: 35px;
        height: 35px;
    }
    
    .orbit-1 {
        width: 60px;
        height: 60px;
    }
    
    .orbit-2 {
        width: 80px;
        height: 80px;
    }
    
    .satellite {
        width: 10px;
        height: 10px;
    }
    
    .error-message h1 {
        font-size: 32px;
    }
    
    .error-description {
        font-size: 17px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .error-cta {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-large-404 {
        width: 100%;
        justify-content: center;
    }
    
    .fun-fact-box {
        flex-direction: column;
        text-align: center;
    }
    
    .fun-fact-box p {
        text-align: center;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 42px;
    }
    
    .about-grid-modern,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mv-grid-modern,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 17px;
    }
    
    .about-content-modern h2,
    .team-content h2 {
        font-size: 32px;
    }
    
    .values-grid-modern,
    .stats-grid-about {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 16px 24px;
    }
    
    .badge-number {
        font-size: 36px;
    }
}
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-adeskon-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-adeskon-visual {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-header-modern h2 {
        font-size: 36px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-step::after {
        display: none;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- AOS ANIMATIONS --- */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}





/* Service Pricing Info */
.service-pricing-info {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border-left: 4px solid var(--primary-color);
}

.service-pricing-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-pricing-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-pricing-info ul li {
    padding: 12px 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.service-pricing-info ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-pricing-info ul li i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.service-pricing-info ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Education Service Specific Styles */
.service-features-modern + .service-features-modern {
    border-top: 2px solid rgba(99, 102, 241, 0.1);
    padding-top: 24px;
}

/* Responsive Grid Adjustment for 6 items */
@media (max-width: 1024px) {
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .quick-services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Education Service Specific Styles */
.service-features-modern + .service-features-modern {
    border-top: 2px solid rgba(99, 102, 241, 0.1);
    padding-top: 24px;
}

/* Responsive Grid Adjustment for 6 items */
@media (max-width: 1024px) {
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .quick-services-grid {
        grid-template-columns: 1fr !important;
    }
}

