﻿/**
 * Fimgotech Solution - Premium Stylesheet
 * Clean, Modern & Professional Design
 */

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors - Light Blue Theme (#6fdcff) */
    --primary: #0ea5d8;
    --primary-hover: #0891c4;
    --primary-light: #6fdcff;
    --primary-dark: #0876a5;
    --primary-gradient: linear-gradient(135deg, #0ea5d8 0%, #6fdcff 100%);
    
    --secondary: #10b981;
    --accent: #f59e0b;
    --accent-pink: #ec4899;
    
    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --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;
    
    /* Status */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Theme Colors */
    --bg-body: #f8fafc;
    --bg-card: var(--white);
    --bg-dark: #0f172a;
    --text-heading: var(--gray-900);
    --text-body: var(--gray-600);
    --text-muted: var(--gray-400);
    --border-color: #e2e8f0;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(14, 165, 216, 0.2);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', var(--font-sans);
    
    /* Sizing */
    --header-height: 80px;
    --container-width: 1280px;
    --section-spacing: 120px;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
    --transition-slow: all 0.5s var(--ease);
}

/* Dark Mode */
.dark-mode {
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --text-heading: #f1f5f9;
    --text-body: #94a3b8;
    --text-muted: #64748b;
    --border-color: #334155;
}

/* ========== Reset ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-heading);
}

/* ========== Layout ========== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-spacing) 0;
}

.section-sm {
    padding: 80px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-heading) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-mode .section-title {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: 14px;
    transition: transform 0.3s var(--ease);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 216, 0.35);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 216, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-heading);
    border: 2px solid var(--border-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ========== Cards ========== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ========== Preloader ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
}

.dark-mode .header {
    background: rgba(15, 23, 42, 0.95);
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img,
.logo-img {
    height: 60px;
    transition: var(--transition);
}

.dark-mode .logo-img {
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dark-mode .theme-toggle {
    background: var(--gray-700);
}

.theme-toggle:hover {
    color: var(--primary);
    background: var(--gray-200);
}

.dark-mode .theme-toggle:hover {
    background: var(--gray-600);
}

.light-icon { display: none; }
.dark-mode .dark-icon { display: none; }
.dark-mode .light-icon { display: block; }

.nav-cta {
    display: none;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: var(--transition);
}

@media (min-width: 1024px) {
    .nav-cta { display: inline-flex; }
}

@media (max-width: 1023px) {
    .mobile-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--white) 100%);
}

.dark-mode .hero {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-card) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.2) 0%, rgba(14, 165, 216, 0.15) 100%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(236, 72, 153, 0.1);
    top: 50%;
    left: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(0, -20px) rotate(0deg); }
    75% { transform: translate(-30px, -30px) rotate(-5deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.dark-mode .hero-badge {
    background: var(--bg-card);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-heading);
}

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

/* Multicolor Hero Text Classes */
.hero-title .text-cyan {
    background: linear-gradient(135deg, #6fdcff 0%, #0ea5d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .text-white {
    background: none;
    -webkit-text-fill-color: var(--text-heading);
    color: var(--text-heading);
}

.dark-mode .hero-title .text-white {
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #6fdcff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 20px;
}

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

/* ========== About Section ========== */
.about-section {
    background: var(--white);
}

.dark-mode .about-section {
    background: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
    z-index: 1;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-placeholder i {
    font-size: 80px;
    color: var(--gray-300);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience .number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-experience .text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content .section-badge {
    display: inline-flex;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-body);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-experience {
        right: 20px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
}

/* ========== Services Section ========== */
.services-section {
    background: var(--bg-body);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
    transition: var(--transition);
}

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

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-description {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-link i {
    transition: transform 0.3s var(--ease);
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Counters Section ========== */
.counters-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: var(--white);
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.counter-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.counter-title {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .counters-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Portfolio Section ========== */
.portfolio-section {
    background: var(--white);
}

.dark-mode .portfolio-section {
    background: var(--bg-card);
}

.portfolio-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/12;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-actions {
    display: flex;
    gap: 12px;
}

.portfolio-link,
.portfolio-zoom {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-heading);
    font-size: 16px;
    transition: var(--transition);
}

.portfolio-link:hover,
.portfolio-zoom:hover {
    background: var(--primary);
    color: var(--white);
}

.portfolio-content {
    padding: 24px;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-description {
    font-size: 14px;
    color: var(--text-body);
}

.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.portfolio-empty i {
    font-size: 60px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.portfolio-empty p {
    font-size: 18px;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background: var(--bg-body);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    font-size: 18px;
    color: var(--gray-300);
}

.testimonial-rating i.active {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-heading);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.author-role {
    font-size: 14px;
    color: var(--text-body);
}

/* ========== Blog Section ========== */
.blog-section {
    background: var(--white);
}

.dark-mode .blog-section {
    background: var(--bg-card);
}

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

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

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

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

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

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder i {
    font-size: 40px;
    color: var(--gray-300);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta i {
    color: var(--primary);
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-heading);
}

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

.blog-excerpt {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.blog-link i {
    transition: transform 0.3s var(--ease);
}

.blog-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--primary-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

/* ========== Footer ========== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    filter: none;
}

.footer-about {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 15px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    margin-top: 4px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ========== Page Banner ========== */
.page-banner {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 100%);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: var(--gray-300);
}

.page-banner .breadcrumb a:hover {
    color: var(--white);
}

.page-banner .breadcrumb span:last-child {
    color: var(--primary-light);
}

/* ========== Contact Section ========== */
.contact-section {
    background: var(--bg-body);
}

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

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

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
}

.contact-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--text-body);
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
}

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

.form-group {
    margin-bottom: 0;
}

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

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-heading);
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 216, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

/* ========== Service Cards Large ========== */
.service-card-large {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

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

.service-card-large .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
}

.service-card-large h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card-large p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-body);
}

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

/* ========== Value Cards ========== */
.value-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.value-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
}

.value-card.featured h3,
.value-card.featured p {
    color: var(--white);
}

.value-card.featured .value-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ========== Counter Box ========== */
.counter-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.counter-box .counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(111, 220, 255, 0.15) 0%, rgba(14, 165, 216, 0.1) 100%);
}

