/* ==========================================================================
   Go Tech Studio - Premium IT Solutions CSS
   ========================================================================== */

:root {
    --primary: #FF751F;        /* Orange accent */
    --primary-light: #FF944D;  /* Lighter orange */
    --secondary: #045CB4;      /* Blue accent */
    --secondary-light: #0672DE;/* Lighter blue */
    --bg-primary: #0A0A0A;     /* Dark theme background */
    --bg-surface: #121212;     /* Cards, forms, panels */
    --bg-elevated: #1C1C1E;    /* Inputs, dropdowns, hovered items */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(255, 117, 31, 0.5);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A2;
    --text-muted: #6C6C70;
    --text-inverse: #0A0A0A;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --container-width: 1200px;
    --container-padding: 24px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(255, 117, 31, 0.2);
    --shadow-glow-blue: 0 0 30px rgba(4, 92, 180, 0.2);
    
    --error: #FF1744;
    --success: #00C853;
}

/* ==========================================================================
   Resets & Core Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border: 2px solid var(--bg-primary);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    font-size: 15px;
    outline: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF8F4C);
    color: var(--text-inverse);
    box-shadow: 0 4px 15px rgba(255, 117, 31, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    transform: translateY(-2px);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(255, 117, 31, 0.08);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: rgba(255, 117, 31, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 117, 31, 0.2);
}

/* ==========================================================================
   Header & Logo & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 22px;
    font-weight: 850;
    color: var(--text-primary);
}

.logo-img {
    width: 120px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 60px;
    }
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--text-inverse);
    box-shadow: 0 4px 10px rgba(255, 117, 31, 0.25);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* Mobile Drawer Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    width: 320px;
    background: var(--bg-surface);
    z-index: 1002;
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

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

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: var(--space-xs);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(4, 92, 180, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 117, 31, 0.1) 0%, transparent 60%);
    z-index: -2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: rgba(255, 117, 31, 0.08);
    border: 1px solid rgba(255, 117, 31, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid var(--border-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    min-width: 170px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
    font-weight: 600;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: var(--space-4xl);
    animation: bounce 2s infinite;
}

/* ==========================================================================
   Sections & Layout General
   ========================================================================== */
section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-4xl);
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 850;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 117, 31, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 117, 31, 0.15);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 117, 31, 0.3);
}

