/* ============================================================================
   D PEKŞEN DIGITAL AGENCY - 
   ============================================================================ */

:root {
    /* Renk Paleti - Soft & Modern */
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --primary-dark: #3730A3;
    --secondary: #10B981;
    --accent: #F43F5E;
    
    --bg-body: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-light: #F1F5F9;
    --bg-dark: #0F172A;
    
    --text-main: #1E293B;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Gradyanlar */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
    --gradient-text: linear-gradient(135deg, #4F46E5, #EC4899);
    --gradient-soft: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    
    /* Gölgeler */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Font */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ============================================================================
   SCROLL PROGRESS BAR
   ============================================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
}

/* ============================================================================
   LAYOUT
   ============================================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-soft {
    background: var(--gradient-soft);
}

/* ============================================================================
   HEADER
   ============================================================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-main);
    transition: var(--transition-normal);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* NAV */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    padding: 10px;
    margin-top: 10px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, #EEF2FF, transparent),
                radial-gradient(circle at bottom left, #FEF3C7, transparent);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 450px;
}

.badge-vision {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 800;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Hero Visual Elements */
.abstract-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 8s ease-in-out infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 16px;
    width: 220px;
    position: absolute;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.glass-card.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.icon-float {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.glass-card span {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 4px;
    animation: fillBar 2s ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fillBar {
    from { width: 0; }
}

/* ============================================================================
   SERVICES GRID
   ============================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--text-main);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card:hover .icon-box {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .link-arrow {
    gap: 12px;
}

/* ============================================================================
   REVIEWS
   ============================================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #F59E0B;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: var(--text-main);
}

.author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================================================
   LOGO SLIDER - Kayan Referans Logoları
   ============================================================================ */
.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition-normal);
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 150px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================================
   PORTFOLIO SECTION
   ============================================================================ */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-family);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.portfolio-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(79, 70, 229, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 700;
}

.portfolio-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tags .tag {
    padding: 6px 12px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.portfolio-tags .tag:hover {
    background: var(--primary);
    color: white;
}

.portfolio-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F3E8FF 100%);
    border-radius: 16px;
}

.portfolio-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
}

.portfolio-cta .btn {
    padding: 15px 35px;
    font-size: 1.05rem;
}

/* ============================================================================
   INNER PAGES
   ============================================================================ */
.page-header {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(100px);
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs li:last-child::after {
    content: '';
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: white;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #F59E0B;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.phone-quick {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Page Content */
.page-content-wrapper {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Article Content */
.service-article {
    line-height: 1.8;
}

.article-intro {
    margin-bottom: 40px;
}

.lead {
    font-size: 1.25rem !important;
    color: var(--text-main) !important;
    font-weight: 500;
    line-height: 1.7 !important;
    margin-bottom: 20px;
}

.content-block {
    margin-bottom: 40px;
}

.service-article h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-main);
    font-weight: 800;
}

.service-article h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-main);
    font-weight: 700;
}

.service-article h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-main);
    font-weight: 600;
}

.service-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #EEF2FF 0%, #F3E8FF 100%);
    padding: 35px;
    border-radius: 16px;
    margin: 40px 0;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-main);
}

.check-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.process-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.process-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 15px;
}

.process-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px !important;
    color: var(--text-main);
}

.process-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0 !important;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.tech-badge:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tech-badge i {
    font-size: 1.1rem;
}

/* Customer Quote */
.customer-quote {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.customer-quote i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.customer-quote p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    margin-left: 40px;
    margin-bottom: 15px !important;
}

.customer-quote cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 40px;
}

/* FAQ Section */
.faq-section {
    margin-top: 50px;
}

.faq-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px !important;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0 !important;
    color: var(--text-light);
}

/* Related Services */
.related-services {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.related-services h3 {
    margin-bottom: 15px !important;
}

.internal-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(79, 70, 229, 0.3);
    text-underline-offset: 3px;
}

.internal-link:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary);
}

/* Content CTA */
.content-cta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
    color: white;
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-xl);
}

.content-cta h3 {
    margin-bottom: 15px !important;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.content-cta p {
    color: #CBD5E1;
    margin-bottom: 30px !important;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================================================
   SIDEBAR
   ============================================================================ */
.sidebar-widget {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
    color: var(--text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Related Services Widget */
.related-services-widget {
    background: linear-gradient(135deg, #EEF2FF 0%, #F3E8FF 100%);
}

.related-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.related-service-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.related-service-item i:first-child {
    width: 24px;
    text-align: center;
}

.related-service-item span {
    flex: 1;
}

.arrow-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-normal);
}

.related-service-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Geo Links */
.geo-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.geo-links::-webkit-scrollbar {
    width: 6px;
}

.geo-links::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.geo-links::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.geo-links a {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition-fast);
    display: block;
}

.geo-links a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 15px;
}

/* Info Widget */
.info-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.info-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.info-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.phone-link,
.wa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    transition: var(--transition-normal);
    margin-bottom: 10px;
}

.phone-link:hover,
.wa-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
footer {
    background: var(--bg-dark);
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    color: #94A3B8;
    margin-top: 20px;
    max-width: 350px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #CBD5E1;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list i {
    width: 24px;
    color: var(--primary-light);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
}

/* ============================================================================
   STICKY ELEMENTS
   ============================================================================ */
.sticky-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.sticky-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================================================
   MOBILE MENU
   ============================================================================ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    transition: var(--transition-normal);
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 992px) {
    /* Header */
    .header-inner {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        display: none;
        box-shadow: var(--shadow-xl);
        border-radius: 0 0 12px 12px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        display: none;
        margin-top: 10px;
    }
    
    .has-dropdown:hover .dropdown {
        display: block;
    }
    
    .cta-btn {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .glass-card {
        width: 180px;
        padding: 20px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    /* Content Grid */
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Process Grid */
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    /* Section */
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* CTA */
    .content-cta {
        padding: 35px 25px;
    }
    
    .content-cta h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    /* Sticky Elements */
    .sticky-wa,
    .back-to-top {
        bottom: 20px;
    }
    
    .sticky-wa {
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .back-to-top {
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .service-article h2 {
        font-size: 1.6rem;
    }
    
    .service-article h3 {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-cta {
        padding: 35px 20px;
    }
    
    .portfolio-cta p {
        font-size: 1.1rem;
    }
    
    .tech-badges {
        gap: 8px;
    }
    
    .tech-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.smooth-scroll {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}