.counter-box .counter-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-box .counter-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.counter-box .counter-label {
    font-size: 16px;
    color: var(--text-body);
}

/* ========== About Images ========== */
.about-images {
    position: relative;
}

.about-images .img-main {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-images .img-secondary {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 200px;
    border-radius: var(--radius-lg);
    border: 6px solid var(--bg-body);
    box-shadow: var(--shadow-lg);
}

.about-images .experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-images .experience-badge .number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.about-images .experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

.about-content .lead {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-content .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.about-content .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
}

.about-content .feature-item i {
    color: var(--success);
    font-size: 16px;
}

/* ========== Portfolio Card ========== */
.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.portfolio-card .portfolio-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-card .portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-card .no-image {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card .no-image i {
    font-size: 40px;
    color: var(--gray-300);
}

.portfolio-card .portfolio-info {
    padding: 24px;
}

.portfolio-card .portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.portfolio-card .portfolio-info .category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.portfolio-card .portfolio-info p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 16px;
}

.portfolio-card .portfolio-actions {
    display: flex;
    gap: 12px;
}

/* ========== Blog Single ========== */
.blog-single {
    background: var(--white);
    padding: 100px 0;
}

.dark-mode .blog-single {
    background: var(--bg-card);
}

.blog-single-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-single-header {
    margin-bottom: 40px;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.blog-single-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-single-meta i {
    color: var(--primary);
}

.blog-single-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    line-height: 1.3;
}

.blog-single-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-single-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-single-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
}

.blog-single-body p {
    margin-bottom: 24px;
}