.service-title {
    font-size: 22px;
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.service-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    flex-grow: 1;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.service-link:hover {
    gap: var(--space-md);
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.projects-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(18, 18, 18, 0.5) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-body {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex-grow: 1;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-client {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.project-title {
    font-size: 22px;
    font-weight: 750;
    color: var(--text-primary);
    line-height: 1.3;
}

.card-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: auto;
    padding-top: var(--space-sm);
}

.tech-tag {
    padding: 4px 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 11px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* ==========================================================================
   Ongoing Projects Section
   ========================================================================== */
.ongoing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.ongoing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.ongoing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.ongoing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
}

.ongoing-title {
    font-size: 22px;
    font-weight: 750;
    color: var(--text-primary);
    line-height: 1.3;
}

.ongoing-client {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    font-weight: 500;
}

.status-planning {
    background: rgba(4, 92, 180, 0.12);
    color: #3897FF;
    border: 1px solid rgba(4, 92, 180, 0.25);
}

.status-design {
    background: rgba(156, 39, 176, 0.12);
    color: #D500F9;
    border: 1px solid rgba(156, 39, 176, 0.25);
}

.status-development {
    background: rgba(255, 117, 31, 0.12);
    color: var(--primary);
    border: 1px solid rgba(255, 117, 31, 0.25);
}

.status-testing {
    background: rgba(255, 193, 7, 0.12);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.status-launch {
    background: rgba(0, 200, 83, 0.12);
    color: var(--success);
    border: 1px solid rgba(0, 200, 83, 0.25);
}

.ongoing-progress {
    margin-bottom: var(--space-xl);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.progress-bar {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.ongoing-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-lg);
}

.ongoing-meta-item {
    text-align: center;
}

.ongoing-meta-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
    font-weight: 600;
}

.ongoing-meta-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.team-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    text-align: center;
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.team-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-elevated);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all var(--transition-slow);
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.team-info {
    padding: var(--space-xl);
}

.team-name {
    font-size: 22px;
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.team-position {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.team-skills {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.team-skill {
    padding: 4px 10px;
    background: rgba(255, 117, 31, 0.06);
    border: 1px solid rgba(255, 117, 31, 0.12);
    border-radius: var(--radius-md);
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.team-social-link {
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.team-social-link:hover {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
    box-shadow: 0 4px 8px rgba(255, 117, 31, 0.2);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 260px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn var(--transition-base);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-size: 72px;
    color: rgba(255, 117, 31, 0.12);
    position: absolute;
    left: -24px;
    top: -36px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    margin-bottom: var(--space-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-company {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.testimonial-rating {
    color: #ffb300;
    font-size: 14px;
}

.star.filled {
    color: #ffb300;
}

.testimonial-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    width: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
}

.testimonial-nav-btn {
    width: 46px;
    height: 46px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    pointer-events: auto;
    box-shadow: var(--shadow-sm);
}

.testimonial-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-elevated);
}

.testimonial-prev {
    transform: translateX(-64px);
}

.testimonial-next {
    transform: translateX(64px);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 26px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-body {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-date {
    font-weight: 500;
}

.blog-title {
    font-size: 20px;
    font-weight: 750;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-md);
    margin-top: auto;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.blog-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

.blog-author-name {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Featured Blog Card Layout */
.blog-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
}

.blog-card.featured .blog-image {
    aspect-ratio: auto;
    height: 100%;
}

.blog-card.featured .blog-body {
    padding: var(--space-2xl);
}

.blog-card.featured .blog-title {
    font-size: 28px;
    line-height: 1.3;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.06), rgba(4, 92, 180, 0.06));
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 117, 31, 0.04) 0%, transparent 60%);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 850;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* ==========================================================================
   Forms & Form Elements
   ========================================================================== */
.form-group {
    margin-bottom: var(--space-xl);
    position: relative;
    text-align: left;
}

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

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 117, 31, 0.12);
}

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

.form-group.has-error .form-input, 
.form-group.has-error .form-textarea,
.form-group.has-error .form-select {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(255, 23, 68, 0.12);
}

.form-group.has-error::after {
    content: 'This field is required';
    font-size: 11px;
    color: var(--error);
    position: absolute;
    bottom: -18px;
    left: 0;
    font-weight: 500;
}

/* Confetti Container */
.confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-10%) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 280px;
    animation: toast-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s ease;
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--error);
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
}

.toast-close:hover {
    color: var(--text-primary);
}

@keyframes toast-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Footer Base & Rest of Stylesheet
   ========================================================================== */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    padding: var(--space-4xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    max-width: 180px;
}

.footer-logo .logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-inverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-social-link svg {
    display: block;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    padding-bottom: var(--space-xs);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-link {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-link::before {
    content: '→';
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-newsletter {
    margin-top: var(--space-lg);
}

.footer-newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-sm);
    outline: none;
    transition: border-color var(--transition-fast);
}

.footer-newsletter-input:focus {
    border-color: var(--primary);
}

.footer-newsletter-input::placeholder {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-copyright .heart {
    color: var(--error);
}

.footer-phones {
    display: flex;
    gap: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-phone svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.page-header {
    padding: calc(72px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 117, 31, 0.05) 0%, transparent 50%), var(--bg-primary);
    z-index: -1;
}

.page-header-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.page-header-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs-separator {
    color: var(--text-muted);
}

.breadcrumbs-current {
    color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
}

.pagination-btn, .pagination-number {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-btn:hover, .pagination-number:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-inverse);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: var(--text-base);
    outline: none;
    transition: all var(--transition-fast);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 117, 31, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 20px;
    height: 20px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.filter-tab {
    padding: 10px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 117, 31, 0.1);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-inverse);
}

.single-header {
    padding: calc(72px + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    position: relative;
}

.single-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.single-meta-separator {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.single-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
}

.single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.single-content h2 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-light);
}

.single-content h3 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin: var(--space-xl) 0 var(--space-md);
}

.single-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.single-content ul, .single-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.single-content ul {
    list-style: disc;
}

.single-content ol {
    list-style: decimal;
}

.single-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.single-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.single-content code {
    background: var(--bg-elevated);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--primary);
}

.single-content pre {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    overflow-x: auto;
    margin: var(--space-lg) 0;
}

.single-content pre code {
    background: none;
    padding: 0;
    color: var(--text-secondary);
    display: block;
    line-height: 1.6;
}

.single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}

.single-content th, .single-content td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.single-content th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.single-content td {
    color: var(--text-secondary);
}

