/* BYG Dijital - Modern Style CSS */

/* Root Variables */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-instagram: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --gradient-facebook: linear-gradient(45deg, #3b5998, #8b9dc3);
    --gradient-twitter: linear-gradient(45deg, #1da1f2, #0d8bd9);
    --gradient-whatsapp: linear-gradient(45deg, #25d366, #128c7e);
    --gradient-google: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
    --gradient-youtube: linear-gradient(45deg, #ff0000, #cc0000);
    --gradient-maps: linear-gradient(45deg, #4285f4, #0f9d58);
    --gradient-danger: linear-gradient(45deg, #ff6b6b, #ee5a24);
    --gradient-warning: linear-gradient(45deg, #feca57, #ff9ff3);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Fonts */
    --font-family-base: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-heading: 'Poppins', var(--font-family-base);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    animation: pulse 2s infinite;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

/* Header Styles */
.main-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    padding: var(--spacing-md) 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all var(--transition-base);
}

.navbar.scrolled .navbar-brand {
    color: var(--dark-color);
}

.brand-logo {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
    min-width: 320px;
}

.dropdown-header {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dropdown-item {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    color: var(--dark-color);
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

.dropdown-divider {
    border-color: rgba(102, 126, 234, 0.3);
    margin: var(--spacing-sm) 0;
}

/* Glass Effect */
.glass-card, .glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

/* FAQ Section */
.faq-section-modern {
    padding: 50px 0;
    background: var(--light-bg);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    min-height: 44px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 24px 18px;
    max-height: 1000px;
    overflow: visible;
}

.faq-answer-content {
    color: #666;
    line-height: 1.7;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: var(--light-bg);
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-card li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.content-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.content-card strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xl);
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 1s ease-out 1.1s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 1.3s both;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-card {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: floatIcon 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 10%; right: 20%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; }
.floating-icon:nth-child(4) { bottom: 10%; right: 10%; }

/* Services Section */
.services-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.section-header {
    margin-bottom: var(--spacing-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.section-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: var(--spacing-3xl);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    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);
    transition: transform var(--transition-base);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.bg-gradient-instagram { background: var(--gradient-instagram); }
.bg-gradient-facebook { background: var(--gradient-facebook); }
.bg-gradient-twitter { background: var(--gradient-twitter); }
.bg-gradient-whatsapp { background: var(--gradient-whatsapp); }
.bg-gradient-google { background: var(--gradient-google); }
.bg-gradient-youtube { background: var(--gradient-youtube); }
.bg-gradient-maps { background: var(--gradient-maps); }
.bg-gradient-danger { background: var(--gradient-danger); }
.bg-gradient-warning { background: var(--gradient-warning); }

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.service-description {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.service-features {
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.service-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: var(--spacing-lg);
}

/* Process Section */
/* Process Section - Horizontal Cards */
.process-section-horizontal {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-horizontal-grid {
    margin-top: 30px;
}

.process-card-horizontal {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.process-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.process-card-horizontal:hover::before {
    opacity: 1;
}

.process-number-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.process-card-horizontal:hover .process-number-badge {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.process-icon-horizontal {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-card-horizontal:hover .process-icon-horizontal {
    transform: scale(1.1);
    color: #764ba2;
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-card-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Old Process Section (kept for compatibility) */
.process-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step-number {
    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.125rem;
    margin-right: var(--spacing-xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-icon {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.step-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

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

.blog-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-content {
    padding: var(--spacing-xl);
}

.blog-meta {
    margin-bottom: var(--spacing-md);
}

.blog-date {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.blog-excerpt {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.blog-footer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: var(--spacing-lg);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    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%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: white;
}

.footer-content {
    padding: var(--spacing-3xl) 0;
}

.footer-section {
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.footer-brand .brand-logo {
    margin-right: var(--spacing-md);
}

.footer-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-brand .brand-tagline {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.footer-stats .stat-item {
    text-align: left;
}

.footer-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: white;
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}

.contact-value {
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.footer-social {
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link.facebook { background: #1877F2; }
.social-link.twitter { background: #1DA1F2; }
.social-link.instagram { background: linear-gradient(135deg, #E1306C, #F77737); }
.social-link.linkedin { background: #0077b5; }
.social-link.whatsapp { background: #25D366; }

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.copyright p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.byg-link {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.byg-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Contact Box - Yeni Tasarım */
.contact-box {
    background: #101626;
    border: 1px solid #1d2538;
    border-radius: 16px;
    padding: 20px 25px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.contact-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4d8bff;
    text-align: center;
}

.contact-box .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 15px;
    color: #e5e5e5;
}

.contact-box .contact-item i {
    color: #4d8bff;
    font-size: 16px;
}

.social-share {
    margin-top: 18px;
    text-align: center;
}

.social-share p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 4px;
    border-radius: 50%;
    background: #1b2235;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background: #4d8bff;
}

/* Renk uyarlamaları */
.social-icons .facebook { background: #1877f2; }
.social-icons .twitter { background: #1da1f2; }
.social-icons .instagram { background: #e4405f; }
.social-icons .linkedin { background: #0077b5; }
.social-icons .whatsapp { background: #25d366; }

.footer-badges {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-item i {
    font-size: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Service Detail Pages */
.service-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
}

.service-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.service-hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.service-details-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-color);
}

.service-content {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.service-content-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.service-content-wrapper {
    line-height: 1.6;
}

.content-section {
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.section-text {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

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

.feature-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.success-rates {
    background: rgba(16, 185, 129, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-xl);
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.rate-label {
    font-weight: 500;
    color: var(--dark-color);
}

.rate-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.service-features-section,
.service-process-section {
    margin-bottom: var(--spacing-2xl);
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

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

.feature-icon {
    margin-right: var(--spacing-md);
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.feature-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

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

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

.sidebar-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.card-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.card-text {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.requirements-list li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    color: var(--secondary-color);
}

.requirements-list i {
    margin-right: var(--spacing-md);
    margin-top: 2px;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.stats-grid .stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--border-radius-md);
}

.stats-grid .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stats-grid .stat-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.other-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.other-service-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--dark-color);
    transition: all var(--transition-base);
}

.other-service-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
    color: var(--dark-color);
}

.service-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}

.service-name {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.service-desc {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Blog Pages */
.blog-hero,
.contact-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

.blog-index {
    min-height: 100vh;
}

.post-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.post-category {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-date {
    font-size: 0.875rem;
    opacity: 0.9;
}

.post-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.post-content-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-color);
}

.post-content {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    line-height: 1.7;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.post-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-md);
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.25rem;
}

.post-content p {
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}

.post-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xl);
}

.post-content ul,
.post-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.post-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.post-content .alert {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-xl) 0;
}

.post-content .alert-info {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.post-share {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.post-share h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

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

.share-btn.facebook { background: var(--gradient-facebook); }
.share-btn.twitter { background: var(--gradient-twitter); }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: var(--gradient-whatsapp); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.related-post {
    display: flex;
    gap: var(--spacing-md);
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content {
    flex: 1;
}

.related-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
}

.related-post-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.related-post-date {
    font-size: 0.75rem;
    color: var(--secondary-color);
}

.categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--dark-color);
    transition: all var(--transition-base);
}

.category-item:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 50px;
    min-width: 24px;
    text-align: center;
}

.blog-filters {
    margin-bottom: var(--spacing-2xl);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.filter-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.blog-grid {
    margin-bottom: var(--spacing-2xl);
}

/* Contact Pages */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-color);
}

.contact-info {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.contact-header {
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.contact-subtitle {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.contact-items {
    margin-bottom: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-2xl);
}

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

.contact-icon.whatsapp {
    background: var(--gradient-whatsapp);
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.contact-link {
    color: var(--success-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--success-color);
    text-decoration: underline;
}

.quick-contact {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-lg);
}

.quick-contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-form {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.form-subtitle {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.form-control,
.form-select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

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

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: var(--danger-color);
    margin-top: var(--spacing-sm);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.form-check-input {
    margin-right: var(--spacing-md);
    margin-top: 4px;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    padding: var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.accordion {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    padding: var(--spacing-xl);
    background: white;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.125rem;
    transition: all var(--transition-base);
}

.accordion-button:not(.collapsed) {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-info { color: var(--info-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-success { background-color: var(--success-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; }
.bg-danger { background-color: var(--danger-color) !important; }
.bg-info { background-color: var(--info-color) !important; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 2rem;
        --spacing-2xl: 1.5rem;
    }
    
    /* Process Horizontal Mobile */
    .process-section-horizontal {
        padding: 20px 0;
    }
    
    .process-horizontal-grid {
        margin-top: 20px;
    }
    
    .process-card-horizontal {
        padding: 15px 15px;
        margin-bottom: 15px;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .process-card-horizontal .process-icon-horizontal {
        margin-bottom: 15px;
    }
    
    .process-card-horizontal .process-number-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 15px;
    }
    
    .process-number-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .process-icon-horizontal {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .process-card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .process-card-description {
        font-size: 0.9rem;
    }
    
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-icons {
        display: none;
    }
    
    .service-hero {
        min-height: 40vh;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step::after {
        display: none;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-lg);
        align-self: center;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-stats .stat-item {
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: var(--spacing-lg);
        gap: 10px;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-box {
        max-width: 100%;
        padding: 18px 20px;
        margin: 12px 0;
    }
    
    .contact-box h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .contact-box .contact-item {
        font-size: 14px;
        margin: 6px 0;
    }
    
    .contact-box .contact-item i {
        font-size: 14px;
    }
    
    .social-share {
        margin-top: 15px;
    }
    
    .social-share p {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        margin: 0 3px;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .copyright {
        text-align: center !important;
    }
    
    .footer-legal {
        text-align: center;
        margin-top: 10px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.875rem;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .blog-card,
    .sidebar-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .whatsapp-float,
    .back-to-top,
    .cta-section,
    .hero-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }
    
    .service-card,
    .blog-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #000000;
        --success-color: #006400;
        --warning-color: #ff8c00;
        --danger-color: #dc143c;
        --info-color: #4682b4;
        --dark-color: #000000;
        --light-color: #ffffff;
    }
    
    .glass-card,
    .glass-effect {
        background: white;
        border: 2px solid #000;
    }
    
    .service-card:hover {
        border: 3px solid var(--primary-color);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles,
    .floating-icon,
    .floating-card {
        animation: none;
    }
}

/* ===========================================
   WHY CHOOSE SECTION STYLES
   =========================================== */

.why-choose-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.why-choose-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.why-choose-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 20px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .why-choose-card {
        padding: 15px 15px;
        border-radius: 10px;
    }
    
    .why-choose-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
        font-size: 1rem;
    }
    
    .why-choose-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .why-choose-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}