.blog-single-body h2, 
.blog-single-body h3 {
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.blog-single-body ul,
.blog-single-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-single-body li {
    margin-bottom: 12px;
    list-style: disc;
}

.blog-single-body img {
    border-radius: var(--radius);
    margin: 32px 0;
}

.blog-single-body blockquote {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 24px 32px;
    margin: 32px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.dark-mode .blog-single-body blockquote {
    background: var(--bg-body);
}

/* ========== Utilities ========== */
.section-padding {
    padding: 100px 0;
}

.section-padding.pt-0 {
    padding-top: 0;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-100 { width: 100%; }

.bg-light {
    background: var(--gray-50);
}

.dark-mode .bg-light {
    background: var(--bg-body);
}

/* ========== Grid System ========== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-12 { width: 100%; }
}

.col-md-6 {
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}

/* ========== Skills Bar ========== */
.skill-item {
    margin-bottom: 24px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}

.skill-bar {
    height: 10px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 1s var(--ease);
}

/* ========== Team Section ========== */
.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.team-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.team-info .role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 16px;
    transition: var(--transition);
}

.dark-mode .team-social a {
    background: var(--gray-700);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========== FAQ Section ========== */
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    display: none;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========== Alert Messages ========== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 15px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--info);
}

/* ========== Tags ========== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.dark-mode .tag {
    background: var(--gray-700);
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ========== Responsive ========== */
@media (max-width: 1199px) {
    :root {
        --section-spacing: 100px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-spacing: 80px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-spacing: 60px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-content .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .counter-number {
        font-size: 36px;
    }
}

/* ========== AOS Animation Override ========== */
[data-aos] {
    transition-property: transform, opacity;
}

/* ========== Print Styles ========== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    #preloader {
        display: none !important;
    }
    
    .page-banner {
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* ========== Scroll Top Button ========== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(14, 165, 216, 0.35);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 216, 0.5);
}

/* ========== Notifications ========== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 16px 20px;
    padding-right: 40px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInRight 0.3s var(--ease);
    max-width: 350px;
}

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

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

.notification-info {
    border-left: 4px solid var(--info);
}

.notification-warning {
    border-left: 4px solid var(--warning);
}

.notification button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
    padding: 5px;
    line-height: 1;
}

.notification button:hover {
    color: var(--text-heading);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== Lightbox ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 40px;
    animation: fadeIn 0.3s var(--ease);
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== Section CTA ========== */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========== Story Text ========== */
.story-text {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ========== Process Quote ========== */
.process-quote {
    max-width: 700px;
    margin: 0 auto;
}

.process-quote blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-heading);
    position: relative;
    padding: 0 40px;
}

.process-quote blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.process-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-body);
}

/* ========== Quotes Section Background ========== */
.quotes-section {
    background: var(--bg-body);
    padding: 100px 0;
}

/* ========== Contact Page Section ========== */
.contact-page-section {
    background: var(--bg-body);
    padding: 100px 0;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-form-header p {
    color: var(--text-body);
    font-size: 16px;
}

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

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

.form-group label span {
    color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-heading);
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.contact-info-item .content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item .content p,
.contact-info-item .content a {
    font-size: 15px;
    color: var(--text-body);
}

.contact-info-item .content a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .contact-page-section .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

/* ========== Service Card Large Styles ========== */
.service-card-large {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.service-card-large .service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card-large .service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card-large h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card-large p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-body);
}

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

/* ========== Process Section Styles ========== */
.process-section {
    background: var(--bg-body);
}

.process-quote {
    max-width: 600px;
    margin: 0 auto 48px;
}

.process-quote blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-heading);
    margin: 0;
}

.process-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--primary);
}

.process-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.process-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== Portfolio Filter Styles ========== */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
}

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

.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

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

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-actions {
    display: flex;
    gap: 12px;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.portfolio-info p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.portfolio-link:hover {
    gap: 12px;
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        padding: 30px;
    }
}

/* ========== Blog Page Styles ========== */
.blog-page-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

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

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.blog-image .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta span i {
    color: var(--primary);
}

.blog-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-heading);
}

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

