/*
 * Frontend CSS - FlexiSoft CMS
 * Complete Frontend Styles
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #a3bffa;
    --primary-rgb: 102, 126, 234;
    --secondary: #764ba2;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --transition: all 0.3s ease;
}

/* ============================================
   Base Styles
   ============================================ */
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

/* Buttons */
.btn { font-weight: 600; border-radius: var(--radius); transition: var(--transition); }
.btn-primary { background: var(--gradient-primary); border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--gradient-primary); opacity: 0.95; }
.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--text-dark);
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.top-bar-info {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.top-bar-info li i { color: var(--primary-light); }
.top-bar-info a { color: rgba(255,255,255,0.8); }
.top-bar-info a:hover { color: white; }

.top-bar-social {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.top-bar-social a { color: rgba(255,255,255,0.8); font-size: 1rem; }
.top-bar-social a:hover { color: var(--primary-light); }

/* ============================================
   Site Header / Navigation
   ============================================ */
.site-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-lg); }
.site-header .navbar { padding: 0.75rem 0; }

.navbar-brand { display: flex; align-items: center; }
.logo-img { height: 45px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-primary {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.logo-tagline { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

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

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-item:hover { background: var(--bg-light); color: var(--primary); }
.dropdown-item i { color: var(--primary); margin-right: 0.5rem; }

.btn-cta { padding: 0.625rem 1.5rem; }

/* Mobile Menu */
.navbar-toggler { border: none; padding: 0.5rem; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.toggler-icon span { display: block; height: 2px; background: var(--text-dark); border-radius: 2px; }

.offcanvas { max-width: 320px; }
.offcanvas-header { border-bottom: 1px solid var(--border-color); padding: 1.25rem; }
.offcanvas-brand { display: flex; flex-direction: column; }
.offcanvas-body { padding: 1.25rem; }

.mobile-nav { list-style: none; padding: 0; margin: 0; }
.mobile-nav > li { border-bottom: 1px solid var(--border-color); }
.mobile-nav > li:last-child { border-bottom: none; }
.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: var(--text-dark);
    font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }
.mobile-nav a i { font-size: 1.125rem; width: 24px; color: var(--primary); }
.mobile-nav .submenu { list-style: none; padding: 0 0 0.5rem 2.5rem; margin: 0; display: none; }
.mobile-nav .has-submenu.open .submenu { display: block; }
.submenu-toggle { justify-content: space-between; }
.toggle-icon { transition: var(--transition); }
.has-submenu.open .toggle-icon { transform: rotate(180deg); }
.mobile-cta { padding-top: 1rem; }
.mobile-contact { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border-color); }
.mobile-contact-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.9375rem; }
.mobile-contact-item i { color: var(--primary); }
.mobile-contact-item:hover { color: var(--primary); }

/* ============================================
   Hero Slider Section
   ============================================ */
.hero-slider-section { position: relative; }
.hero-carousel { position: relative; }

.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
}

.slide-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,58,95,0.7) 100%);
    z-index: 3;
}

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

.slide-content { max-width: 650px; }

.slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.slide-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.slide-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.slide-buttons .btn { padding: 0.875rem 1.75rem; font-size: 1rem; }
.slide-buttons .btn-outline-light { border-width: 2px; }
.slide-buttons .btn-outline-light:hover { background: white; color: var(--primary); }

.slide-image { text-align: center; animation: float 6s ease-in-out infinite; }
.slide-image img { max-height: 450px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

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

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next { width: 60px; opacity: 0; transition: var(--transition); }
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next { opacity: 1; }

.carousel-control-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: var(--transition);
}

.carousel-control-icon:hover { background: var(--primary); }

.carousel-indicators { margin-bottom: 2rem; z-index: 999!important; }
.carousel-indicators button {
    width: 12px; height: 3px;
    border-radius: 0!important;
    background: rgba(255,255,255,0.5);
    border: 0!important;

    transition: var(--transition);
 }
.carousel-indicators button.active {
    background: white;
    height: 3px !important;
    opacity: 1 !important;
    border: 0;
}
.carousel-indicators button.active { background: white; height: 3px!important; opacity: 1!important;}

/* ============================================
   Stats Bar (Home)
   ============================================ */
