﻿/* ============================================
   ESULAR - AkÄ±llÄ± TarÄ±m Teknolojileri
   Decorative & Interactive Styles
   (Structural/layout CSS is in critical.css)
   ============================================ */

/* Reset & Base - in critical.css */

/* Typography base - in critical.css */

/* Typography - Decorative (not in critical.css) */
h1.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-500);
}

.text-orange {
    color: var(--esular-orange);
}

.text-blue {
    color: var(--esular-blue);
}

.text-gradient {
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-large {
    font-size: 1.25rem;
}

.text-small {
    font-size: 0.875rem;
}

/* Layout base - in critical.css */

/* Layout - Decorative (not in critical.css) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.section-tag {
    background: linear-gradient(135deg, rgba(242, 71, 38, 0.1) 0%, rgba(106, 189, 230, 0.1) 100%);
    color: var(--esular-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Buttons with Micro-Animations ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(242, 71, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(242, 71, 38, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--esular-blue) 0%, var(--esular-blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(106, 189, 230, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(106, 189, 230, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--esular-orange);
    border: 2px solid var(--esular-orange);
}

.btn-outline:hover {
    background: var(--esular-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242, 71, 38, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--esular-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 40px;
}

.header-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--esular-orange);
}


/* Mobile highlight */
.mobile-menu-content a.mobile-highlight {
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
    color: white !important;
    border-radius: 8px;
    padding: 12px 16px !important;
    margin-bottom: 8px;
}

.mobile-menu-content a.mobile-highlight-new {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    border-radius: 8px;
    padding: 12px 16px !important;
    border-left: 3px solid #2ecc71;
}

.mobile-menu-content a.mobile-highlight-new i {
    color: #2ecc71;
}

/* Button block */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50vh;
    right: -20vw;
    width: 80vw;
    height: 150vh;
    background: radial-gradient(circle, rgba(242, 71, 38, 0.15) 0%, transparent 60%);
    pointer-events: none;
    contain: strict;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30vh;
    left: -10vw;
    width: 60vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(106, 189, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
    contain: strict;
    will-change: transform;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
    min-height: 400px;
    contain: layout style;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(242, 71, 38, 0.2);
    border: 1px solid rgba(242, 71, 38, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--esular-orange-light);
    margin-bottom: 24px;
}

.hero-tag i {
    font-size: 1rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 8px;
}

.hero-typing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-typing-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--esular-orange);
    min-width: 300px;
}

.hero-typing-cursor {
    width: 3px;
    height: 40px;
    background: var(--esular-orange);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--esular-orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-image {
    position: relative;
}

.hero-image-main {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
    top: 20%;
    right: -20px;
    animation-delay: 0.5s;
}

.hero-float-card:nth-child(3) {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-float-card i {
    font-size: 1.5rem;
    color: var(--esular-orange);
}

.hero-float-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ===== Features Section ===== */
.features {
    background: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--esular-orange), var(--esular-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(242, 71, 38, 0.1) 0%, rgba(106, 189, 230, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--esular-orange);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 16px;
    color: var(--gray-900);
    font-size: 1.375rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--esular-orange);
    transition: var(--transition);
}

.feature-link i {
    transition: var(--transition-bounce);
}

.feature-link:hover {
    gap: 12px;
}

.feature-link:hover i {
    transform: translateX(6px);
}

/* ===== Solutions Section ===== */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Last card full width when odd count */
.solutions-grid>.solution-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.solution-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.solution-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

/* Solution card background image (lazy loading support) */
.solution-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-card:hover .solution-card-bg {
    transform: scale(1.05);
}

/* Solution Card Image - Mobile App Screenshots */
.solution-card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    height: 85%;
    width: auto;
    max-width: 60%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.solution-card:hover .solution-card-img {
    transform: translate(-50%, -48%) scale(1.05);
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1;
}

.solution-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: var(--white);
}

.solution-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.solution-card .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Solution Card Features List */
.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.solution-features li {
    color: #fff !important;
    font-size: 1rem;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    opacity: 1 !important;
}

.solution-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #fff !important;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Solution Link */
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-link i {
    transform: translateX(5px);
}

/* Solutions Grid - 4 Column Variant */
.solutions-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solutions-grid-4 .solution-card {
    min-height: 320px;
}

.solutions-grid-4 .solution-card h3 {
    font-size: 1.25rem;
}

.solutions-grid-4 .solution-card p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Solution Card Overlay - Dark gradient for text readability */
.solution-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: var(--transition);
}

/* Add dark gradient at bottom for text contrast */
.solution-card:has(.solution-card-overlay)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.solution-card:has(.solution-card-overlay) .solution-card-content {
    z-index: 3;
}

.solution-card:hover .solution-card-overlay {
    transform: scale(1.02);
}

/* Brand color variations for overlays - more subtle */
.solution-card-orange {
    background: linear-gradient(135deg, rgba(242, 71, 38, 0.6) 0%, rgba(180, 50, 25, 0.7) 100%);
}

.solution-card-blue {
    background: linear-gradient(135deg, rgba(79, 168, 212, 0.5) 0%, rgba(50, 130, 180, 0.6) 100%);
}

.solution-card-dark {
    background: linear-gradient(135deg, rgba(43, 42, 53, 0.7) 0%, rgba(30, 30, 40, 0.8) 100%);
}

.solution-card-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.5) 0%, rgba(10, 120, 110, 0.6) 100%);
}

/* Solution Card Text - Enhanced visibility */
.solution-card:has(.solution-card-overlay) h3 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-card:has(.solution-card-overlay) p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Solution Card Badge */
.solution-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive - Solutions Grid 4 */
@media (max-width: 1024px) {
    .solutions-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solutions-grid-4 {
        grid-template-columns: 1fr;
    }

    .solutions-grid-4 .solution-card {
        min-height: 280px;
    }
}

/* ===== Statistics Section ===== */
.statistics {
    background: var(--dark-bg);
    color: var(--white);
}

.statistics .section-header h2 {
    color: var(--white);
}

.statistics .section-header p {
    color: var(--gray-400);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--esular-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--gray-100);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--warning);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--esular-orange);
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info>p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(242, 71, 38, 0.1) 0%, rgba(106, 189, 230, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 1.25rem;
    color: var(--esular-orange);
}

.contact-item-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-content p {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0;
}

.contact-item-content a {
    color: var(--esular-orange);
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.contact-form h3 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--esular-orange);
    box-shadow: 0 0 0 3px rgba(242, 71, 38, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-solid);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: var(--gray-500);
    margin: 20px 0 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social 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);
}

.footer-social a:hover {
    background: var(--esular-orange);
}

.footer-social i {
    font-size: 1rem;
    color: var(--white);
}

.btn-dealer {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-column h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--esular-orange);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom-links a:hover {
    color: var(--esular-orange);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float i {
    font-size: 1.75rem;
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* ===== Mobile Menu - Enhanced ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding-top: 80px;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 24px 20px 100px;
    min-height: calc(100vh - 80px);
}

.mobile-menu-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-section:last-of-type {
    border-bottom: none;
}

.mobile-menu-section h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.mobile-menu-section a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 12px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: var(--border-radius);
    margin-bottom: 4px;
    transition: var(--transition);
}

.mobile-menu-section a:last-child {
    margin-bottom: 0;
}

.mobile-menu-section a i {
    width: 28px;
    font-size: 1.125rem;
    color: var(--esular-orange);
    transition: var(--transition);
}

.mobile-menu-section a:hover,
.mobile-menu-section a:active {
    background: var(--gray-100);
    color: var(--esular-orange);
}

.mobile-menu-section a:active {
    transform: scale(0.98);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile menu button active state */
.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
    overflow: hidden;
}