.blog-excerpt {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.blog-link:hover {
    gap: 12px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.pagination {
    display: flex;
    gap: 8px;
}

.pagination a,
.pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.current {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Contact Info List Styles ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

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

.contact-action-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-heading);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.contact-social {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

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

.contact-social .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== About Section Styles ========== */
.about-section {
    background: var(--bg-body);
}

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

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 35px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.about-experience .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-experience .text {
    display: block;
    font-size: 14px;
    color: var(--text-body);
    font-weight: 500;
    margin-top: 5px;
}

.about-content .section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 16px;
}

.about-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-experience {
        right: 20px;
        bottom: 20px;
    }
    
    .about-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========== Counters Section ========== */
.counters-section {
    background: var(--primary-gradient);
    padding: 80px 0;
}

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

.counter-card {
    text-align: center;
    color: var(--white);
}

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

.counter-card .value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-card .title {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-card .value {
        font-size: 36px;
    }
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background: var(--bg-body);
}

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

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.testimonial-quote {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Multi-color Text Styling ========== */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--primary);
}

.text-highlight-secondary {
    color: #7c3aed;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Service Detail Page Styles ========== */
.service-detail {
    background: var(--bg-body);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.service-main {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
}

.service-icon-large {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-icon-large i {
    font-size: 40px;
    color: var(--white);
}

.service-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-main .lead {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-main p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-main h3 {
    font-size: 24px;
    margin: 40px 0 24px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-steps .step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-body);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-box {
    padding: 28px;
    background: var(--bg-body);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.feature-box i {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-body);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tech-item i {
    font-size: 18px;
    color: var(--primary);
}

/* Social Platforms */
.social-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.platform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-body);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-heading);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.platform:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.platform i {
    font-size: 20px;
    color: var(--primary);
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li i {
    color: var(--success);
    font-size: 18px;
    margin-top: 3px;
}

/* Training Options */
.training-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-card {
    padding: 24px;
    background: var(--bg-body);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.option-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.option-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.option-card p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

/* Requirements List */
.requirements-list h4 {
    font-size: 18px;
    margin: 24px 0 12px;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list ul li {
    position: relative;
    padding-left: 28px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--text-body);
}

.requirements-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
}

.sidebar-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.service-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-links li {
    margin-bottom: 8px;
}

.service-links li:last-child {
    margin-bottom: 0;
}

.service-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: var(--text-body);
    font-size: 15px;
    transition: var(--transition);
}

.service-links a i {
    width: 24px;
    color: var(--primary);
}

.service-links a:hover,
.service-links li.active a {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--primary);
}

.cta-card {
    background: var(--primary-gradient);
    color: var(--white);
}

.cta-card h4 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.btn-block:last-child {
    margin-bottom: 0;
}

.contact-quick {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-quick li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-body);
    font-size: 14px;
}

.contact-quick li i {
    width: 20px;
    color: var(--primary);
}

.contact-quick a {
    color: var(--text-body);
}

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

@media (max-width: 991px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .features-grid,
    .training-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .service-main {
        padding: 28px;
    }
    
    .service-main h2 {
        font-size: 26px;
    }
}

/* ========== Services Page Grid ========== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-page-grid .service-card-large {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-page-grid .service-card-large p {
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.service-card-footer .btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-footer {
        flex-direction: column;
    }
}

/* ========== Quotes Slider ========== */
.quotes-slider-section {
    background: var(--bg-body);
    padding: 80px 0;
    overflow: hidden;
}

.quotes-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.quotes-slider {
    position: relative;
    min-height: 200px;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: center;
    padding: 0 40px;
}

.quote-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.3;
}

.quote-text {
    font-size: 28px;
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

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

.quotes-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.quote-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.quote-dot.active,
.quote-dot:hover {
    background: var(--primary);
}

.quotes-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.quotes-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.quotes-nav.prev {
    left: -60px;
}

.quotes-nav.next {
    right: -60px;
}

@media (max-width: 991px) {
    .quote-text {
        font-size: 22px;
    }
    
    .quotes-nav {
        display: none;
    }
}

/* ========== About Image Background ========== */
.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-wrapper.has-image .about-placeholder {
    display: none;
}

/* About Experience with Image Option */
.about-experience {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 35px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.about-experience.with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    width: 150px;
    height: 150px;
}

.about-experience.with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 216, 0.9) 0%, rgba(111, 220, 255, 0.85) 100%);
}

.about-experience.with-image .exp-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
}