.stats-bar {
    background: white;
    padding: 2rem 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: -30px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

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

.stat-prefix, .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ============================================
   Page Header (Breadcrumb Section) - KOYU LACİVERT
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 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");
    opacity: 0.5;
}

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

.page-header .page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-header .page-description {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 0; margin-bottom: 1rem; }
.breadcrumb-item { font-size: 0.875rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: white; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================
   Section Styles
   ============================================ */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle, .section-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
}

.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-subtitle,
.section-header.text-center .section-description { margin-left: auto; margin-right: auto; }

/* ============================================
   Service Cards
   ============================================ */
.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

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

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

.service-card .service-icon {
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.service-card .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card .service-description {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

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

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

/* Service Card V2 (Index Page) */
.service-card-v2 {
    border-radius: var(--radius-xl) !important;
    transition: var(--transition);
    border: 1px solid var(--border-color) !important;
}

.service-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary) !important;
}

.service-icon-box {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.5rem;
}

.service-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
}

/* Feature Icon Small */
.feature-icon-sm {
    width: 50px; height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.25rem;
}

/* ============================================
   Project Cards
   ============================================ */
.project-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    border: 1px solid var(--border-color);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-card .project-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.project-card .project-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 3rem;
}

.project-card .project-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-card .project-content { padding: 1.5rem; }
.project-card .project-client { font-size: 0.8125rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 0.25rem; }
.project-card .project-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.project-card .project-description { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1rem; }

.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.project-tag {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   Blog Cards
   ============================================ */
.blog-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.blog-card .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.blog-card .blog-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 3rem;
}

.blog-card .blog-category {
    position: absolute;
    top: 1rem; left: 1rem;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card .blog-content { padding: 1.5rem; }

.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.blog-card .blog-meta i { margin-right: 0.25rem; }

.blog-card .blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.blog-card .blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

/* ============================================
   Contact Page
   ============================================ */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.contact-form .form-floating > label { padding: 0.875rem 1rem; }

.contact-info-wrapper { padding: 0; }

.contact-info-wrapper .info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
    border-color: var(--primary);
}

.info-card .info-icon {
    width: 60px; height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.5rem;
}

.info-card .info-icon.text-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.info-card .info-content { flex: 1; }

.info-card .info-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}

.info-card .info-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.info-card .info-content a { color: var(--primary); font-weight: 500; }
.info-card .info-content a:hover { color: var(--primary-dark); }

/* Map */
.map-section { margin-top: -1px; }
.map-wrapper { height: 400px; background: var(--bg-light); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

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

.about-features { display: flex; flex-direction: column; gap: 1.5rem; }

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 50px; height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    color: white;
    font-size: 1.25rem;
}

.feature-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-content p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; }

.about-visual { position: relative; }
.about-image-main { text-align: center; }
.about-image-main img { max-height: 400px; }

.experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.875rem; opacity: 0.9; }

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

.cta-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.cta-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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.1'%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");
}

.cta-section .container { position: relative; z-index: 1; }
.cta-title { color: white; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-description { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin-bottom: 2rem; }
.cta-section .btn-light { background: white; color: var(--primary); border: none; }
.cta-section .btn-light:hover { background: var(--text-dark); color: white; }
.cta-section .btn-outline-light { border: 2px solid rgba(255,255,255,0.5); color: white; }
.cta-section .btn-outline-light:hover { background: white; color: var(--primary); border-color: white; }

/* ============================================
   Process Section
   ============================================ */
.process-item { position: relative; }

.process-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(var(--primary-rgb), 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 0;
}

.process-icon-circle {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Product Cards
   ============================================ */
.product-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.product-card .product-image { height: 350px; overflow: hidden; background: var(--bg-light); }

.product-card .product-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: var(--transition);
}

.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .product-body { padding: 1.5rem; }
.product-card .product-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-card .product-title a { color: var(--text-dark); }
.product-card .product-title a:hover { color: var(--primary); }
.product-card .product-excerpt { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1rem; }

/* ============================================
   Blog Detail
   ============================================ */
.blog-detail-header { margin-bottom: 2rem; }

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.blog-detail-meta i { color: var(--primary); margin-right: 0.375rem; }

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-featured-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2rem; }
.blog-featured-image img { width: 100%; height: auto; }