/* ===== Product Page Hero ===== */
.product-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(242, 71, 38, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.product-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-content {
    color: var(--white);
}

.product-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.product-hero-content .lead {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.product-hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
}

/* Product Hero - Mobile Responsive */
@media (max-width: 992px) {
    .product-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .product-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-hero-content {
        order: 1;
    }

    .product-hero-image {
        order: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-hero-content h1 {
        font-size: 2rem;
    }

    .product-hero-content .lead {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }

    .product-hero-content .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .product-hero {
        padding: 100px 0 48px;
    }

    .product-hero-container {
        gap: 32px;
    }

    .product-hero-content h1 {
        font-size: 1.75rem;
    }

    .product-hero-content .lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .product-hero-image {
        max-width: 280px;
    }

    .product-hero::before {
        display: none;
    }
}

/* ===== Product Features Grid ===== */
.product-features {
    padding: var(--section-padding);
    background: var(--gray-100);
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Features - Mobile Responsive */
@media (max-width: 992px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== Product Specs Table ===== */
.product-specs {
    padding: var(--section-padding);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specs-table th,
.specs-table td {
    padding: 16px 20px;
    text-align: left;
}

.specs-table th {
    font-weight: 600;
    color: var(--gray-700);
    width: 40%;
    background: var(--gray-100);
}

.specs-table td {
    color: var(--gray-800);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 16px 0;
    background: var(--gray-100);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.breadcrumb-list a {
    color: var(--gray-600);
}

.breadcrumb-list a:hover {
    color: var(--esular-orange);
}

.breadcrumb-list span {
    color: var(--gray-400);
}

.breadcrumb-list .current {
    color: var(--esular-orange);
    font-weight: 500;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-banner .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-banner--emerald {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.cta-banner--emerald p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Service/Solution Page Styles ===== */
.service-hero {
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.service-hero .lead {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: #fff;
}

/* Service Hero Color Themes */
.service-hero--green {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4d 100%);
}

.service-hero--emerald {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.service-hero--orange {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff6b4a 100%);
}

.service-hero--blue {
    background: linear-gradient(135deg, #0077be 0%, #00a8e8 100%);
}

.service-hero--purple {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.service-hero--dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

/* Stats Container (Hero iÃ§inde) */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 50px 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: rgba(255, 255, 255, 0.95);
}

.stat-box .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 8px;
    color: #fff;
}

/* Stat number highlight colors */
.service-hero--green .stat-box .stat-number {
    color: #90EE90;
}

.service-hero--emerald .stat-box .stat-number {
    color: #6ee7b7;
}

.service-hero--orange .stat-box .stat-number {
    color: #FFE4B5;
}

.service-hero--blue .stat-box .stat-number {
    color: #87CEEB;
}

.service-hero--purple .stat-box .stat-number {
    color: #DDA0DD;
}

/* Feature Sections (Sol-SaÄŸ DÃ¼zen) */
.feature-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.feature-section:last-child {
    border-bottom: none;
}

.feature-section.reversed {
    flex-direction: row-reverse;
}

.feature-section .feature-image {
    flex: 1;
    text-align: center;
}

.feature-section .feature-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-section .feature-content {
    flex: 1;
}

.feature-section .feature-content h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-section .feature-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--esular-orange);
    margin-top: 4px;
}

/* Theme-specific feature list icons */
.theme-green .feature-list li i {
    color: #2c5f2d;
}

.theme-emerald .feature-list li i {
    color: #10b981;
}

.theme-blue .feature-list li i {
    color: #0077be;
}

.theme-purple .feature-list li i {
    color: #9c27b0;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-section--light {
    background: var(--gray-100);
}

.benefits-section--green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.benefits-section--emerald {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.benefits-section--orange {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8de 100%);
}

.benefits-section--blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.benefits-section--purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

/* Benefits section header - dark text for readability */
.benefits-section .section-header h2 {
    color: var(--gray-900);
}

.benefits-section .section-header p {
    color: var(--gray-600);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--esular-orange);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--esular-orange);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Theme-specific benefit card hover & icons */
.benefits-section--green .benefit-card:hover {
    border-color: #2c5f2d;
}

.benefits-section--green .benefit-card i {
    color: #2c5f2d;
}

.benefits-section--emerald .benefit-card:hover {
    border-color: #047857;
}

.benefits-section--emerald .benefit-card i {
    color: #10b981;
}

.benefits-section--blue .benefit-card:hover {
    border-color: #0077be;
}

.benefits-section--blue .benefit-card i {
    color: #0077be;
}

.benefits-section--purple .benefit-card:hover {
    border-color: #9c27b0;
}

.benefits-section--purple .benefit-card i {
    color: #9c27b0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--esular-orange);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff8c42 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i.fa-check {
    color: #10b981;
    font-size: 0.875rem;
}

.pricing-features ul li i.fa-times {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card .btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.pricing-card .btn-outline:hover {
    border-color: var(--esular-orange);
    color: var(--esular-orange);
    background: rgba(242, 71, 38, 0.05);
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-item .caption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--gray-900);
    background: #fff;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    color: var(--esular-orange);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Application Areas Grid */
.application-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.area-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    border: 3px solid transparent;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--esular-orange);
}

.area-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.area-card .content {
    padding: 1.5rem;
}

.area-card h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Success Story */
.success-story {
    border-radius: 20px;
    padding: 3rem;
    color: #fff;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.success-story--green {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4d 100%);
}

.success-story--orange {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff6b4a 100%);
}

.success-story--blue {
    background: linear-gradient(135deg, #0077be 0%, #00a8e8 100%);
}

.success-story-image {
    flex: 0 0 400px;
}

.success-story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.success-story-content {
    flex: 1;
}

.success-story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.success-story-content p {
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fff;
}

.success-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.success-stat {
    text-align: center;
}

.success-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
}

.success-stat .label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #fff;
}

.success-story--green .success-stat .number {
    color: #90EE90;
}

.success-story--orange .success-stat .number {
    color: #FFE4B5;
}

.success-story--blue .success-stat .number {
    color: #87CEEB;
}

.success-story--purple .success-stat .number {
    color: #DDA0DD;
}

/* Products Grid (Sera, Ã¼rÃ¼n kartlarÄ± iÃ§in) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card .content {
    padding: 1.5rem;
}

.product-card h4 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.product-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-card .features {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.product-card .features li {
    padding: 0.3rem 0;
    color: var(--gray-600);
}

.product-card .features li i {
    color: var(--esular-orange);
    margin-right: 0.5rem;
}

/* Theme-specific product card feature icons */
.theme-orange .product-card .features li i {
    color: var(--esular-orange);
}

.theme-blue .product-card .features li i {
    color: #0077be;
}

.theme-purple .product-card .features li i {
    color: #9c27b0;
}

.theme-green .product-card .features li i {
    color: #2c5f2d;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card .header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card .header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .header h4 {
    margin: 0;
    color: var(--gray-900);
}

.testimonial-card .header p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-card .text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .stats {
    display: flex;
    gap: 1rem;
}

.testimonial-card .stat {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card .stat .number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--esular-orange);
}

.testimonial-card .stat .label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Theme-specific testimonial stat colors */
.theme-orange .testimonial-card .stat .number {
    color: var(--esular-orange);
}

.theme-blue .testimonial-card .stat .number {
    color: #0077be;
}

.theme-purple .testimonial-card .stat .number {
    color: #9c27b0;
}

.theme-green .testimonial-card .stat .number {
    color: #2c5f2d;
}

/* Map Section (Pivot harita bÃ¶lÃ¼mÃ¼ iÃ§in) */
.map-section {
    padding: 4rem 0;
    text-align: center;
}

.map-section--blue {
    background: linear-gradient(135deg, #e9f5ff 0%, #d4edff 100%);
}

.map-section--green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.map-section h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.map-section .lead {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-600);
}

.map-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 119, 190, 0.15);
}

.map-image img {
    width: 100%;
    display: block;
}

/* Reasons Grid (Dikey tarÄ±m neden otomasyon iÃ§in) */
.reasons-section {
    padding: 4rem 0;
}

.reasons-section--purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.reasons-section--blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.reasons-section--green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.reasons-section .section-header h2 {
    color: var(--gray-900);
}

.reasons-section .section-header p {
    color: var(--gray-600);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--esular-orange);
    margin-bottom: 1rem;
}

.reason-card h4 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Theme-specific reason card icons */
.reasons-section--purple .reason-card i {
    color: #9c27b0;
}

.reasons-section--blue .reason-card i {
    color: #0077be;
}

.reasons-section--green .reason-card i {
    color: #2c5f2d;
}

/* Stats Row (Hero iÃ§inde basit istatistikler) */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
}

/* Theme-specific stat-item number colors */
.service-hero--green .stat-item .number {
    color: #90EE90;
}

.service-hero--orange .stat-item .number {
    color: #FFE4B5;
}

.service-hero--blue .stat-item .number {
    color: #87CEEB;
}

.service-hero--purple .stat-item .number {
    color: #DDA0DD;
}

/* Benefit Items (ikon, baÅŸlÄ±k, aÃ§Ä±klama) */
.benefit-item {
    text-align: center;
}

.benefit-item .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-item .icon i {
    font-size: 2rem;
    color: #fff;
}

.benefit-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Theme-specific benefit-item icons */
.benefits-section--orange .benefit-item .icon {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff6b4a 100%);
}

.benefits-section--blue .benefit-item .icon {
    background: linear-gradient(135deg, #0077be 0%, #00a8e8 100%);
}

.benefits-section--purple .benefit-item .icon {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.benefits-section--green .benefit-item .icon {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4d 100%);
}

/* ===== Projects Page Styles ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--esular-orange);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff6b4a 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-badge.badge-blue {
    background: linear-gradient(135deg, #0077be 0%, #00a8e8 100%);
}

.project-badge.badge-green {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a9b4d 100%);
}

.project-badge.badge-purple {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.project-badge.badge-orange {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff6b4a 100%);
}

.project-content {
    padding: 1.5rem;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.project-location i {
    color: var(--esular-orange);
}

.project-content h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.project-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.project-stat {
    text-align: center;
}

.project-stat .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--esular-orange);
    line-height: 1.2;
}

.project-stat .label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-features li i {
    color: #2c5f2d;
    font-size: 0.75rem;
}

/* ===== Product Launch Page Styles ===== */
.launch-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 50%, #1a1a1a 100%);
}