.about-experience.with-image .number {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.about-experience.with-image .text {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== About Experience Image Fallback ========== */
.about-experience.with-image {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, #0ea5d8 0%, #6fdcff 100%);
}

/* ========== CTA Section Updated ========== */
.cta-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* ========== Skills Section ========== */
.skills-section {
    background: var(--bg-card);
}

.skills-bars {
    margin-top: 32px;
}

.skill-item {
    margin-bottom: 24px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background: var(--bg-body);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 1s ease-out;
}

/* Ensure buttons have proper sizing */
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

/* ========== Modern Refresh 2026 (Light Blue Brand) ========== */
:root {
    --primary: #39b6ff;
    --primary-hover: #199ee8;
    --primary-light: #8ed9ff;
    --primary-dark: #0d7fca;
    --primary-gradient: linear-gradient(130deg, #7fe0ff 0%, #39b6ff 45%, #158fd8 100%);
    --bg-body: #f4fbff;
    --bg-card: #ffffff;
    --text-heading: #08233a;
    --text-body: #37546a;
    --text-muted: #6e8ca3;
    --border-color: #d9ecf8;
    --shadow: 0 12px 34px -22px rgba(11, 65, 102, 0.34);
    --shadow-md: 0 24px 60px -34px rgba(8, 44, 71, 0.35);
    --shadow-lg: 0 30px 70px -40px rgba(7, 39, 64, 0.45);
    --shadow-card: 0 20px 55px -36px rgba(11, 65, 102, 0.42);
    --shadow-glow: 0 0 50px rgba(57, 182, 255, 0.28);
    --font-sans: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --section-spacing: 112px;
}

body {
    background:
        radial-gradient(circle at 14% 4%, rgba(127, 224, 255, 0.52) 0%, rgba(127, 224, 255, 0) 36%),
        radial-gradient(circle at 86% 14%, rgba(57, 182, 255, 0.2) 0%, rgba(57, 182, 255, 0) 40%),
        linear-gradient(180deg, #f7fcff 0%, #eef8ff 60%, #f7fcff 100%);
    color: var(--text-body);
}

.header {
    background: rgba(250, 255, 255, 0.9);
    border-bottom: 1px solid rgba(26, 145, 219, 0.12);
}

.header.scrolled {
    background: rgba(250, 255, 255, 0.98);
    box-shadow: 0 12px 40px -30px rgba(5, 51, 82, 0.45);
}

.logo-img {
    height: 50px;
}

.nav-link {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.theme-toggle {
    background: #eaf7ff;
    border: 1px solid #d5ecfb;
}

.theme-toggle:hover {
    background: #d9f1ff;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 14px 35px -20px rgba(21, 143, 216, 0.75);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px -22px rgba(21, 143, 216, 0.78);
}

.btn-outline,
.btn-secondary {
    border-color: #bfdff1;
    background: rgba(255, 255, 255, 0.75);
}

.hero {
    background:
        radial-gradient(circle at 22% 20%, rgba(127, 224, 255, 0.44) 0%, rgba(127, 224, 255, 0) 40%),
        radial-gradient(circle at 78% 8%, rgba(57, 182, 255, 0.28) 0%, rgba(57, 182, 255, 0) 38%),
        linear-gradient(160deg, #eef9ff 0%, #f9fdff 50%, #edf7ff 100%);
}

.hero-subtitle,
.section-badge {
    background: linear-gradient(135deg, rgba(57, 182, 255, 0.18) 0%, rgba(126, 225, 255, 0.22) 100%);
    border: 1px solid rgba(57, 182, 255, 0.28);
    color: #0873b7;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 4.3rem);
    letter-spacing: -0.03em;
}

.hero-description,
.section-subtitle {
    color: #44667f;
}

.about-section,
.portfolio-section,
.blog-section,
.skills-section,
.contact-section,
.contact-page-section {
    background: transparent;
}

.service-card,
.portfolio-item,
.blog-card,
.value-card,
.process-card,
.team-card,
.counter-box,
.contact-card,
.service-card-large,
.contact-form,
.contact-form-wrapper,
.contact-info-card,
.portfolio-card,
.testimonial-card {
    border: 1px solid rgba(137, 190, 218, 0.34);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 252, 255, 0.94) 100%);
}

.service-card:hover,
.portfolio-item:hover,
.blog-card:hover,
.value-card:hover,
.process-card:hover,
.team-card:hover,
.counter-box:hover,
.contact-card:hover,
.service-card-large:hover,
.portfolio-card:hover {
    border-color: rgba(25, 158, 232, 0.34);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-icon,
.feature-icon,
.value-icon,
.counter-box .counter-icon,
.contact-info-item .icon,
.service-card-large .service-icon {
    background: linear-gradient(135deg, rgba(57, 182, 255, 0.17) 0%, rgba(127, 224, 255, 0.22) 100%);
    color: #118ed6;
}

.counters-section,
.cta-section {
    background: linear-gradient(140deg, #0f7fc5 0%, #0aa9f8 45%, #6fdcff 100%);
}

.counters-section::before,
.cta-section::before {
    opacity: 0.75;
}

.page-banner {
    background:
        radial-gradient(circle at 18% 20%, rgba(143, 231, 255, 0.2) 0%, rgba(143, 231, 255, 0) 38%),
        linear-gradient(150deg, #083f67 0%, #0a6aa8 45%, #1aa6ea 100%);
}

.footer {
    background: linear-gradient(165deg, #03172a 0%, #07233d 100%);
}

.footer-top {
    border-top: 1px solid rgba(140, 218, 255, 0.16);
}

.footer-social a:hover {
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

.footer-logo img {
    filter: none;
}

.scroll-top {
    border-radius: 999px;
    background: var(--primary-gradient);
}

.nav-menu {
    backdrop-filter: blur(8px);
}

@media (max-width: 1023px) {
    .nav-menu {
        background: rgba(243, 251, 255, 0.98);
    }
}

/* Subtle page-load rhythm for major hero elements */
.hero-content > * {
    opacity: 0;
    transform: translateY(16px);
    animation: revealUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content > *:nth-child(2) { animation-delay: 0.16s; }
.hero-content > *:nth-child(3) { animation-delay: 0.24s; }
.hero-content > *:nth-child(4) { animation-delay: 0.32s; }

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

.dark-mode {
    --bg-body: #071623;
    --bg-card: #0d2336;
    --text-heading: #e7f5ff;
    --text-body: #b4d4e8;
    --text-muted: #8eb1c8;
    --border-color: #20415b;
}

.dark-mode body {
    background:
        radial-gradient(circle at 12% 2%, rgba(57, 182, 255, 0.22) 0%, rgba(57, 182, 255, 0) 32%),
        linear-gradient(180deg, #071523 0%, #0a1d2e 60%, #061624 100%);
}

.dark-mode .header,
.dark-mode .header.scrolled {
    background: rgba(8, 24, 38, 0.94);
    border-bottom-color: rgba(88, 180, 230, 0.2);
}

.dark-mode .theme-toggle {
    background: #12304a;
    border-color: #1f4867;
}

.dark-mode .service-card,
.dark-mode .portfolio-item,
.dark-mode .blog-card,
.dark-mode .value-card,
.dark-mode .process-card,
.dark-mode .team-card,
.dark-mode .counter-box,
.dark-mode .contact-card,
.dark-mode .service-card-large,
.dark-mode .contact-form,
.dark-mode .contact-form-wrapper,
.dark-mode .contact-info-card,
.dark-mode .portfolio-card,
.dark-mode .testimonial-card {
    background: linear-gradient(180deg, rgba(13, 36, 56, 0.95) 0%, rgba(10, 29, 45, 0.95) 100%);
    border-color: rgba(76, 139, 177, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    .hero-content > * {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ========== Products Section ========== */
.products-section {
    background: var(--bg-body);
}

.products-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: var(--primary);
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-body);
    color: var(--text-body);
}

.search-form button {
    padding: 10px 16px;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    transform: scale(1.05);
}

.category-list,
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.filter-list li {
    margin-bottom: 8px;
}

.category-list li a,
.filter-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--text-body);
    transition: var(--transition);
}

.category-list li a:hover,
.filter-list li a:hover,
.category-list li.active a,
.filter-list li.active a {
    background: rgba(14, 165, 216, 0.1);
    color: var(--primary);
}

.category-list .count {
    margin-left: auto;
    background: var(--bg-body);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

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

.featured-card .featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.featured-card .featured-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.featured-card h5 {
    font-size: 14px;
    margin-bottom: 8px;
}

.featured-card .featured-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-options select {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-body);
    color: var(--text-body);
    cursor: pointer;
}

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

.products-grid.small {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.product-card.featured {
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-badge.free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.product-badge.sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    color: #94a3b8;
    font-size: 48px;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn-action {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 16px;
    transition: var(--transition);
    transform: translateY(20px);
}

.product-card:hover .product-actions .btn-action {
    transform: translateY(0);
}

.product-actions .btn-action:hover {
    background: var(--primary);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-heading);
    transition: var(--transition);
}

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

.product-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating i {
    color: #e2e8f0;
    font-size: 12px;
}

.product-rating i.filled {
    color: #f59e0b;
}

.product-rating span {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 4px;
}

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

.product-stats i {
    margin-right: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-price .price.free {
    color: #10b981;
}

.product-price .price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.no-products i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-products h3 {
    margin-bottom: 12px;
}

.no-products p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Product Details Page */
.product-banner {
    padding: 120px 0 40px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery .main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.product-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
    border-color: var(--primary);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-box {
    padding-left: 20px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(14, 165, 216, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.product-details .product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-rating-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-rating-box .stars i {
    color: #f59e0b;
    font-size: 16px;
}

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

.product-price-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 216, 0.1), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius);
}

.product-price-box .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.product-price-box .price.free {
    color: #10b981;
}

.product-price-box .price-old {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price-box .discount {
    padding: 4px 12px;
    background: #ef4444;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-price-box .license {
    color: var(--text-muted);
    font-size: 14px;
}

.product-short-desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-meta-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.product-meta-info .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-meta-info .meta-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 216, 0.1);
    color: var(--primary);
    border-radius: 50%;
}

.product-meta-info .meta-item span {
    font-size: 14px;
    color: var(--text-body);
}

.product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.product-actions .btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.product-share a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    color: var(--text-body);
    border-radius: 50%;
    transition: var(--transition);
}

.product-share a:hover {
    background: var(--primary);
    color: white;
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-description {
    line-height: 1.8;
    color: var(--text-body);
}

.technologies-used {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.technologies-used h4 {
    margin-bottom: 16px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 6px 16px;
    background: rgba(14, 165, 216, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.features-list li i {
    color: #10b981;
    margin-top: 2px;
}

.requirements-content,
.changelog-content {
    line-height: 1.8;
    color: var(--text-body);
}

/* Reviews */
.reviews-list {
    margin-bottom: 40px;
}

.review-item {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
}

.reviewer-info h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 12px;
}

.review-date {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-muted);
}

.review-content {
    color: var(--text-body);
    line-height: 1.7;
}

.no-reviews {
    text-align: center;
    padding: 40px;
}

.no-reviews i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.review-form-box {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.review-form-box h4 {
    margin-bottom: 24px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 24px;
    color: #e2e8f0;
    transition: var(--transition);
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #f59e0b;
}

/* Purchase Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    width: 100%;
    max-width: 480px;
    margin: 20px;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--primary-gradient);
    color: white;
}

.modal-header h5 {
    font-size: 18px;
    font-weight: 600;
}

.modal-header .close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.modal-body {
    padding: 24px;
}

.order-summary {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-body);
    border-radius: var(--radius);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.summary-row:last-child {
    border: none;
}

.summary-row.total {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid var(--border-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid.small {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .products-grid,
    .products-grid.small {
        grid-template-columns: 1fr;
    }
    .products-toolbar {
        flex-direction: column;
        gap: 12px;
    }
    .product-meta-info {
        grid-template-columns: 1fr;
    }
    .product-actions {
        flex-direction: column;
    }
    .product-gallery .main-image img {
        height: 280px;
    }
    .product-info-box {
        padding-left: 0;
        margin-top: 30px;
    }
}