.blog-content { font-size: 1.0625rem; line-height: 1.8; color: var(--text-dark); }
.blog-content h2, .blog-content h3, .blog-content h4 { margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.blog-content p { margin-bottom: 1.5rem; }
.blog-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-content blockquote { border-left: 4px solid var(--primary); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-muted); }

/* Blog Tags */
.blog-tags { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center;
    gap: 0.75rem; 
    margin-top: 2.5rem; 
    padding-top: 2rem; 
    border-top: 1px solid var(--border-color); 
}

.blog-tags .tags-label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

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

.blog-tags .tag-link { 
    background: var(--bg-light); 
    color: var(--text-muted); 
    padding: 0.5rem 1rem; 
    border-radius: 50px; 
    font-size: 0.875rem; 
    font-weight: 500;
    transition: var(--transition); 
    border: 1px solid transparent;
}

.blog-tags .tag-link:hover { 
    background: var(--primary); 
    color: white; 
    border-color: var(--primary);
}

.blog-tags .tag { 
    background: var(--bg-light); 
    color: var(--text-muted); 
    padding: 0.375rem 0.875rem; 
    border-radius: var(--radius); 
    font-size: 0.875rem; 
    transition: var(--transition); 
}

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

/* Blog Page Header */
.page-header-blog {
    padding: 5rem 0 3rem;
    position: relative;
}

.page-header-blog .page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: -1;
}

.page-header-blog .page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Blog Category Badge */
.blog-category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.blog-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Blog Post Meta (Header Area) */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.85);
}

.blog-post-meta .meta-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.blog-post-meta .meta-author .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.blog-post-meta .meta-author span {
    font-weight: 600;
    color: white;
}

.blog-post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.blog-post-meta .meta-item i {
    color: var(--primary-light);
    font-size: 1rem;
}

/* Blog Featured Image Section */
.blog-featured-image {
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.blog-featured-image .featured-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-featured-image .featured-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Blog Excerpt Block */
.blog-excerpt-block {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.02) 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary);
}

.blog-excerpt-block .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0;
}

/* Blog Share Section */
.blog-share {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.blog-share .share-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.blog-share .share-buttons {
    display: flex;
    gap: 0.75rem;
}

.blog-share .share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.125rem;
    transition: var(--transition);
    color: white;
}

.blog-share .share-btn.twitter {
    background: #000000;
}

.blog-share .share-btn.twitter:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.blog-share .share-btn.facebook {
    background: #1877f2;
}

.blog-share .share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24,119,242,0.4);
}

.blog-share .share-btn.linkedin {
    background: #0a66c2;
}

.blog-share .share-btn.linkedin:hover {
    background: #095eb5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(10,102,194,0.4);
}

.blog-share .share-btn.whatsapp {
    background: #25d366;
}

.blog-share .share-btn.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.author-box .author-avatar-lg {
    flex-shrink: 0;
}

.author-box .author-avatar-lg img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow);
}

.author-box .author-info {
    flex: 1;
}