.launch-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(106, 189, 230, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(242, 71, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.launch-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.launch-hero-text {
    color: #fff;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.1) 100%);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--esular-orange);
    margin-bottom: 20px;
}

.launch-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.launch-features-mini {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.launch-feature-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-feature-mini i {
    font-size: 1.25rem;
    color: #2ecc71;
}

.launch-feature-mini span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.launch-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.launch-cta .btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.launch-hero-image {
    position: relative;
}

.launch-image-wrapper {
    position: relative;
    display: inline-block;
}

.launch-image-wrapper img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.launch-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.launch-float-badge.top-right {
    top: 10%;
    right: -20px;
}

.launch-float-badge.bottom-left {
    bottom: 15%;
    left: -20px;
    animation-delay: 1s;
}

.launch-float-badge i {
    font-size: 1.25rem;
    color: #2ecc71;
}

.launch-float-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Models Section */
.launch-models {
    background: var(--gray-100);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.model-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: var(--esular-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.model-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.model-icon i {
    font-size: 2rem;
    color: #fff;
}

.model-icon.lora {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.model-icon.bluetooth {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.model-icon.wifi {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.model-icon.gsm {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #d93d1f 100%);
}

.model-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.model-range {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--esular-orange);
    margin-bottom: 12px;
}

.model-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    flex: 1;
}

.model-features li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-features li i {
    color: #2ecc71;
    font-size: 0.75rem;
}

.model-outputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.output-badge {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Feature Highlight Section */
.launch-feature-highlight {
    background: #fff;
}

.feature-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-highlight-content .lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #2ecc71;
}

.highlight-feature h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.highlight-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.feature-highlight-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.use-case-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.1);
}

.use-case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.use-case-content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.use-case-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.use-case-model {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #27ae60;
    margin-top: auto;
    align-self: flex-start;
}

/* Specs Section */
.launch-specs {
    background: var(--gray-100);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spec-group {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.spec-group h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.spec-group h4 i {
    color: var(--esular-orange);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li span:first-child {
    color: var(--gray-600);
}

.spec-list li span:last-child {
    font-weight: 600;
    color: var(--gray-900);
}

/* Launch CTA Section */
.launch-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    padding: 100px 0;
}

.launch-cta-content {
    text-align: center;
}

.launch-cta-price {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2ecc71;
}

.price-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Responsive for Launch Page ===== */
@media (max-width: 1200px) {

    .models-grid,
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .launch-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .launch-hero-text {
        order: 1;
    }

    .launch-hero-image {
        order: 0;
        margin-bottom: 40px;
    }

    .launch-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .launch-features-mini {
        justify-content: center;
    }

    .launch-cta {
        justify-content: center;
    }

    .feature-highlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .launch-hero {
        padding: 100px 0 60px;
    }

    .launch-hero h1 {
        font-size: 2rem;
    }

    .launch-tagline {
        font-size: 1.25rem;
    }

    .launch-features-mini {
        flex-direction: column;
        align-items: center;
    }

    .models-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .launch-float-badge {
        display: none;
    }

    .launch-cta-price {
        flex-direction: column;
        gap: 4px;
    }

    .price-value {
        font-size: 2rem;
    }
}

/* ===== Responsive for Service Pages ===== */
@media (max-width: 1024px) {

    .stats-container,
    .benefits-grid,
    .application-areas,
    .gallery-grid,
    .products-grid,
    .testimonials-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-story {
        flex-direction: column;
    }

    .success-story-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        gap: 1.5rem;
    }

    .stat-item .number {
        font-size: 2rem;
    }

    .feature-section,
    .feature-section.reversed {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 0;
    }

    .benefits-grid,
    .application-areas,
    .gallery-grid,
    .products-grid,
    .testimonials-grid,
    .reasons-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .success-stats {
        flex-wrap: wrap;
    }
}

/* ===== Animations (AOS-like) ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 40px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    /* Typography adjustments for mobile */
    h1 {
        font-size: clamp(2.25rem, 8vw, 3rem);
        letter-spacing: -0.02em;
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    h3 {
        font-size: clamp(1.375rem, 4vw, 1.75rem);
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 28px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Hero section mobile */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .hero-stat {
        text-align: center;
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
    }

    .hero-stat-number {
        font-size: 2rem;
    }


    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile button groups - centered and full width */
    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .product-detail-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .product-detail-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .product-cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 55px;
        height: 55px;
        animation: none;
        /* Disable pulse animation on mobile for better LCP */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-typing-text {
        min-width: auto;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .feature-card {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ===== Trusted By / Referanslar Section ===== */
.trusted-by-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 4rem 0;
    text-align: center;
}

.trusted-by-section.trusted-by-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.trusted-by-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.trusted-by-light .trusted-by-text {
    color: var(--text-secondary, #64748b);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.logo-item img {
    height: 40px;
    width: auto;
    max-width: 150px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trusted-by-light .logo-item img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.trusted-by-light .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Trusted By - Tablet */
@media (max-width: 1024px) {
    .trusted-logos {
        gap: 2rem;
    }

    .logo-item img {
        height: 35px;
        max-width: 130px;
    }
}

/* Trusted By - Mobile */
@media (max-width: 768px) {
    .trusted-by-section {
        padding: 3rem 0;
    }

    .trusted-by-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .trusted-logos {
        gap: 1.5rem 2rem;
    }

    .logo-item img {
        height: 30px;
        max-width: 110px;
    }
}

/* Trusted By - Small Mobile */
@media (max-width: 480px) {
    .trusted-by-section {
        padding: 2.5rem 0;
    }

    .trusted-logos {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .logo-item {
        flex: 0 0 calc(33.33% - 1rem);
        display: flex;
        justify-content: center;
    }

    .logo-item img {
        height: 25px;
        max-width: 90px;
    }
}

/* ===== Referans Galerisi / Carousel Section ===== */
.ref-gallery-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.ref-gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

/* Tab ButonlarÄ± */
.ref-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.ref-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ref-tab:hover {
    background: rgba(255, 255, 255, 0.25);
}

.ref-tab.active {
    background: #fff;
    color: var(--esular-orange);
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Wrapper */
.ref-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Carousel Arrows */
.ref-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.ref-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.ref-carousel-arrow i {
    font-size: 1.25rem;
    color: var(--esular-orange);
}

.ref-arrow-left {
    left: 2%;
}

.ref-arrow-right {
    right: 2%;
}

/* Carousel Track */
.ref-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    perspective: 1000px;
}

/* Slides */
.ref-slide {
    position: absolute;
    width: 380px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    pointer-events: none;
}

.ref-slide.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
}

.ref-slide.prev {
    transform: translateX(-120%) scale(0.85);
    opacity: 0.6;
    z-index: 3;
    filter: blur(2px);
}

.ref-slide.next {
    transform: translateX(120%) scale(0.85);
    opacity: 0.6;
    z-index: 3;
    filter: blur(2px);
}

.ref-slide.far-prev {
    transform: translateX(-200%) scale(0.7);
    opacity: 0;
    z-index: 1;
}

.ref-slide.far-next {
    transform: translateX(200%) scale(0.7);
    opacity: 0;
    z-index: 1;
}

/* Cards */
.ref-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.ref-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ref-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.ref-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.ref-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.ref-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.ref-card-features li i {
    color: #10b981;
    font-size: 0.85rem;
}

.ref-card-image {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-card-image img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
}

.ref-card-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ref-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Alt Logo Carousel BÃ¶lÃ¼mÃ¼ */
.ref-logos-section {
    margin-top: 4rem;
    text-align: center;
}

.ref-logos-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.logo-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.logo-carousel-track {
    overflow: hidden;
    width: 100%;
}

.logo-carousel-inner {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.logo-carousel-item {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-carousel-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-carousel-item img {
    max-height: 70px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.logo-carousel-arrow i {
    font-size: 1rem;
    color: var(--esular-orange);
}

.logo-arrow-left {
    left: 0;
}

.logo-arrow-right {
    right: 0;
}

/* Referans Galerisi - Tablet */
@media (max-width: 1024px) {
    .ref-carousel {
        height: 450px;
    }

    .ref-slide {
        width: 340px;
    }

    .ref-carousel-arrow {
        width: 45px;
        height: 45px;
    }

    .ref-arrow-left {
        left: 1%;
    }

    .ref-arrow-right {
        right: 1%;
    }
}

/* Referans Galerisi - Mobile */
@media (max-width: 768px) {
    .ref-gallery-section {
        padding: 3rem 0;
    }

    .ref-gallery-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .ref-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .ref-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .ref-carousel {
        height: 420px;
    }

    .ref-slide {
        width: 300px;
    }

    .ref-slide.prev,
    .ref-slide.next {
        transform: translateX(-110%) scale(0.8);
        opacity: 0.4;
    }

    .ref-slide.next {
        transform: translateX(110%) scale(0.8);
    }

    .ref-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .ref-arrow-left {
        left: 0.5rem;
    }

    .ref-arrow-right {
        right: 0.5rem;
    }

    .ref-card {
        padding: 1.5rem;
    }

    .ref-card-title {
        font-size: 1.25rem;
    }

    .logo-carousel-wrapper {
        padding: 0 50px;
    }

    .logo-carousel-item {
        width: 120px;
        height: 85px;
    }

    .logo-carousel-item img {
        max-height: 55px;
        max-width: 90px;
    }

    .logo-carousel-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Referans Galerisi - Small Mobile */
@media (max-width: 480px) {
    .ref-gallery-title {
        font-size: 1.5rem;
    }

    .ref-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ref-tabs::-webkit-scrollbar {
        display: none;
    }

    .ref-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ref-carousel {
        height: 400px;
    }

    .ref-slide {
        width: calc(100% - 4rem);
        max-width: 280px;
    }

    .ref-slide.prev,
    .ref-slide.next {
        opacity: 0.2;
        transform: translateX(-100%) scale(0.75);
    }

    .ref-slide.next {
        transform: translateX(100%) scale(0.75);
    }

    .ref-card-image {
        min-height: 120px;
    }

    .logo-carousel-wrapper {
        padding: 0 40px;
    }

    .logo-carousel-inner {
        gap: 1rem;
    }

    .logo-carousel-item {
        width: 100px;
        height: 70px;
        padding: 0.5rem;
    }

    .logo-carousel-item img {
        max-height: 45px;
        max-width: 75px;
    }

    .logo-carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .logo-carousel-arrow i {
        font-size: 0.85rem;
    }
}

/* ===== Testimonial Carousel Section ===== */
.testimonial-carousel-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.testimonial-carousel-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.testimonial-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-tab {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-tab:hover {
    background: rgba(255, 255, 255, 0.25);
}

.testimonial-tab.active {
    background: #fff;
    color: var(--esular-orange);
    border-color: #fff;
}

.testimonial-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-carousel-card {
    background: #fef3c7;
    border-radius: 24px;
    padding: 2.5rem 3rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1f2937;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    color: var(--esular-orange);
}

.testimonial-counter {
    font-size: 1rem;
    color: #6b7280;
}

.testimonial-slides {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info {
    text-align: center;
}

.testimonial-info strong {
    display: block;
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Testimonial - Mobile */
@media (max-width: 768px) {
    .testimonial-carousel-section {
        padding: 3rem 0;
    }

    .testimonial-carousel-title {
        font-size: 1.75rem;
    }

    .testimonial-carousel-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .testimonial-quote {
        font-size: 1.125rem;
    }

    .testimonial-nav {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 0.5rem 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-tab {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Testimonial CTA */
.testimonial-cta {
    margin-top: 3rem;
    text-align: center;
}

.testimonial-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.testimonial-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.testimonial-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.testimonial-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

.testimonial-cta-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .testimonial-cta h3 {
        font-size: 1.5rem;
    }

    .testimonial-cta p {
        font-size: 1rem;
    }

    .testimonial-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ===== AI CTA Banner Section ===== */
.ai-cta-banner {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
}

.ai-cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 90% 90%, rgba(242, 71, 38, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 10%, rgba(106, 189, 230, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.ai-cta-banner .container {
    position: relative;
    z-index: 2;
}

.ai-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.ai-cta-content {
    flex: 1;
    max-width: 600px;
}

.ai-cta-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.ai-cta-highlight {
    background: linear-gradient(90deg, #fff 0%, #fef3c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ai-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-cta-btn-primary {
    background: var(--esular-orange);
    color: #fff;
    box-shadow: 0 8px 30px rgba(242, 71, 38, 0.4);
}

.ai-cta-btn-primary:hover {
    background: var(--esular-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(242, 71, 38, 0.5);
}

.ai-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.ai-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-3px);
}

.ai-cta-btn i {
    font-size: 1.25rem;
}

/* SaÄŸ Taraf - Ä°statistik Kutusu */
.ai-cta-stats-box {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    min-width: 200px;
    text-align: center;
}

.ai-cta-stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ai-cta-stats-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.ai-cta-stat-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ai-cta-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ai-cta-stat-item:first-of-type {
    padding-top: 0;
}

.ai-cta-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.ai-cta-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

/* AI CTA Banner - Tablet */
@media (max-width: 1024px) {
    .ai-cta-banner {
        padding: 6rem 0;
    }

    .ai-cta-wrapper {
        gap: 3rem;
    }

    .ai-cta-title {
        font-size: 2.5rem;
    }

    .ai-cta-description {
        font-size: 1.05rem;
    }

    .ai-cta-stats-box {
        min-width: 180px;
        padding: 1.5rem;
    }

    .ai-cta-stat-number {
        font-size: 1.25rem;
    }
}

/* AI CTA Banner - Mobile */
@media (max-width: 768px) {
    .ai-cta-banner {
        padding: 5rem 0;
        min-height: auto;
    }

    .ai-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .ai-cta-content {
        max-width: 100%;
    }

    .ai-cta-title {
        font-size: 2rem;
    }

    .ai-cta-title br {
        display: none;
    }

    .ai-cta-description {
        font-size: 1rem;
    }

    .ai-cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .ai-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .ai-cta-stats-box {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .ai-cta-stats-icon {
        display: none;
    }

    .ai-cta-stat-item {
        flex: 1;
        min-width: 80px;
        border-bottom: none;
        padding: 0.5rem;
    }

    .ai-cta-stat-number {
        font-size: 1.25rem;
    }

    .ai-cta-stat-label {
        font-size: 0.75rem;
    }
}

/* AI CTA Banner - Small Mobile */
@media (max-width: 480px) {
    .ai-cta-banner {
        padding: 4rem 0;
    }

    .ai-cta-title {
        font-size: 1.75rem;
    }

    .ai-cta-description {
        font-size: 0.95rem;
    }

    .ai-cta-stats-box {
        max-width: 100%;
    }
}

/* Mobile Version */
.app-showcase-mobile {
    display: none;
    padding: 60px 0;
    background: var(--gray-50);
}

.mobile-showcase-header {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-showcase-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 12px;
}

.mobile-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.acc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
}

.acc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff8c42 100%);
    color: white;
    font-size: 1rem;
}

.acc-header span {
    flex: 1;
    font-weight: 600;
    color: var(--gray-900);
}

.acc-arrow {
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.acc-item.active .acc-arrow {
    transform: rotate(180deg);
    color: var(--esular-orange);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.acc-item.active .acc-body {
    max-height: 400px;
}

.acc-body img {
    width: 100%;
    max-width: 240px;
    display: block;
    margin: 0 auto 16px;
    border-radius: 16px;
}

.acc-body p {
    padding: 0 16px 16px;
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .app-showcase-section {
        display: none;
    }

    .app-showcase-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .app-showcase-mobile {
        padding: 48px 0;
    }
}

/* =====================================================
   PRODUCT PAGE COMPONENTS
   - Teal Theme (Smart Agro)
   - Product Gallery
   - Tabs Component
   - Specs Grid
   - Application Grid
   - Product Detail Cards
   - Comparison Table
===================================================== */

/* Teal Theme */
.product-hero-teal {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

/* Text colors for teal hero - high contrast white text */
.product-hero-teal .text-teal {
    color: var(--white);
    opacity: 0.85;
}

.product-hero-teal .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.product-hero-teal .hero-stat-number {
    color: var(--white);
}

.product-hero-teal .hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.product-hero-teal .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Default teal text for non-teal backgrounds */
.text-teal {
    color: #0d9488;
}

.feature-icon-teal {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.cta-banner-teal {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

/* CTA Banner teal text contrast */
.cta-banner-teal h2,
.cta-banner-teal p {
    color: var(--white);
}

/* Red Theme (Sera Ä°klimlendirme) */
.product-hero-red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.product-hero-red .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.product-hero-red .hero-stat-number {
    color: var(--white);
}

.product-hero-red .hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.product-hero-red .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-banner-red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.cta-banner-red h2,
.cta-banner-red p {
    color: var(--white);
}

/* Product Gallery */
.product-gallery {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Tabs Component */
.benefits-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #14b8a6;
    color: #14b8a6;
}

.tab-btn.active {
    background: #14b8a6;
    border-color: #14b8a6;
    color: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-content-text h3 {
    margin-bottom: 24px;
    color: var(--gray-900);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
}

.check-list li i {
    color: #14b8a6;
    margin-top: 4px;
}

.tab-content-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.specs-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.specs-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #14b8a6;
    font-size: 1.1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    color: var(--gray-500);
}

.specs-table td:last-child {
    font-weight: 600;
    text-align: right;
}

/* Application Grid */
.application-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.application-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-item:hover {
    background: #14b8a6;
    color: var(--white);
    transform: translateY(-4px);
}

.application-item i {
    font-size: 28px;
    color: #14b8a6;
}

.application-item:hover i {
    color: var(--white);
}

.application-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Product Detail Cards */
.product-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.product-detail-header {
    padding: 32px;
    color: var(--white);
    position: relative;
}

.product-detail-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-header h3 {
    color: var(--white);
}

.product-detail-header h3 i {
    color: var(--white);
}

.product-detail-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.product-detail-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

/* Esular Brand Color Theme for Product Detail Cards - Darker for better contrast */
.product-detail-teal {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
}

.product-detail-orange {
    background: linear-gradient(135deg, #c2410c 0%, var(--esular-orange-dark) 100%);
}

.product-detail-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--gray-900) 100%);
}

.product-detail-blue {
    background: linear-gradient(135deg, #1e5f8a 0%, #2980b9 100%);
}

/* Legacy colors (kept for compatibility) */
.product-detail-green {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.product-detail-purple {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
}

.product-detail-cyan {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
}

.product-detail-body {
    padding: 32px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.product-detail-info h4,
.product-detail-specs h4 {
    color: var(--gray-900);
    font-size: 1.1rem;
    margin-bottom: 16px;
    margin-top: 24px;
}

.product-detail-info h4:first-child,
.product-detail-specs h4:first-child {
    margin-top: 0;
}

.product-detail-info p {
    color: var(--gray-600);
    line-height: 1.7;
}

.product-versions {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.product-versions h5 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.version-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

.version-badge i {
    color: #14b8a6;
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.product-feature-list li:last-child {
    border-bottom: none;
}

.product-feature-list li i {
    color: #14b8a6;
    margin-top: 3px;
}

.mini-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.mini-specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.mini-specs-table td {
    padding: 12px 0;
}

.mini-specs-table td:first-child {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.mini-specs-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--gray-900);
}

/* Product CTA Box - Fiyat Teklifi */
.product-cta-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.product-cta-box .btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.usage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.usage-tags span {
    padding: 6px 14px;
    background: #f0fdfa;
    color: #0d9488;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-detail-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--gray-50);
}

.comparison-table th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid var(--gray-200);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 24px;
}

.model-col {
    min-width: 100px;
}

.model-col i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.model-col span {
    font-size: 0.95rem;
}

/* Esular Brand Theme Colors - Darker for visibility */
.model-teal i {
    color: #0f766e;
}

.model-orange i {
    color: var(--esular-orange-dark);
}

.model-dark i {
    color: var(--gray-900);
}

.model-blue i {
    color: #1e5f8a;
}

/* Legacy colors (kept for compatibility) */
.model-green i {
    color: #047857;
}

.model-purple i {
    color: #6d28d9;
}

.model-cyan i {
    color: #0e7490;
}

.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 24px;
    font-weight: 500;
    color: var(--gray-900);
}

.comparison-table .text-green {
    color: #10b981;
}

.comparison-table .text-gray {
    color: var(--gray-300);
}

.comparison-table .cta-row td {
    padding: 24px 16px;
    border-bottom: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Product Page Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tab-content-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .application-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-nav {
        justify-content: center;
    }

    .application-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail-header {
        padding: 24px;
    }

    .product-detail-body {
        padding: 24px;
    }

    .product-detail-cta {
        flex-direction: column;
    }

    .product-detail-cta .btn {
        width: 100%;
        text-align: center;
    }

    .version-badges {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .model-col i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Hava KarÄ±ÅŸtÄ±rÄ±cÄ±lÄ± Tank SeÃ§enekleri
   ========================================================================== */

.tank-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tank-option-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tank-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tank-option-card.featured {
    border-color: var(--teal);
    position: relative;
}

.tank-option-card.featured::before {
    content: 'PopÃ¼ler';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tank-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--teal-light) 0%, rgba(0, 150, 136, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tank-icon i {
    font-size: 32px;
    color: var(--teal);
}

.tank-option-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.tank-option-card>p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tank-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tank-features li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tank-features li i {
    color: var(--teal);
    font-size: 0.85rem;
}

/* Tank Info Box */
.tank-info-box {
    background: linear-gradient(135deg, var(--teal) 0%, #00897B 100%);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: white;
}

.info-box-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box-content h4 i {
    font-size: 1.75rem;
}

.info-box-content p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1rem;
}

.blower-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blower-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.blower-badge i {
    font-size: 1rem;
}

.info-box-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
}

.info-feature i {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.info-feature span {
    font-size: 1rem;
}

.info-feature strong {
    display: block;
    font-size: 1.1rem;
}

/* Responsive Tank Options */
@media (max-width: 992px) {
    .tank-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tank-info-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tank-options-grid {
        grid-template-columns: 1fr;
    }

    .blower-options {
        justify-content: center;
    }

    .tank-info-box {
        padding: 24px;
    }

    .info-box-content h4 {
        font-size: 1.25rem;
        justify-content: center;
    }

    .info-box-content p {
        text-align: center;
    }
}

/* Tank Blower Recommendation */
.tank-blower-recommendation {
    margin-top: 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--teal-light) 0%, rgba(0, 150, 136, 0.1) 100%);
    border-radius: 8px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tank-blower-recommendation i {
    font-size: 1rem;
}

/* Section Subheader */
.section-subheader {
    text-align: center;
    margin: 50px 0 30px;
}

.section-subheader h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-subheader h3 i {
    color: var(--teal);
}

.section-subheader p {
    color: var(--gray);
    font-size: 1rem;
}

/* Blower Cards Grid - Centered */
.blower-cards-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blower-card {
    background: white;
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 220px;
}

.blower-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blower-card.featured {
    border-color: var(--teal);
    position: relative;
}

.blower-card.featured::before {
    content: 'Ã–nerilen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.blower-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--teal) 0%, #00897B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blower-card-icon i {
    font-size: 24px;
    color: white;
}

.blower-card-capacity {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.blower-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 8px;
}

.blower-card-desc {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Platform Info Bar */
.platform-info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--teal) 0%, #00897B 100%);
    border-radius: 16px;
    padding: 24px 40px;
    color: white;
}

.platform-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-info-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.platform-info-item span {
    font-size: 0.95rem;
}

.platform-info-item strong {
    font-weight: 700;
}

/* Responsive Blower Cards */
@media (max-width: 992px) {
    .blower-cards-grid {
        gap: 20px;
    }

    .blower-card {
        padding: 24px 32px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .blower-cards-grid {
        flex-direction: column;
        align-items: center;
    }

    .blower-card {
        width: 100%;
        max-width: 300px;
    }

    .platform-info-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px;
        text-align: center;
    }

    .section-subheader h3 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Toprak Nem SensÃ¶rÃ¼ SayfasÄ± Stilleri
   ========================================================================== */

/* Product Gallery */
.product-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main-image {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-thumb {
    background: white;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery-thumb:hover {
    border-color: var(--orange);
}

.gallery-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.gallery-thumb img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/* Sensor Models Grid */
.sensor-models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sensor-model-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sensor-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.sensor-model-card.featured {
    border: 2px solid var(--orange);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--orange);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.sensor-model-image {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sensor-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sensor-model-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sensor-model-content .btn {
    margin-top: auto;
}

.sensor-model-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.sensor-model-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.sensor-model-content>p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.sensor-model-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sensor-model-specs li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.sensor-model-specs li:last-child {
    border-bottom: none;
}

.sensor-model-specs li i {
    color: var(--orange);
    width: 20px;
}

/* App Gallery Grid */
.app-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.app-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.app-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-gallery-caption {
    padding: 12px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    background: #f9f9f9;
}

/* Field Gallery Grid */
.field-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.field-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}

.field-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.field-gallery-item:hover img {
    transform: scale(1.1);
}

.field-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
}

.field-gallery-item:hover .field-gallery-overlay {
    opacity: 1;
}

.field-gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.field-gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Specs Comparison Grid */
.specs-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.specs-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.specs-card.featured {
    border: 2px solid var(--orange);
}

.specs-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--orange);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.specs-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-card h4 i {
    color: var(--orange);
}

.specs-download-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
    border-radius: 16px;
    padding: 24px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-info i {
    font-size: 2rem;
    color: var(--orange);
}

.download-info span {
    font-size: 1rem;
    color: var(--dark);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question i {
    color: var(--orange);
    font-size: 1.25rem;
    margin-top: 2px;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.faq-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 36px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-image {
    height: 180px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* CTA Banner Orange */
.cta-banner.cta-banner-orange {
    background: linear-gradient(135deg, var(--orange) 0%, #e65100 100%);
}

.cta-banner.cta-banner-orange h2,
.cta-banner.cta-banner-orange p {
    color: #ffffff !important;
}

.cta-banner.cta-banner-orange .btn-group {
    color: white;
}

/* Feature Icon Orange */
.feature-icon-orange {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7043 100%);
}

/* Product Hero Orange */
.product-hero-orange {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
}

.product-hero-orange .hero-tag {
    background: var(--orange);
    color: #fff;
}

/* Text colors for orange hero - high contrast dark text on light background */
.product-hero-orange h1 {
    color: #1a1a2e;
}

.product-hero-orange .text-orange {
    color: #e65100;
}

.product-hero-orange .lead {
    color: #4a4a5a !important;
}

.product-hero-orange .lead strong {
    color: #e65100;
}

.product-hero-orange .hero-stat-number {
    color: #e65100;
}

.product-hero-orange .hero-stat-label {
    color: #5a5a6a;
}

.product-hero-orange .btn-outline {
    border-color: #e65100;
    color: #e65100;
}

.product-hero-orange .btn-outline:hover {
    background: #e65100;
    color: #fff;
}

/* Responsive Toprak Nem SensÃ¶rÃ¼ */
@media (max-width: 992px) {
    .product-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(6, 1fr);
    }

    .sensor-models-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .app-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .field-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-comparison-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-thumb img {
        height: 50px;
    }

    .app-gallery-grid {
        grid-template-columns: 1fr;
    }

    .field-gallery-grid {
        grid-template-columns: 1fr;
    }

    .field-gallery-item {
        height: 200px;
    }

    .specs-download-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .download-info {
        flex-direction: column;
    }
}

/* ============================================
   FERTIGASYON MEGA SECTION
   ============================================ */

/* Section Base */
.fertigasyon-mega-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

/* Hero Stats Banner */
.fertigasyon-hero-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
}

.fertigasyon-hero-stat {
    text-align: center;
    color: white;
}

.fertigasyon-hero-stat .stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.fertigasyon-hero-stat .stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fertigasyon-hero-stat .stat-label {
    font-size: 14px;
    opacity: 1;
    color: #fff;
}

/* Main Cards Grid */
.fertigasyon-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Main Card */
.fertigasyon-main-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.fertigasyon-main-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fertigasyon-main-card.featured {
    border: 2px solid var(--esular-orange);
}

.fertigasyon-main-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--esular-orange), var(--esular-blue));
}

/* Card Badge */
.fertigasyon-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-dark));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Card Header */
.fertigasyon-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.fertigasyon-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.fertigasyon-card-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

/* Card Image */
.fertigasyon-card-image {
    height: 220px;
    margin: 20px 24px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fertigasyon-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Software Visual */
.fertigasyon-card-image.software-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-mockup {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.software-mockup i {
    font-size: 64px;
    margin-bottom: 12px;
    opacity: 0.95;
    display: block;
}

.mockup-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.mockup-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.mockup-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* AI Gradient Image */
.fertigasyon-card-image.ai-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.ai-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-visual i {
    font-size: 64px;
    color: var(--esular-orange);
    z-index: 2;
}

.ai-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 71, 38, 0.3) 0%, transparent 70%);
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Card Content */
.fertigasyon-card-content {
    padding: 0 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fertigasyon-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.fertigasyon-card-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features Grid */
.fertigasyon-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.fertigasyon-features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
}

.fertigasyon-features-grid .feature-item i {
    color: var(--success);
    font-size: 14px;
}

/* Model Tags */
.fertigasyon-models {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 20px;
}

.models-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.model-tag {
    background: white;
    border: 1px solid var(--gray-300);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.model-tag:hover {
    background: var(--esular-orange);
    border-color: var(--esular-orange);
    color: white;
}

/* Software Platforms */
.software-platforms {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 20px;
}

.platforms-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.platform-icons {
    display: flex;
    gap: 12px;
}

.platform-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray-700);
    transition: var(--transition);
    cursor: pointer;
}

.platform-icon:hover {
    background: var(--esular-orange);
    color: white;
}

/* AI Capabilities */
.ai-capabilities {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 20px;
}

.ai-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-tag {
    background: rgba(242, 71, 38, 0.2);
    border: 1px solid rgba(242, 71, 38, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--esular-orange-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-tag i {
    font-size: 11px;
}

/* Card Button */
.fertigasyon-card-content>.btn {
    margin-top: auto;
}

/* Bottom CTA */
.fertigasyon-bottom-cta {
    background: linear-gradient(135deg, var(--gray-900) 0%, #2b2a35 100%);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.fertigasyon-bottom-cta .cta-content h3 {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fertigasyon-bottom-cta .cta-content p {
    color: var(--gray-400);
    font-size: 16px;
}

.fertigasyon-bottom-cta .cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--gray-900);
    border-color: white;
}

/* Responsive Fertigasyon */
@media (max-width: 1200px) {
    .fertigasyon-sections-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
}

@media (max-width: 992px) {
    .fertigasyon-hero-banner {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .fertigasyon-mega-section {
        padding: 60px 0;
    }

    .fertigasyon-hero-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px;
    }

    .fertigasyon-hero-stat .stat-value {
        font-size: 28px;
    }

    .fertigasyon-bottom-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .fertigasyon-bottom-cta .cta-content h3 {
        font-size: 22px;
    }

    .fertigasyon-bottom-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .fertigasyon-bottom-cta .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fertigasyon-hero-banner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .fertigasyon-hero-stat .stat-value {
        font-size: 24px;
    }

    .fertigasyon-hero-stat .stat-label {
        font-size: 12px;
    }

    .model-tags {
        justify-content: center;
    }

    .platform-icons {
        justify-content: center;
    }

    .ai-tags {
        justify-content: center;
    }
}

/* ============================================
   Ã–ZEL Ã‡Ã–ZÃœMLER PAGE
   ============================================ */

/* Hero Section */
.ozel-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #fff5f2 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.ozel-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ozel-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ozel-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-feature i {
    color: var(--success);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
}

/* Hero Visual */
.ozel-hero-visual {
    position: relative;
    height: 450px;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card-1 {
    width: 280px;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 3;
}

.visual-card-2 {
    width: 200px;
    height: 220px;
    top: 60px;
    right: 20px;
    z-index: 2;
}

.visual-card-3 {
    width: 240px;
    height: 160px;
    bottom: 0;
    left: 100px;
    z-index: 1;
}

/* Stats Section */
.ozel-stats {
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-dark));
    padding: 50px 0;
}

.ozel-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.ozel-stats .stat-item {
    color: white;
}

.ozel-stats .stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 4px;
}

.ozel-stats .stat-label {
    font-size: 15px;
    opacity: 0.9;
}

/* Solution Types Grid */
.solution-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.solution-type-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.solution-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.solution-type-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.solution-type-icon.icon-green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.solution-type-icon.icon-purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.solution-type-icon.icon-blue {
    background: linear-gradient(135deg, var(--esular-blue), var(--esular-blue-dark));
}

.solution-type-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.solution-type-content>p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.solution-features {
    list-style: none;
    margin-bottom: 20px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.solution-features li i {
    color: var(--success);
    font-size: 12px;
}

.solution-examples {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 12px;
}

.example-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.example-tag {
    display: inline-block;
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--gray-700);
    margin-right: 6px;
    margin-bottom: 4px;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--esular-orange), var(--gray-200));
}

.step-number {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-dark));
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--esular-orange);
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-content>p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-700);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
}

.step-features span i {
    color: var(--success);
    font-size: 11px;
}

/* Portfolio Grid */
.section-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-header-light h2 {
    color: white;
}

.section-header-light p {
    color: var(--gray-400);
}

.section-tag-light {
    background: rgba(242, 71, 38, 0.2);
    color: var(--esular-orange-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.portfolio-tag {
    background: var(--esular-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-content>p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 12px;
}

.portfolio-stats {
    display: flex;
    gap: 16px;
}

.portfolio-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-300);
}

.portfolio-stats span i {
    color: var(--esular-orange);
}

.portfolio-cta {
    text-align: center;
}

/* Tech Features Grid */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.tech-feature {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tech-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.tech-feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.tech-feature p {
    font-size: 12px;
    color: var(--gray-500);
}

/* CTA Section */
.ozel-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--esular-orange), var(--esular-orange-dark));
}

.ozel-cta-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.ozel-cta-card .cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.ozel-cta-card .cta-content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    gap: 24px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
}

.cta-feature i {
    color: var(--success);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-actions .btn {
    white-space: nowrap;
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

/* Responsive Ã–zel Ã‡Ã¶zÃ¼mler */
@media (max-width: 1200px) {
    .tech-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ozel-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ozel-hero h1 {
        font-size: 36px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .ozel-hero-visual {
        display: none;
    }

    .ozel-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-types-grid {
        grid-template-columns: 1fr;
    }

    .solution-type-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .ozel-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-actions {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .ozel-hero {
        padding: 60px 0;
    }

    .ozel-hero h1 {
        font-size: 28px;
    }

    .ozel-stats .stats-grid {
        gap: 24px;
    }

    .ozel-stats .stat-number {
        font-size: 32px;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        width: 50px;
        min-width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   GÃœBRELEME OTOMASYON PAGE
   ============================================ */

/* Orange Theme for Service Hero */
.service-hero--orange {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

.service-hero--orange h1 {
    color: var(--gray-900);
}

.reasons-section--orange {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #d93d1f 100%);
}

.reasons-section--orange .section-header h2,
.reasons-section--orange .section-header p,
.reasons-section--orange .section-tag {
    color: white;
}

.reasons-section--orange .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.benefits-section--orange {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

/* Product Models Grid */
.product-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-model-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.product-model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-model-card.featured {
    border: 2px solid var(--esular-orange);
}

.product-model-card .model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--esular-orange);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-model-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 16px 0 8px;
}

.product-model-card>p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.product-model-card ul {
    text-align: left;
    margin-bottom: 20px;
}

.product-model-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.product-model-card ul li i {
    color: var(--success);
    font-size: 12px;
}

/* Software Preview */
.software-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.software-mockup-large {
    text-align: center;
    color: white;
}

.software-mockup-large i {
    font-size: 80px;
    margin-bottom: 16px;
    display: block;
}

.software-mockup-large span {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

/* Mobile Mockup */
.mobile-mockup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: white;
}

.mobile-mockup i {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--esular-orange);
}

.app-badges {
    display: flex;
    gap: 16px;
}

.app-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.ai-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.ai-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--esular-orange) 0%, #ff7043 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.ai-feature-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ai-feature-card p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
}

/* Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.integration-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.integration-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.integration-item i {
    font-size: 36px;
    color: var(--esular-orange);
    margin-bottom: 12px;
    display: block;
}

.integration-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Responsive GÃ¼breleme Page */
@media (max-width: 1200px) {
    .product-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-models-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 48px auto 0;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-preview,
    .mobile-mockup {
        min-height: 200px;
    }

    .software-mockup-large i,
    .mobile-mockup i {
        font-size: 50px;
    }
}

/* ============================================
   CORPORATE THEME - Professional Clean Look
   ============================================ */

/* Corporate Hero */
.service-hero--corporate {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    text-align: center;
}

.service-hero--corporate h1 {
    color: var(--gray-900);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero--corporate .lead {
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-hero--corporate .stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-hero--corporate .stat-item {
    text-align: center;
}

.service-hero--corporate .stat-item .number {
    font-size: 42px;
    font-weight: 800;
    color: var(--esular-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.service-hero--corporate .stat-item .label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Corporate Reasons Section */
.reasons-section--corporate {
    background: var(--gray-900);
    padding: 80px 0;
}

.reasons-section--corporate .section-header h2 {
    color: white;
}

.reasons-section--corporate .section-header p {
    color: var(--gray-400);
}

.reasons-section--corporate .section-tag {
    background: rgba(242, 71, 38, 0.2);
    color: var(--esular-orange);
}

.reasons-section--corporate .reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reasons-section--corporate .reason-card i {
    color: var(--esular-orange);
}

.reasons-section--corporate .reason-card h4 {
    color: white;
}

.reasons-section--corporate .reason-card p {
    color: var(--gray-400);
}

/* Corporate Benefits Section */
.benefits-section--corporate {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.benefits-section--corporate .benefit-card {
    background: white;
    border: 1px solid var(--gray-200);
}

.benefits-section--corporate .benefit-card i {
    color: var(--esular-orange);
}

.benefits-section--corporate .benefit-card h4 {
    color: var(--gray-900);
}

.benefits-section--corporate .benefit-card p {
    color: var(--gray-600);
}

/* Responsive Corporate */
@media (max-width: 768px) {
    .service-hero--corporate {
        padding: 60px 0;
    }

    .service-hero--corporate h1 {
        font-size: 32px;
    }

    .service-hero--corporate .stats-row {
        gap: 30px;
    }

    .service-hero--corporate .stat-item .number {
        font-size: 32px;
    }
}

/* ============================================
   RTL (Right-to-Left) Support for Arabic
   ============================================ */

/* RTL Mode - Global Direction */
.rtl-mode,
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* RTL - Typography */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p {
    text-align: right;
}

/* RTL - Header */
html[dir="rtl"] .header-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-logo {
    margin-right: 0;
    margin-left: 2rem;
}

/* RTL - Navigation Links */
html[dir="rtl"] .header-nav a::after {
    left: auto;
    right: 0;
}

/* RTL - Mega Menu */
html[dir="rtl"] .nav-mega-menu {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(10px);
}

html[dir="rtl"] .nav-mega-dropdown:hover .nav-mega-menu {
    transform: translateX(50%) translateY(0);
}

html[dir="rtl"] .nav-mega-menu::before {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .mega-menu-item {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .mega-item-content {
    text-align: right;
}

html[dir="rtl"] .mega-menu-grid {
    direction: rtl;
}

html[dir="rtl"] .mega-menu-header {
    text-align: right;
}

html[dir="rtl"] .mega-menu-header h3,
html[dir="rtl"] .mega-menu-header p {
    text-align: right;
}

/* RTL - Nav Trigger */
html[dir="rtl"] .nav-mega-trigger {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-mega-trigger i {
    margin-left: 0;
    margin-right: 6px;
}

/* RTL - Chevron Icons */
html[dir="rtl"] .fa-chevron-down,
html[dir="rtl"] .fa-chevron-right {
    margin-left: 0;
    margin-right: 8px;
}

html[dir="rtl"] .fa-chevron-right::before {
    content: "\f053";
    /* chevron-left */
}

/* RTL - Buttons */
html[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn:hover i {
    transform: translateX(-3px);
}

/* RTL - Hero Section */
html[dir="rtl"] .hero-container {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-stats {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-stat {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* RTL - Feature Cards */
html[dir="rtl"] .feature-card {
    text-align: right;
}

html[dir="rtl"] .feature-link {
    flex-direction: row-reverse;
}

html[dir="rtl"] .feature-link:hover i {
    transform: translateX(-6px);
}

/* RTL - Footer */
html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .footer-links {
    text-align: right;
}

html[dir="rtl"] .footer-links a {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .footer-links i {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .footer-social {
    justify-content: flex-start;
}

html[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-bottom-links {
    flex-direction: row-reverse;
}

/* RTL - Mobile Menu */
html[dir="rtl"] .mobile-menu-content {
    text-align: right;
}

html[dir="rtl"] .mobile-menu-section a {
    flex-direction: row-reverse;
}

html[dir="rtl"] .mobile-menu-section a i {
    margin-right: 0;
    margin-left: 12px;
}

/* RTL - Forms */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
}

html[dir="rtl"] .input-group {
    flex-direction: row-reverse;
}

/* RTL - Newsletter Form */
html[dir="rtl"] .newsletter-form {
    flex-direction: row-reverse;
}

html[dir="rtl"] .newsletter-text {
    text-align: right;
}

/* RTL - Cards & Lists */
html[dir="rtl"] .card,
html[dir="rtl"] .solution-card,
html[dir="rtl"] .product-card {
    text-align: right;
}

html[dir="rtl"] ul,
html[dir="rtl"] ol {
    padding-left: 0;
    padding-right: 1.5rem;
}

/* RTL - WhatsApp Float Button */
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

/* RTL - Toast Container */
html[dir="rtl"] #globalToastContainer {
    right: auto;
    left: 20px;
}

/* RTL - Blog */
html[dir="rtl"] .blog-card {
    text-align: right;
}

html[dir="rtl"] .blog-meta {
    flex-direction: row-reverse;
}

/* RTL - Language Dropdown */
html[dir="rtl"] .language-dropdown {
    direction: ltr;
    /* Keep LTR for dropdown */
}

html[dir="rtl"] .language-menu {
    left: auto;
    right: 0;
}

/* RTL - Section Headers */
html[dir="rtl"] .section-header {
    text-align: center;
    /* Keep centered for section headers */
}

/* RTL - Icon Positioning */
html[dir="rtl"] .fa-arrow-right::before {
    content: "\f060";
    /* arrow-left */
}

html[dir="rtl"] [class*="fa-arrow"]+span,
html[dir="rtl"] span+[class*="fa-arrow"] {
    margin-left: 0;
    margin-right: 8px;
}

/* RTL - Breadcrumb */
html[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

/* RTL - Mega Preview */
html[dir="rtl"] .mega-menu-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .mega-menu-preview {
    border-left: none;
    border-right: 1px solid var(--gray-200);
}

html[dir="rtl"] .mega-preview-card {
    text-align: right;
}

/* RTL - Header Container */
html[dir="rtl"] .header-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-nav {
    flex-direction: row-reverse;
}

/* RTL - Button Alignment Fixes */
html[dir="rtl"] .btn i {
    order: -1;
}

html[dir="rtl"] .btn-outline i,
html[dir="rtl"] .btn-primary i,
html[dir="rtl"] .btn-secondary i {
    margin-left: 0;
    margin-right: 8px;
}

/* RTL - CTA Buttons */
html[dir="rtl"] .cta-buttons {
    flex-direction: row-reverse;
}

/* RTL - Hero Float Cards */
html[dir="rtl"] .hero-float-card {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-float-card:nth-child(2) {
    right: auto;
    left: -20px;
}

html[dir="rtl"] .hero-float-card:nth-child(3) {
    left: auto;
    right: -20px;
}

/* RTL - Stats */
html[dir="rtl"] .stats-grid {
    direction: rtl;
}

/* RTL - Service Cards */
html[dir="rtl"] .service-card {
    text-align: right;
}

html[dir="rtl"] .service-card-icon {
    margin-left: auto;
    margin-right: 0;
}

/* RTL - Price Cards */
html[dir="rtl"] .price-card {
    text-align: right;
}

/* RTL - Timeline */
html[dir="rtl"] .timeline-item {
    flex-direction: row-reverse;
}

/* RTL - Testimonials */
html[dir="rtl"] .testimonial-card {
    text-align: right;
}

html[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

/* RTL - FAQ */
html[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .faq-answer {
    text-align: right;
}

/* RTL - Contact Form */
html[dir="rtl"] .contact-info {
    text-align: right;
}

html[dir="rtl"] .contact-info-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-info-item i {
    margin-right: 0;
    margin-left: 12px;
}

/* RTL - Badge */
html[dir="rtl"] .badge-new {
    margin-left: 0;
    margin-right: 8px;
}

/* ============================================
   Custom Lightbox Styles (Vanilla JS)
   ============================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: lightboxFadeIn 0.3s ease;
    object-fit: contain;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 80vh;
    }
}

/* ===== Language Selector ===== */
.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-height: 40px;
}

.header.scrolled .language-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.language-btn:hover {
    background: rgba(242, 71, 38, 0.1);
    border-color: #f24726;
}

.language-btn .current-flag {
    font-size: 1.2rem;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.language-btn .current-lang {
    font-weight: 600;
    min-width: 24px;
}

.language-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-dropdown.open .language-btn i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease;
}

.language-option:hover {
    background: rgba(242, 71, 38, 0.1);
}

.language-option.active {
    background: rgba(242, 71, 38, 0.15);
    font-weight: 600;
}

.language-option .flag,
.language-option .fi {
    font-size: 1.3rem;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--esular-orange) 0%, #e53e3e 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-text h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    white-space: nowrap;
    background: white;
    color: var(--esular-orange);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Toast Animation */
@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Language Selector Mobile */
@media (max-width: 768px) {
    .language-dropdown {
        order: -1;
    }

    .language-btn .current-lang {
        display: none;
    }

    .language-menu {
        right: auto;
        left: 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

/* ============================================
   Mobile Responsive Fixes
   ============================================ */

/* Fix: Content hiding under fixed navbar on mobile */
@media (max-width: 992px) {

    /* Add padding to main content to prevent overlap with fixed header */
    main {
        padding-top: 70px;
    }

    /* Hero sections already have their own padding, adjust for navbar */
    .hero,
    .service-hero,
    .service-hero--green,
    .service-hero--corporate,
    .ozel-hero {
        padding-top: 100px;
    }

    /* Section headers on solution pages */
    .section:first-of-type {
        padding-top: 40px;
    }

    /* Button group centering on mobile */
    .btn-group,
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .btn-group .btn,
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Stats grid responsive */
    .stats-grid,
    .stats-container,
    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Smaller mobile devices */
@media (max-width: 576px) {
    main {
        padding-top: 65px;
    }

    .hero,
    .service-hero,
    .service-hero--green,
    .service-hero--corporate,
    .ozel-hero {
        padding-top: 90px;
    }

    /* Hero responsive - single column on mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 24px;
    }

    .hero-image-main {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-float-card {
        display: none;
    }

    .hero-typing-text {
        min-width: auto;
        font-size: 1.25rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat {
        text-align: center;
    }

    /* Ensure centered text alignment for hero content */
    .hero-content,
    .service-hero .container {
        text-align: center;
    }

    /* Center buttons */
    .btn-group,
    .hero-buttons {
        align-items: center;
    }

    .btn-group .btn,
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   RTL Mobile Responsive Styles
   ============================================ */

/* RTL Mobile Menu Button Position */
@media (max-width: 992px) {
    html[dir="rtl"] .mobile-menu-btn {
        order: -1;
    }

    html[dir="rtl"] .header-container {
        flex-direction: row;
    }

    html[dir="rtl"] .header-actions {
        flex-direction: row;
    }

    /* RTL Mobile Menu Content */
    html[dir="rtl"] .mobile-menu {
        left: auto;
        right: 0;
    }

    html[dir="rtl"] .mobile-menu-content {
        text-align: right;
    }

    html[dir="rtl"] .mobile-menu-section h4 {
        text-align: right;
    }

    html[dir="rtl"] .mobile-menu-section a {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    html[dir="rtl"] .mobile-menu-section a i {
        margin-right: 0;
        margin-left: 12px;
    }

    /* RTL Mobile Hero */
    html[dir="rtl"] .hero-content {
        text-align: right;
    }

    html[dir="rtl"] .hero-buttons {
        align-items: flex-end;
    }

    html[dir="rtl"] .hero-stats {
        justify-content: flex-end;
    }

    /* RTL Mobile Footer */
    html[dir="rtl"] .footer-column {
        text-align: right;
    }

    html[dir="rtl"] .footer-brand {
        text-align: right;
    }

    html[dir="rtl"] .footer-social {
        justify-content: flex-start;
    }

    /* RTL Newsletter Mobile */
    html[dir="rtl"] .newsletter-content {
        text-align: right;
    }

    html[dir="rtl"] .newsletter-form {
        flex-direction: column;
    }
}

/* RTL Smaller Mobile Devices */
@media (max-width: 576px) {

    html[dir="rtl"] .hero-content,
    html[dir="rtl"] .service-hero .container {
        text-align: right;
    }

    html[dir="rtl"] .hero-buttons,
    html[dir="rtl"] .btn-group {
        align-items: flex-end;
    }

    /* RTL Mobile Cards */
    html[dir="rtl"] .feature-card,
    html[dir="rtl"] .solution-card,
    html[dir="rtl"] .product-card {
        text-align: right;
    }

    /* RTL Mobile Stats */
    html[dir="rtl"] .hero-stat {
        text-align: right;
    }

    /* RTL Mobile Badges */
    html[dir="rtl"] .badge-new {
        margin-left: 0;
        margin-right: 6px;
    }

    /* RTL Mobile Language Menu */
    html[dir="rtl"] .language-menu {
        right: auto;
        left: 0;
    }
}

/* RTL WhatsApp Float - All Screen Sizes */
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

@media (max-width: 768px) {
    html[dir="rtl"] .whatsapp-float {
        left: 20px;
    }
}

/* RTL Cookie Consent */
html[dir="rtl"] .cookie-consent {
    text-align: right;
}

html[dir="rtl"] .cookie-consent-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .cookie-consent-buttons {
    flex-direction: row-reverse;
}

/* ============================================
   Elementor Compatibility Styles
   (For WordPress-imported blog content)
   ============================================ */

/* Elementor Button Base */
.elementor-button-wrapper {
    display: inline-block;
}

.elementor-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

/* Default button style - WhatsApp green */
.elementor-widget-button .elementor-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.elementor-widget-button .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Elementor Button Content */
.elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.elementor-button-text {
    font-weight: 600;
}

/* Elementor Button Icon - Fix SVG size */
.elementor-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elementor-button-icon svg,
.elementor-button-icon .e-font-icon-svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

/* Elementor Widget Container Spacing */
.elementor-widget-container {
    margin-bottom: 20px;
}

.elementor-widget:last-child .elementor-widget-container {
    margin-bottom: 0;
}

/* Elementor Section/Container */
.elementor-element {
    margin-bottom: 20px;
}

.elementor-element:last-child {
    margin-bottom: 0;
}

/* Elementor Text Widget */
.elementor-widget-text-editor {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Elementor Heading Widget */
.elementor-widget-heading .elementor-heading-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Elementor Image Widget */
.elementor-widget-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.elementor-widget-image .elementor-widget-container {
    text-align: center;
}

/* Elementor Divider */
.elementor-widget-divider .elementor-divider {
    border-top: 1px solid var(--gray-200);
    margin: 30px 0;
}

/* Elementor Spacer */
.elementor-widget-spacer {
    height: 30px;
}

/* Elementor Column Alignment */
.elementor-align-center {
    text-align: center;
}

.elementor-align-center .elementor-button-wrapper {
    justify-content: center;
}

.elementor-align-left {
    text-align: left;
}

.elementor-align-right {
    text-align: right;
}

/* Elementor Container */
.e-con,
.e-con-inner {
    display: block;
}

.e-con-boxed .e-con-inner {
    max-width: 100%;
    margin: 0 auto;
}

/* Elementor List Widget */
.elementor-widget-icon-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elementor-widget-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.elementor-widget-icon-list .elementor-icon-list-icon {
    color: var(--esular-orange);
    flex-shrink: 0;
}

.elementor-widget-icon-list .elementor-icon-list-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Elementor Video Widget */
.elementor-widget-video .elementor-video {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Elementor Accordion/Toggle */
.elementor-widget-accordion .elementor-accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.elementor-widget-accordion .elementor-tab-title {
    padding: 16px 20px;
    background: var(--gray-50);
    cursor: pointer;
    font-weight: 600;
}

.elementor-widget-accordion .elementor-tab-content {
    padding: 20px;
}

/* Elementor Call to Action */
.elementor-widget-call-to-action {
    background: linear-gradient(135deg, var(--esular-orange) 0%, var(--esular-orange-dark) 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    color: white;
    text-align: center;
}

.elementor-widget-call-to-action .elementor-cta__title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.elementor-widget-call-to-action .elementor-cta__description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* Responsive Elementor Styles */
@media (max-width: 768px) {
    .elementor-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .elementor-button-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .elementor-widget-call-to-action {
        padding: 24px;
    }
}