.single-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-content a:hover {
    color: var(--primary-light);
}

.comments-section {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-light);
}

.comments-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.comment {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-light);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
}

.comment-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.comment-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.comment-form {
    margin-top: var(--space-2xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.team-detail-header {
    padding: calc(72px + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
}

.team-detail-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    margin: 0 auto var(--space-xl);
    box-shadow: var(--shadow-glow);
}

.team-detail-name {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.team-detail-position {
    font-size: var(--text-lg);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.team-detail-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.team-detail-bio {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--text-lg);
}

.skills-section {
    padding: var(--space-3xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.skills-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.skill-item {
    margin-bottom: var(--space-lg);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.skill-name {
    font-weight: 600;
    color: var(--text-primary);
}

.skill-percentage {
    color: var(--primary);
    font-weight: 700;
}

.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

.project-detail-gallery img {
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.project-detail-gallery img:hover {
    transform: scale(1.02);
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.project-tech-item {
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.project-results {
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.05), rgba(4, 92, 180, 0.05));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.project-results-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.project-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.project-result-item {
    text-align: center;
}

.project-result-value {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.project-result-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.about-story {
    padding: var(--space-3xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-content h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.value-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 117, 31, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--primary);
}

.value-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.value-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.03), rgba(4, 92, 180, 0.03));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.stat-item-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-item-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-detail-hero {
    padding: calc(72px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    color: white;
}

.service-detail-icon svg {
    width: 48px;
    height: 48px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.service-feature-check {
    width: 24px;
    height: 24px;
    background: rgba(0, 200, 83, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-feature-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
}

.error-code {
    font-size: clamp(120px, 15vw, 200px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.error-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.error-message {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

/* ==========================================================================
   Grid Utilities
   ========================================================================== */
.grid {
    display: grid;
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: var(--space-4xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.contact-info-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 117, 31, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-content h4 {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
}

.contact-info-content p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.contact-form-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.contact-success {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.contact-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

@media (max-width: 1023px) {
    .services-grid, .projects-grid, .team-grid, .blog-grid, .ongoing-grid, .about-grid, .values-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: var(--space-lg); }
    .stat-card { min-width: 120px; padding: var(--space-md) var(--space-lg); }
    .contact-grid { grid-template-columns: 1fr; }
    .project-detail-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    :root { --container-padding: 16px; }
    .services-grid, .projects-grid, .team-grid, .blog-grid, .ongoing-grid, .about-grid, .values-grid, .stats-grid, .footer-grid, .project-detail-gallery, .grid-cols-2 { grid-template-columns: 1fr; }
    .blog-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .header-cta .btn { display: none; }
    .hero-stats { flex-direction: column; align-items: center; gap: var(--space-md); }
    .stat-card { width: 100%; max-width: 280px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .filter-tabs { gap: var(--space-xs); }
    .filter-tab { padding: 8px 16px; font-size: var(--text-xs); }
    .cta-buttons { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-phones { flex-direction: column; gap: var(--space-sm); }
    .team-detail-photo { width: 150px; height: 150px; }
    .service-features-grid { grid-template-columns: 1fr; }
    .ongoing-meta { grid-template-columns: 1fr; gap: var(--space-sm); }
    .ongoing-meta-item { text-align: left; display: flex; justify-content: space-between; align-items: center; padding: var(--space-sm) 0; border-bottom: 1px solid var(--border-light); }
    .project-results-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 479px) {
    .section-title { font-size: var(--text-2xl); }
    .hero-title { font-size: var(--text-3xl); }
    .stat-number { font-size: var(--text-2xl); }
    .project-results-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--text-inverse); padding: var(--space-sm) var(--space-lg); border-radius: 0 0 var(--radius-md) var(--radius-md); z-index: 10000; font-weight: 600; }
.skip-link:focus { top: 0; }

@media (prefers-contrast: high) {
    :root { --border-light: #444444; --text-secondary: #CCCCCC; }
}

@media print {
    .site-header, .site-footer, .mobile-menu-toggle, .scroll-indicator, .hero-stats, .btn, .filter-tabs, .pagination, .toast-container, .modal-overlay { display: none !important; }
    body { background: white; color: black; }
    .hero { min-height: auto; padding: 40px 0; }
    a { text-decoration: underline; color: black; }
    .card, .service-card, .project-card { break-inside: avoid; border: 1px solid #ccc; }
}