.author-box .author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.author-box .author-info p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Blog Detail Page Responsive */
@media (max-width: 991.98px) {
    .page-header-blog {
        padding: 4rem 0 2.5rem;
    }
    
    .page-header-blog .page-title {
        font-size: 2rem;
    }
    
    .blog-featured-image {
        margin-top: -2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header-blog {
        padding: 3rem 0 2rem;
    }
    
    .page-header-blog .page-title {
        font-size: 1.5rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-post-meta .meta-author {
        padding-right: 0;
        border-right: none;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .blog-featured-image {
        margin-top: -1.5rem;
    }
    
    .blog-excerpt-block {
        padding: 1.5rem;
    }
    
    .blog-excerpt-block .lead {
        font-size: 1.125rem;
    }
    
    .blog-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .blog-share .share-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .author-box .author-avatar-lg img {
        width: 70px;
        height: 70px;
    }
    
    .blog-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-widget h5 { font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--primary); }

.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li { padding: 0.625rem 0; border-bottom: 1px solid var(--border-color); }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a { display: flex; justify-content: space-between; color: var(--text-dark); }
.sidebar-categories a:hover { color: var(--primary); }
.sidebar-categories .count { background: var(--bg-light); padding: 0.125rem 0.5rem; border-radius: var(--radius-sm); font-size: 0.75rem; color: var(--text-muted); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-cloud a { background: var(--bg-light); color: var(--text-muted); padding: 0.375rem 0.75rem; border-radius: var(--radius); font-size: 0.8125rem; transition: var(--transition); }
.tag-cloud a:hover { background: var(--primary); color: white; }

/* ============================================
   Project Detail
   ============================================ */
.project-hero { position: relative; height: 450px; overflow: hidden; background: var(--bg-light); }
.project-hero img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%); }

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

.project-info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.project-info-card h5 { font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }

.project-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.project-info-item:last-child { border-bottom: none; }
.project-info-item .label { color: var(--text-muted); }
.project-info-item .value { font-weight: 600; color: var(--text-dark); }

.challenge-solution-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.challenge-solution-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.challenge-solution-card h4 i { color: var(--primary); }

/* ============================================
   Service Detail
   ============================================ */
.service-features-list { list-style: none; padding: 0; margin: 0; }
.service-features-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}
.service-features-list li:last-child { border-bottom: none; }
.service-features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

.service-benefits-list { list-style: none; padding: 0; margin: 0; }
.service-benefits-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.service-benefits-list li:last-child { border-bottom: none; }
.service-benefits-list li i { color: var(--primary); font-size: 1.25rem; margin-top: 3px; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 5rem 0 4rem; }
.footer-logo { filter: brightness(0) invert(1); margin-bottom: 1.5rem; height: 45px; }
.footer-brand .brand-text { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.footer-brand .brand-primary { font-size: 1.5rem; font-weight: 800; color: white; }
.footer-brand .brand-secondary { font-size: 0.875rem; opacity: 0.7; }
.footer-description { font-size: 0.9375rem; line-height: 1.7; opacity: 0.8; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.125rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-title { color: white; font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.75rem; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--primary); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 0.875rem; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.footer-contact i { color: var(--primary); font-size: 1.125rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: white; }

.footer-bottom { background: rgba(0,0,0,0.2); padding: 1.5rem 0; }
.copyright { font-size: 0.875rem; opacity: 0.7; margin-bottom: 0; }
.footer-bottom-links { display: flex; list-style: none; padding: 0; margin: 0; gap: 1.5rem; justify-content: flex-end; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-bottom-links a:hover { color: white; }

/* ============================================
   Back to Top & WhatsApp
   ============================================ */
.btn-back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-back-to-top.show { opacity: 1; visibility: visible; }
.btn-back-to-top:hover { transform: translateY(-5px); }

.btn-whatsapp-float {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.btn-whatsapp-float:hover { background: #128c7e; color: white; transform: scale(1.1); }

/* ============================================
   Pagination
   ============================================ */
.pagination { gap: 0.375rem; }
.page-item .page-link { border: none; border-radius: var(--radius); padding: 0.625rem 1rem; color: var(--text-dark); font-weight: 500; transition: var(--transition); }
.page-item .page-link:hover { background: var(--bg-light); color: var(--primary); }
.page-item.active .page-link { background: var(--gradient-primary); color: white; }
.page-item.disabled .page-link { background: transparent; color: var(--text-light); }

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border-color);
}

.testimonial-card .quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 1rem; }
.testimonial-card .testimonial-text { font-size: 1.0625rem; line-height: 1.7; color: var(--text-dark); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .author-image { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author-name { font-weight: 700; color: var(--text-dark); margin-bottom: 0.125rem; }
.testimonial-card .author-position { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================
   Value Cards
   ============================================ */
.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.value-card .value-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: var(--gradient-primary); border-radius: var(--radius-lg); margin: 0 auto 1.5rem; font-size: 2rem; color: white; }
.value-card .value-title { font-weight: 700; margin-bottom: 0.75rem; }
.value-card .value-description { color: var(--text-muted); line-height: 1.7; }

/* ============================================
   Team Cards
   ============================================ */
.team-card {
    text-align: center;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.team-card .team-image { height: 280px; overflow: hidden; }
.team-card .team-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-card .team-body { padding: 1.5rem; }
.team-card .team-name { font-weight: 700; margin-bottom: 0.25rem; }
.team-card .team-position { color: var(--primary); font-size: 0.9375rem; margin-bottom: 1rem; }
.team-card .team-social { display: flex; justify-content: center; gap: 0.5rem; }
.team-card .team-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--bg-light); border-radius: 50%; color: var(--text-muted); transition: var(--transition); }
.team-card .team-social a:hover { background: var(--primary); color: white; }

/* ============================================
   Timeline
   ============================================ */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border-color); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item .timeline-dot { position: absolute; left: 50%; top: 0; width: 16px; height: 16px; background: var(--gradient-primary); border-radius: 50%; transform: translateX(-50%); border: 3px solid white; box-shadow: var(--shadow); }
.timeline-item .timeline-content { width: 45%; background: white; padding: 1.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-item .timeline-year { font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.timeline-item .timeline-title { font-weight: 700; margin-bottom: 0.5rem; }

/* ============================================
   Utility Classes
   ============================================ */
.bg-light { background-color: var(--bg-light) !important; }
.text-primary { color: var(--primary) !important; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1199.98px) {
    .navbar-nav .nav-link { padding: 0.5rem 0.75rem; }
    .slide-title { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
    .page-header .page-title { font-size: 2rem; }
    .section-title { font-size: 1.875rem; }
    .section-padding { padding: 4rem 0; }
    .hero-slide { min-height: 500px; }
    .slide-title { font-size: 2rem; }
    .stats-bar { margin-top: 0; border-radius: 0; }
    .contact-form-wrapper { padding: 2rem; }
    .footer-main { padding: 4rem 0 3rem; }
    .timeline::before { left: 20px; }
    .timeline-item .timeline-dot { left: 20px; }
    .timeline-item .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; }
}

@media (max-width: 767.98px) {
    .top-bar { display: none; }
    .page-header { padding: 3rem 0 2rem; }
    .page-header .page-title { font-size: 1.75rem; }
    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.5rem; }
    .hero-slide { min-height: 450px; }
    .slide-title { font-size: 1.75rem; }
    .slide-description { font-size: 1rem; }
    .slide-buttons { flex-direction: column; }
    .slide-buttons .btn { width: 100%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-item:not(:last-child)::after { display: none; }
    .contact-form-wrapper { padding: 1.5rem; }
    .info-card { padding: 1.25rem; }
    .info-card .info-icon { width: 50px; height: 50px; min-width: 50px; font-size: 1.25rem; }
    .cta-title { font-size: 1.75rem; }
    .blog-detail-title { font-size: 1.75rem; }
    .footer-bottom-links { justify-content: center; margin-top: 1rem; }
    .btn-back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    .btn-whatsapp-float { bottom: 80px; right: 20px; width: 55px; height: 55px; }
}

@media (max-width: 575.98px) {
    .hero-slide { min-height: 400px; }
    .slide-title { font-size: 1.5rem; }
    .contact-form-wrapper { margin: 0 -15px; border-radius: 0; }
    .project-hero { height: 300px; }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header, .site-footer, .btn-back-to-top, .btn-whatsapp-float { display: none !important; }
    .page-header { background: #1e3a5f !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============================================
   PROJECT DETAIL PAGE STYLES
   ============================================ */

/* Project Page Header */
.page-header-project {
    padding: 5rem 0 4rem;
}

.project-client-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.project-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
}

.project-meta .meta-item i {
    font-size: 1.125rem;
    color: var(--primary-light);
}

.project-meta .btn-light {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.project-meta .btn-light:hover {
    background: white;
    color: var(--primary);
}

/* Project Hero Image */
.project-hero-image {
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.project-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.project-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

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

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.75rem;
}

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

.rich-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.rich-content p {
    margin-bottom: 1.25rem;
}

.rich-content h2, .rich-content h3, .rich-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.rich-content ul, .rich-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.rich-content li {
    margin-bottom: 0.5rem;
}

.rich-content img {
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

/* Challenge/Solution/Results Cards */
.challenge-solution-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.challenge-solution-card.challenge {
    border-left: 4px solid #f59e0b;
}

.challenge-solution-card.challenge .cs-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.challenge-solution-card.solution {
    border-left: 4px solid var(--primary);
}

.challenge-solution-card.solution .cs-icon {
    background: var(--gradient-primary);
}

.challenge-solution-card.results {
    border-left: 4px solid #10b981;
}

.challenge-solution-card.results .cs-icon {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.cs-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.5rem;
}

.cs-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Project Gallery */
.project-gallery {
    margin-top: 1rem;
}

.gallery-item {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '\F52D';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Project Testimonial */
.content-block .testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    border: none;
    box-shadow: none;
}

.content-block .testimonial-card .testimonial-quote {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.content-block .testimonial-card blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.content-block .testimonial-card .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content-block .testimonial-card .testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.content-block .testimonial-card .testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Project Sidebar */
.project-sidebar,
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.sidebar-card h5 i {
    color: var(--primary);
}

/* Client Info */
.client-info {
    text-align: center;
}

.client-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

.client-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Service List */
.service-list,
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li,
.sidebar-links li {
    border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child,
.sidebar-links li:last-child {
    border-bottom: none;
}

.service-list li a,
.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.service-list li a:hover,
.sidebar-links li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.service-list li a i,
.sidebar-links li a i {
    color: var(--primary);
    font-size: 1.125rem;
    width: 24px;
}

/* CTA Card */
.sidebar-card.cta-card {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.sidebar-card.cta-card h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sidebar-card.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

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

.sidebar-card.cta-card .btn-primary:hover {
    background: var(--text-dark);
    color: white;
}

.sidebar-card.cta-card .btn-outline-primary {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

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

/* ============================================
   SERVICE DETAIL PAGE STYLES
   ============================================ */

/* Service Page Header */
.page-header-service {
    padding: 5rem 0 4rem;
}

.service-icon-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    color: white;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
    border-color: rgba(255,255,255,0.5);
}

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

/* Feature Check Items */
.feature-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-check-item:hover {
    background: white;
    box-shadow: var(--shadow);
}

.feature-check-item i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.feature-check-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
    border-color: var(--primary);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 50px;
}

.benefit-item p {
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR DETAIL PAGES
   ============================================ */
@media (max-width: 991.98px) {
    .page-header-project,
    .page-header-service {
        padding: 4rem 0 3rem;
    }
    
    .project-hero-image {
        margin-top: -40px;
    }
    
    .challenge-solution-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cs-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .project-sidebar,
    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .service-icon-lg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .page-header-project,
    .page-header-service {
        padding: 3rem 0 2rem;
    }
    
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .project-hero-image {
        margin-top: -30px;
    }
    
    .content-title {
        font-size: 1.25rem;
    }
    
    .content-block .testimonial-card {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .benefit-number {
        min-width: auto;
    }
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

/* Product Cards - Index Page */
.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.badge-pricing {
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-featured {
    background: #f59e0b;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Product Image */
.product-card .product-image {
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Product Icon (when no image) */
.product-card .product-icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    position: relative;
}

.product-card .product-icon i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    transition: var(--transition);
}

.product-card:hover .product-icon i {
    opacity: 1;
    transform: scale(1.1);
}

/* Product Content */
.product-card .product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-card .product-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* Product Highlights */
.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.product-highlights li i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Product Price */
.product-card .product-price {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-card .product-price .price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card .product-price .price-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Product Page Header */
.page-header-product {
    padding: 5rem 0 4rem;
}

.product-type-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.product-price-hero {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-price-hero .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.product-price-hero .price-note {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* Highlight Cards */
.highlight-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.highlight-card .highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.25rem;
}

.highlight-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Product Sidebar */
.product-sidebar {
    position: sticky;
    top: 100px;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
}

.pricing-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    margin-bottom: 0.75rem;
}

.price-option.recommended {
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--primary);
}

.price-option.free {
    background: rgba(16, 185, 129, 0.1);
    justify-content: center;
}

.price-option .price-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-option .price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-note-small {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Related Service Link */
.related-service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.related-service-link:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.related-service-link i:first-child {
    font-size: 1.25rem;
    color: var(--primary);
}

.related-service-link span {
    flex: 1;
}

.related-service-link i:last-child {
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.related-service-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   PRODUCT RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .page-header-product {
        padding: 4rem 0 3rem;
    }

    .product-price-hero .price-amount {
        font-size: 2rem;
    }

    .product-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header-product {
        padding: 3rem 0 2rem;
    }

    .product-price-hero {
        flex-direction: column;
        gap: 0.25rem;
    }

    .product-price-hero .price-amount {
        font-size: 1.75rem;
    }

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

    .product-card .product-image,
    .product-card .product-icon {
        height: 180px;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
    }
}