/* EVEA Bilişim - Maxsteel ERP Website Styles */

/* CSS Variables - Professional ERP Brand Colors */
:root {
    /* Primary Colors - Professional & Trustworthy */
    --primary-blue: #272c34;      /* Grimsi mavi - professional ve soft */
    --primary-blue-dark: #2D3748; /* Daha koyu grimsi ton */
    --primary-blue-light: #718096; /* Açık grimsi mavi */
    --navy-blue: #1e3a8a;        /* Koyu lacivert - buton için */
    --nav-link-color: #1A202C;    /* Navigation linkleri için koyu gri */

    /* Secondary Colors - Energy & Action */
    --accent-coral: #E53E3E;      /* Daha modern, professional kırmızı-ton */
    --accent-orange: #ffc813;     /* Açık sarımtırak turuncu */
    --accent-orange-light: #ffe57b; /* Çok açık sarı */
    --accent-blue-light: #60A5FA; /* Açık mavi accent */
    --accent-blue-lighter: #93C5FD; /* Çok açık mavi */

    /* Support Colors - Success & Growth */
    --support-emerald: #059669;   /* Professional yeşil */
    --support-teal: #0D9488;     /* Alternatif yeşil */

    /* Neutral Colors - Clean & Modern */
    --text-dark: #1F2937;         /* Daha koyu, okunabilir */
    --text-medium: #4B5563;       /* Orta ton metin */
    --text-light: #6B7280;        /* Hafif metin */
    --text-muted: #9CA3AF;        /* Çok hafif metin */

    /* Surface Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;

    /* Typography - More Professional */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Proxima Nova', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing - More Refined */
    --section-padding: 96px 0;
    --container-padding: 0 24px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography - Modern & Professional */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
}

h6 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-medium);
    font-weight: 400;
}

/* Enhanced Text Styles */
.text-lg {
    font-size: 1.25rem;
    line-height: 1.75;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Buttons - Modern & Professional */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    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: left 0.5s;
}

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

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Primary Button */
.btn-primary {
    background: var(--accent-orange);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-orange-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-medium);
    border-color: var(--gray-300);
}

.btn-ghost:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

/* Header - Modern & Professional */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 1000;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 0.75rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    gap: 1.5rem;
}

.header-content > * {
    flex-shrink: 0;
}

.header-content::before {
    display: none;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 2.50rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover h1::after {
    transform: scaleX(1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-list::before {
    display: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--nav-link-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius);
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-list a:hover {
    color: var(--nav-link-color);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

.nav-list a.active {
    color: var(--nav-link-color);
    background: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    flex-shrink: 0;
}

.header-actions::before {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(26, 54, 93, 0.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle:hover span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:hover span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section - Modern & Impactful */
.hero {
    padding: 0 0 2rem 0;
    min-height: 100vh;
    background: var(--primary-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero-Features Bridge - Smooth Transition */
.hero-features-bridge {
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-blue) 0%, rgba(39, 44, 52, 0.9) 25%, rgba(39, 44, 52, 0.6) 50%, rgba(39, 44, 52, 0.3) 75%, var(--gray-50) 100%);
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    margin-top: 8rem;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-top: 2rem;
}

.hero-text .highlight {
    color: var(--accent-orange);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
}

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

/* Hero Testimonial */
.hero-testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
}

.hero-testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-weight: 600;
}

.hero-testimonial cite {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.hero-image {
    text-align: center;
    position: relative;
    padding: 0.5rem;
}

.hero-image::before {
    display: none;
}

.hero-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    filter: brightness(1.05) contrast(1.1);
}

/* Modern Card Components */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

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

.card-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

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

.card-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--gray-200);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--gray-50);
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(252, 211, 77, 0.3);
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.decoration-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 200, 19, 0.4);
}

.section-header .section-title {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    position: relative;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 2px;
}

.section-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Maxsteel Section - Tab Design */
.why-maxsteel {
    padding: var(--section-padding);
    background: var(--white);
}

.why-tabs {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 0;
}

.tab-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

.tab-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.tab-btn:hover {
    border-color: var(--accent-orange);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    box-shadow: 0 8px 25px rgba(255, 200, 19, 0.3);
}

.tab-btn i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: color 0.3s ease;
    min-width: 24px;
}

.tab-btn.active i {
    color: var(--white);
}

.tab-btn span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.tab-btn.active span {
    color: var(--text-dark);
}

.tab-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tab-info p {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tab-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-medium);
}

.feature-item i {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.tab-image {
    text-align: center;
    position: relative;
}

.tab-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.why-item.featured {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 200, 19, 0.2);
}

.why-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 200, 19, 0.02) 0%, rgba(255, 200, 19, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-item:hover .why-item-bg {
    opacity: 1;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(255, 200, 19, 0.3);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 200, 19, 0.4);
}

.why-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
    position: relative;
}

.why-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.why-benefits {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(255, 200, 19, 0.1);
    color: var(--accent-orange);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 200, 19, 0.2);
}



/* Modular Structure Section - Mind Map */
.modular-structure {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.mind-map {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    min-height: 1000px;
    min-width: 800px;
    display: grid;
    grid-template-areas: 
        "left-top    top       right-top"
        "left-top    center    right-top"
        "left-bottom bottom    right-bottom";
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 5rem;
    align-items: center;
    justify-items: center;
    padding: 6rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 2rem;
    box-shadow: 60px rgba(255, 200, 19, 0.3);
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Mind Map Connection Lines */
.mind-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 200px;
    background: linear-gradient(to top, var(--accent-orange), transparent);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.mind-map::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-orange), transparent);
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Mind Map Connection Lines - JavaScript ile çizilecek */
.mind-map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.mind-map-center {
    grid-area: center;
    text-align: center;
    z-index: 10;
}

.center-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid #374151;
    box-shadow: 0 10px 30px rgba(55, 65, 81, 0.3);
    position: relative;
}

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

.center-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

.center-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.center-overlay h3 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.center-overlay p {
    color: var(--text-medium);
    font-size: 0.8rem;
    margin: 0;
}

/* Module Branches */
.module-branch {
    transition: all 0.3s ease;
    z-index: 2;
    width: 280px;
}

.module-top {
    grid-area: top;
}

.module-left-top {
    grid-area: left-top;
}

.module-left-bottom {
    grid-area: left-bottom;
}

.module-right-top {
    grid-area: right-top;
}

.module-right-bottom {
    grid-area: right-bottom;
}

.module-bottom {
    grid-area: bottom;
}



/* Module Branches */
.module-branch {
    position: absolute;
    transition: all 0.3s ease;
    z-index: 2;
    width: 280px;
}



.module-node {
    background: var(--primary-blue);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid #4b5563;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.module-node:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-orange);
    background: #4b5563;
}

.module-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff !important;
    font-size: 1.25rem;
}

/* Ana sayfa modüler yapı bölümü için ikon ortalama */
.modular-structure .module-icon,
.mind-map .module-icon {
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 1rem !important;
}

.module-icon i {
    color: #ffffff !important;
}

/* Ana sayfa modüler yapı bölümü için ikon içindeki i elementi */
.modular-structure .module-icon i,
.mind-map .module-icon i {
    margin: 0 !important;
    position: static !important;
    transform: none !important;
}

.module-node h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.module-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.module-features span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Technology Section */
.technology {
    padding: var(--section-padding);
    background: var(--white);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h2 {
    color: var(--primary-blue);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-text p {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-medium);
}

.tech-feature i {
    color: var(--accent-orange);
    font-size: 1.25rem;
    width: 24px;
}

.tech-image {
    text-align: center;
}

.tech-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Target Audience Section */
.target-audience {
    padding: var(--section-padding);
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.audience-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.audience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.audience-item:hover::before {
    transform: scaleX(1);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(39, 44, 52, 0.2);
}

.audience-item:hover .audience-icon {
    transform: scale(1.05);
    background: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(255, 200, 19, 0.3);
}

.audience-item h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.audience-item:hover h3 {
    color: var(--accent-orange);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 200, 19, 0.3);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 200, 19, 0.4);
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-number {
    color: var(--accent-orange);
}

.trust-label {
    font-size: 1.125rem;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-label {
    color: var(--primary-blue);
}

/* References Section */
.references {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--accent-orange);
}

/* Floating Elements */
.references::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
    z-index: 1;
}

.references::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float2 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* Additional Floating Elements */
.references .floating-circle-1 {
    position: absolute;
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float3 12s ease-in-out infinite;
    z-index: 1;
}

.references .floating-circle-2 {
    position: absolute;
    top: 65%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: float4 15s ease-in-out infinite;
    z-index: 1;
}

.references .floating-triangle {
    position: absolute;
    top: 35%;
    left: 3%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid rgba(255, 255, 255, 0.2);
    animation: float5 18s ease-in-out infinite;
    z-index: 1;
}

.references .floating-circle-3 {
    position: absolute;
    top: 80%;
    left: 25%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: float6 14s ease-in-out infinite;
    z-index: 1;
}

.references .floating-square {
    position: absolute;
    top: 25%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: float7 16s ease-in-out infinite;
    z-index: 1;
}

.references .floating-oval {
    position: absolute;
    top: 70%;
    right: 35%;
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: float8 13s ease-in-out infinite;
    z-index: 1;
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(8deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-25px) translateX(15px); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(12deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(20deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-25px) rotate(60deg); }
}

@keyframes float8 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}





.references-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.references-header h2 {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: none;
}

.references-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: none;
}

.logo-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
    white-space: nowrap;
    animation: logoScroll 40s linear infinite;
    width: max-content;
}

@keyframes logoScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}



.company-logo {
    max-width: 100%;
    height: 120px !important;
    width: auto !important;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item:hover .company-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.logo-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.logo-item a:hover {
    text-decoration: none;
}



/* CTA Section - Modern & Impactful */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--accent-blue-light), var(--accent-blue-lighter));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
    pointer-events: none;
}

/* Floating Elements */
.cta::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta .floating-circle-1 {
    position: absolute;
    top: 60%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta .floating-circle-2 {
    position: absolute;
    top: 30%;
    left: 70%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

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

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* CTA Button Styling */
.cta .btn-primary {
    background: var(--navy-blue);
    color: var(--white);
    border: 2px solid var(--navy-blue);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    min-width: 280px;
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 500;
}

/* Footer - Modern & Professional */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--accent-orange);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 200, 19, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #ffffff !important;
    position: relative;
}

.footer-bottom p {
    color: #ffffff !important;
}

.scroll-to-top {
    position: absolute;
    right: 0;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: var(--accent-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 200, 19, 0.4);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

/* Company Story */
.company-story {
    padding: var(--section-padding);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image {
    text-align: center;
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Mission & Vision */
.mission-vision {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mv-icon {
    color: var(--accent-orange);
    margin-bottom: 2rem;
}

.mv-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Values */
.values {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-orange);
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Team */
.team {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-orange);
}

    .team-member h3 {
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .member-title {
        color: var(--accent-orange);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    /* Product Overview */
    .product-overview {
        padding: var(--section-padding);
    }

    .overview-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .overview-text h2 {
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
    }

    .overview-text p {
        margin-bottom: 1.5rem;
    }

    .overview-features {
        margin-top: 2rem;
    }

    .overview-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: var(--accent-orange);
    }

    .overview-feature svg {
        flex-shrink: 0;
    }

    .overview-image {
        text-align: center;
    }

    .overview-img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    /* Key Benefits */
    .key-benefits {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .benefit-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-icon {
        color: var(--accent-orange);
        margin-bottom: 1.5rem;
    }

    .benefit-card h3 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    /* Technology Stack */
    .technology-stack {
        padding: var(--section-padding);
        background: var(--gray-50);
    }

    .tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .tech-item {
        background: var(--white);
        padding: 2rem;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--gray-200);
    }

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

    .tech-image {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.tech-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

    .tech-item h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .tech-item p {
        color: var(--text-medium);
        line-height: 1.6;
        margin: 0;
    }

    /* Implementation Process */
    .implementation {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .step {
        background: var(--white);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: relative;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: var(--accent-orange);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 1rem;
    }

    .step h3 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    /* CTA Buttons */
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Modules Overview */
    .modules-overview {
        padding: var(--section-padding);
    }

    /* Modules Grid */
    .modules-grid {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .modules-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .module-card {
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .module-card:hover {
        transform: translateY(-5px);
    }

    .module-header {
        background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
        color: var(--white);
        padding: 2rem;
        text-align: left;
    }

    .module-icon {
        color: var(--accent-orange);
        margin-bottom: 1rem;
    }

    .module-header h3 {
        color: var(--white);
        margin: 0;
    }

    .module-content {
        padding: 2rem;
    }

    .module-content p {
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .module-features {
        list-style: none;
        padding: 0;
    }

    .module-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 1.5rem;
    }

    .module-features li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--support-green);
        font-weight: bold;
    }

    .module-features li:last-child {
        border-bottom: none;
    }

    /* Integration Benefits */
    .integration-benefits {
        padding: var(--section-padding);
    }

    .integration-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .integration-text h3 {
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
    }

    .integration-text p {
        margin-bottom: 1.5rem;
    }

    .integration-features {
        list-style: none;
        padding: 0;
    }

    .integration-features li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
    }

    .integration-features li:before {
        content: "→";
        position: absolute;
        left: 0;
        color: var(--accent-orange);
        font-weight: bold;
    }

    .integration-image {
        text-align: center;
    }

    .integration-img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    /* Sectors Overview */
    .sectors-overview {
        padding: var(--section-padding);
    }

    /* Sectors Grid */
    .sectors-grid {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .sectors-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sector-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .sector-image {
        overflow: hidden;
    }

    .sector-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    .sector-content {
        padding: 2.5rem;
    }

    .sector-content h3 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .sector-content p {
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .sector-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .sector-features li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
    }

    .sector-features li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--support-green);
        font-weight: bold;
    }

    .sector-modules h4 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .module-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .module-tag {
        background: var(--accent-orange);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Sector Benefits */
    .sector-benefits {
        padding: var(--section-padding);
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .benefit-item {
        background: var(--white);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
    }

    .benefit-icon {
        color: var(--accent-orange);
        margin-bottom: 1.5rem;
    }

    .benefit-item h3 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    /* Success Stories */
    .success-stories {
        padding: var(--section-padding);
    }

    .stories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
    }

    .story-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .story-card:hover {
        transform: translateY(-5px);
    }

    .story-image {
        height: 250px;
        overflow: hidden;
    }

    .story-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    .story-content {
        padding: 2rem;
    }

    .story-content h3 {
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .story-subtitle {
        color: var(--accent-orange);
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .story-content p {
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        font-style: italic;
    }

    .story-results {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .result-item {
        text-align: center;
        padding: 1rem;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .result-number {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-orange);
        margin-bottom: 0.5rem;
    }

    .result-label {
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    /* Client Logos */
    .client-logos {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .logo-item {
        background: var(--white);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .logo-item:hover {
        transform: translateY(-5px);
    }

    .logo-placeholder {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-blue);
        color: var(--white);
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
    }

    /* Testimonials */
    .testimonials {
        padding: var(--section-padding);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .testimonial-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-left: 4px solid var(--accent-orange);
    }

    .testimonial-content {
        margin-bottom: 1.5rem;
    }

    .testimonial-content p {
        font-style: italic;
        color: var(--text-dark);
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .testimonial-author {
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
    }

    .author-info h4 {
        color: var(--primary-blue);
        margin-bottom: 0.25rem;
    }

    .author-info p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Workcube Legacy */
    .workcube-legacy {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .legacy-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .legacy-text h2 {
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
    }

    .legacy-text p {
        margin-bottom: 1.5rem;
    }

    .legacy-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        text-align: center;
        padding: 1rem;
        background: var(--white);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: var(--accent-orange);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--white);
    }

    .legacy-image {
        text-align: center;
    }

    .legacy-img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    /* Demo Form Section */
    .demo-form-section {
        padding: var(--section-padding);
    }

    .form-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .form-intro h2 {
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
    }

    .form-intro p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

    .demo-benefits {
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 10px;
        border-left: 4px solid var(--accent-orange);
    }

    .demo-benefits h3 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    .demo-benefits ul {
        list-style: none;
        padding: 0;
    }

    .demo-benefits li {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    /* Form Styles */
    .demo-form {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius);
        font-size: 16px;
        font-family: var(--font-body);
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-orange);
    }

    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: #e74c3c;
    }

    .checkbox-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .checkbox-item input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

    .checkbox-item label {
        margin: 0;
        font-size: 14px;
        cursor: pointer;
    }

    .checkbox-item span {
        font-size: 14px;
        cursor: pointer;
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: var(--section-padding);
        background-color: var(--light-gray);
    }

    .reasons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .reason-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .reason-card:hover {
        transform: translateY(-5px);
    }

    .reason-icon {
        color: var(--accent-orange);
        margin-bottom: 1.5rem;
    }

    .reason-card h3 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .header-content {
        padding: 0.75rem 1.5rem;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .logo-icon {
        font-size: 1.75rem;
    }

    .header-actions::before {
        display: none;
    }

    .nav-list::before {
        display: none;
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 6rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Target Audience Grid */
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Trust Indicators */
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* References Section */
    .references-header h2 {
        font-size: 1.875rem;
    }
    
    .logo-grid {
        gap: 1.5rem;
    }
    
    .modules-container {
        flex-direction: column;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h2 {
        font-size: 2.25rem;
    }

    .hero-text p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-testimonial {
        margin: 2rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
        color: var(--white);
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.9rem;
    }

    /* Cards & Grids */
    .features-grid,
    .benefits-grid,
    .tech-grid,
    .stories-grid,
    .testimonials-grid,
    .why-grid,
    .modules-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-tabs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-navigation {
        flex-direction: row;
        overflow-x: auto;
        max-width: 100%;
        padding-bottom: 1rem;
    }
    
    .tab-btn {
        min-width: 200px;
        flex-shrink: 0;
    }
    
    .tab-pane.active {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mind-map {
        min-height: 600px;
    }
    
    .mind-map-center {
        position: relative;
        transform: none;
        margin-bottom: 3rem;
    }
    
    .center-image {
        width: 150px;
        height: 150px;
    }
    
    .mind-map-branches {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .module-branch {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .branch-line {
        display: none;
    }

    .sector-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Forms & Content */
    .form-container,
    .overview-content,
    .story-content,
    .legacy-content,
    .integration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .checkbox-group,
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Navigation */
    .nav-list {
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h2 {
        font-size: 1.875rem;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Cards */
    .feature-card,
    .benefit-card,
    .benefit-item,
    .reason-card {
        padding: 1.5rem 1rem;
    }
    
    /* Target Audience Grid */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-item {
        padding: 2rem 1.5rem;
    }
    
    /* Trust Indicators */
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 2rem 1.5rem;
    }
    
    /* References Section */
    .references-header h2 {
        font-size: 1.5rem;
    }
    
    .references-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 1.5rem;
    }
    
    .company-logo {
        max-height: 60px;
    }

    /* Module Cards */
    .module-card {
        padding: 1.5rem;
    }

    .sector-card {
        padding: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Maxsteel ERP Page Specific Styles */

/* Maxsteel Hero Section */
.maxsteel-hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.maxsteel-hero .hero-main {
    margin-bottom: 2rem;
}

.maxsteel-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.maxsteel-hero .hero-text h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.maxsteel-hero .hero-text h2 {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.maxsteel-hero .hero-text p {
    color: var(--gray-200);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
}

.maxsteel-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Modular Architecture Section */
.modular-architecture {
    padding: var(--section-padding);
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.modular-architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 200, 19, 0.05) 0%, rgba(113, 128, 150, 0.05) 100%);
    pointer-events: none;
}

/* Modular Hero Center */
.modular-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.modular-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--accent-orange);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.bar-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bar-icon i {
    font-size: 1.75rem;
    color: var(--accent-orange);
}

.modular-bar h3 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.modular-bar span {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
    flex-shrink: 0;
}

/* Modules Hub */
.modules-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}



.module-category {
    text-align: center;
}

.module-category h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-orange);
    font-weight: 600;
    font-family: var(--font-heading);
}

.module-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
}



.module-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.module-item .module-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(39, 44, 52, 0.2);
    position: relative;
}

.module-item .module-icon i {
    font-size: 1.5rem;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.module-item h5 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.module-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Modular Features */
.modular-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive için Modules Hub */
@media (max-width: 768px) {
    .modules-hub {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .module-item {
        min-height: 180px;
        padding: 1.25rem;
    }
    
    .module-item .module-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .module-item .module-icon i {
        font-size: 1.25rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        line-height: 1;
    }
    
    .modular-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.feature-highlight .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-highlight .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-highlight .feature-content h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-highlight .feature-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Design for Modular Architecture */
@media (max-width: 1024px) {
    .modules-hub {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modular-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modular-center {
        padding: 2rem 3rem;
    }
    
    .center-logo {
        width: 80px;
        height: 80px;
    }
    
    .center-logo i {
        font-size: 2.5rem;
    }
    
    .modular-center h3 {
        font-size: 1.5rem;
    }
    
    .module-category h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modular-center {
        padding: 1.5rem 2rem;
    }
    
    .center-logo {
        width: 60px;
        height: 60px;
    }
    
    .center-logo i {
        font-size: 2rem;
    }
    
    .modular-center h3 {
        font-size: 1.25rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Sector Features Section */
section.sector-features {
    padding: calc(var(--section-padding) * 0.6) !important;
    padding-top: calc(var(--section-padding) * 0.8) !important;
    background: var(--white);
}

/* Process Chart Color Variables */
:root {
    --process-blue: #3B82F6;      /* Mavi */
    --process-lila: #8B5CF6;      /* Lila */
    --process-green: #10B981;     /* Yeşil */
    --process-purple: #7C3AED;    /* Mor */
    --process-orange: #F59E0B;    /* Turuncu */
    --process-salmon: #F97316;    /* Yavruağzı */
}

/* Ana Kolon Accent Çizgileri */
.module-category.production .module-item {
    border-left: 4px solid var(--process-blue) !important; /* Üretim Süreçleri - Mavi */
}

.module-category.business .module-item {
    border-left: 4px solid var(--process-lila) !important; /* İş Süreçleri - Lila */
}

.module-category.support .module-item {
    border-left: 4px solid var(--process-green) !important; /* Destek Sistemleri - Yeşil */
}

/* Başlık Accent Çizgileri */
.module-category.production h4 {
    border-left: 4px solid var(--process-blue) !important; /* Üretim Süreçleri - Mavi */
    padding-left: 1rem;
}

.module-category.business h4 {
    border-left: 4px solid var(--process-lila) !important; /* İş Süreçleri - Lila */
    padding-left: 1rem;
}

.module-category.support h4 {
    border-left: 4px solid var(--process-green) !important; /* Destek Sistemleri - Yeşil */
    padding-left: 1rem;
}

/* Sector Tabs */
.sector-tabs {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 0;
}

.sector-tabs .tab-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

.sector-tabs .tab-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.sector-tabs .tab-btn:hover {
    border-color: var(--accent-orange);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.sector-tabs .tab-btn.active {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    box-shadow: 0 8px 25px rgba(255, 200, 19, 0.3);
}



.sector-tabs .tab-btn i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: color 0.3s ease;
    min-width: 24px;
}

.sector-tabs .tab-btn.active i {
    color: var(--white);
}

.sector-tabs .tab-btn span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.sector-tabs .tab-btn.active span {
    color: var(--white);
}

.sector-tabs .tab-content {
    position: relative;
    min-height: 500px;
}

.sector-tabs .tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.sector-tabs .tab-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sector-tabs .tab-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.sector-tabs .tab-info p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sector-tabs .tab-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sector-tabs .tab-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sector-tabs .tab-features .feature-item i {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.sector-tabs .tab-features .feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.sector-tabs .tab-image {
    text-align: center;
}

.sector-tabs .tab-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design for Sector Tabs */
@media (max-width: 1024px) {
    .sector-tabs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sector-tabs .tab-navigation {
        position: static;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sector-tabs .tab-btn {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .sector-tabs .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .sector-tabs .tab-btn {
        min-width: 250px;
    }
    
    .sector-tabs .tab-pane.active {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sector-tabs .tab-features {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .sector-tabs .tab-btn {
        padding: 1rem 1.5rem;
        min-width: 200px;
    }
    
    .sector-tabs .tab-btn i {
        font-size: 1.25rem;
    }
    
    .sector-tabs .tab-btn span {
        font-size: 0.9rem;
    }
}

/* Technical Architecture Section */
.technical-architecture {
    padding: calc(var(--section-padding) * 0.6);
    background: var(--white);
    position: relative;
}

/* Tech Compact Layout */
.tech-compact-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Tech Text Content */
.tech-text-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tech-text-content > p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Tech Feature Blocks */
.tech-feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature-block {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--accent-orange);
}

.tech-feature-block h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.tech-feature-block p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Tech Visual Content */
.tech-visual-content {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

/* Tech Main Image */
.tech-main-image {
    position: relative;
    margin-bottom: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tech-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.tech-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    text-align: center;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.overlay-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tech-image-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tech-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.tech-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.tech-feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tech-feature-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Technical Architecture */
@media (max-width: 1024px) {
    .tech-main-content {
        gap: 3rem;
    }
    
    .tech-text-content h3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .tech-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .tech-text-content h3 {
        font-size: 2rem;
    }
    
    .tech-text-content > p {
        font-size: 1rem;
    }
    
    .tech-feature-blocks {
        gap: 1.5rem;
    }
    
    .tech-feature-block {
        padding: 1.25rem;
    }
    
    .tech-visual-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tech-text-content h3 {
        font-size: 1.75rem;
    }
    
    .tech-feature-item {
        padding: 1rem;
    }
    
    .tech-feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .tech-feature-icon i {
        font-size: 1.125rem;
    }
}

/* Business Intelligence Section */
.business-intelligence {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.business-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 200, 19, 0.02) 0%, rgba(113, 128, 150, 0.02) 100%);
    pointer-events: none;
}

/* BI Hero Section */
.bi-hero {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.bi-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bi-hero-text h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bi-hero-text p {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.bi-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bi-chart-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-orange);
}

.bi-chart-item {
    text-align: center;
    color: var(--text-dark);
}

.chart-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.chart-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.chart-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* BI Features Showcase */
.bi-features-showcase {
    position: relative;
    z-index: 2;
}

.bi-feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.bi-feature-row:last-child {
    margin-bottom: 0;
}

.bi-feature-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.bi-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.bi-feature-visual {
    flex-shrink: 0;
}

.bi-chart-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.chart-svg {
    transform: rotate(-90deg);
}

.chart-bg {
    stroke: var(--gray-200);
}

.chart-progress {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s ease;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.chart-center i {
    font-size: 1.5rem;
    color: inherit;
}

.chart-percentage {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Chart specific colors */
.chart-orange .chart-center i,
.chart-orange .chart-percentage {
    color: #f59e0b !important; /* Turuncu */
}

.chart-green .chart-center i,
.chart-green .chart-percentage {
    color: #10b981 !important; /* Yeşil */
}

.chart-red .chart-center i,
.chart-red .chart-percentage {
    color: #ef4444 !important; /* Kırmızı */
}

.chart-purple .chart-center i,
.chart-purple .chart-percentage {
    color: #8b5cf6 !important; /* Mor */
}

.chart-orange-2 .chart-center i,
.chart-orange-2 .chart-percentage {
    color: #f59e0b !important; /* Turuncu */
}

.chart-blue .chart-center i,
.chart-blue .chart-percentage {
    color: #06b6d4 !important; /* Mavi */
}

.bi-feature-content {
    flex: 1;
}

.bi-feature-content h4 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.bi-feature-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bi-progress-bar {
    position: relative;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-orange);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-orange);
}

/* Responsive Design for Business Intelligence */
@media (max-width: 1024px) {
    .bi-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bi-feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bi-hero-text h3 {
        font-size: 2rem;
    }
    
    .bi-hero-text p {
        font-size: 1.125rem;
    }
    
    .bi-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bi-chart-circle {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .bi-hero-text h3 {
        font-size: 1.75rem;
    }
    
    .bi-feature-content h4 {
        font-size: 1.25rem;
    }
    
    .bi-feature-item {
        padding: 1.5rem;
    }
    
    .bi-chart-circle {
        width: 100px;
        height: 100px;
    }
    
    .chart-center {
        width: 50px;
        height: 50px;
    }
    
    .chart-center i {
        font-size: 1.25rem;
        color: inherit;
    }
}

/* Digital Transformation Section */
.digital-transformation {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.kpi-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.kpi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.kpi-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Usage Scenarios Section */
.usage-scenarios {
    padding: var(--section-padding);
}

.scenarios-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.scenario-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.scenario-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scenario-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.scenario-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.scenario-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Maxsteel CTA Section */
.maxsteel-cta {
    background: var(--accent-orange);
    color: var(--text-dark);
    text-align: center;
}

.maxsteel-cta h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.maxsteel-cta p {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.maxsteel-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Maxsteel Page */
@media (max-width: 768px) {
    .maxsteel-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .maxsteel-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .maxsteel-hero .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .maxsteel-hero .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5rem;
        overflow-x: auto;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .hero-stats-section {
        padding-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .bi-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenario-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .maxsteel-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .bi-features {
        grid-template-columns: 1fr;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .maxsteel-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Process Flow Chart Styles */
.process-flow-container {
    margin-top: 3rem;
}

.process-flow-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.process-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.process-title:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    position: relative;
    padding: 2rem 0;
}



.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.flow-arrow {
    color: var(--white) !important;
    font-size: 1.5rem;
    margin: 0 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}



.process-step:last-child {
    margin-right: 0;
}

.step-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-orange);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: scale(1.05);
}

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

.step-content {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 0.75rem;
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}



/* Responsive Design for Process Flow */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .process-step {
        max-width: 100%;
        margin-right: 0;
        border-radius: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .step-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .process-flow-section {
        padding: 1.5rem;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .step-image {
        width: 80px;
        height: 80px;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
}

/* Responsive Design for Technology Stack */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .tech-item {
        padding: 1.5rem;
    }
    
    .tech-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        gap: 1rem;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .tech-image {
        height: 150px;
    }
    
    .tech-item h3 {
        font-size: 1.1rem;
    }
    
    .tech-item p {
        font-size: 0.9rem;
    }
}

/* ===== MODÜLLER STİLLERİ ===== */

/* Ana Modül Kartları */
.module-main-card {
    background: #f5f5f5 !important; /* Çok hafif gri - sayfa background'ından sadece biraz daha açık */
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important; /* Hafif gölge */
    overflow: hidden !important;
    margin-bottom: 2rem !important;
}

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

/* Modül Header */
.module-header {
    padding: 2rem 2rem 2rem 1rem !important;
    display: flex;
    align-items: left !important;
    gap: 1.5rem;
    color: var(--white);
    justify-content: flex-start !important;
    text-align: left !important;
}

/* Modül Header içindeki tüm elementler için text-align: left */
.module-header * {
    text-align: left !important;
}

.module-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: left !important;
}

/* Modül Header h3 için daha spesifik kural */
.module-header h3,
.module-header h3 * {
    text-align: left !important;
}

.module-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: left;
    justify-content: flex-start !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Modül Icon için daha spesifik kural */
.module-icon,
.module-icon * {
    justify-content: flex-start !important;
}

/* Modül İçeriği */
.module-content {
    padding: 2rem;
}

.module-sub-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sub-card {
    background: var(--white) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

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

.sub-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

.sub-card li {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.sub-card li:before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sub-card li:last-child {
    margin-bottom: 0;
}

/* Modül Görsel Kartı */
.module-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    overflow: hidden;
    min-height: 200px !important;
    height: 200px !important;
}

/* Modül Image için daha spesifik kural */
.module-image,
.module-image * {
    min-height: 200px !important;
    height: 200px !important;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* Modül Renkleri */
.module-stock .module-header {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.module-production .module-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.module-purchase .module-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.module-sales .module-header {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.module-quality .module-header {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.module-intelligence .module-header {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.module-hr .module-header {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.module-finance .module-header {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.module-outsourcing .module-header {
    background: linear-gradient(135deg, #92400E 0%, #78350F 100%);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .module-sub-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .module-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    
    .module-header h3 {
        font-size: 1.5rem;
    }
    
    .module-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .module-content {
        padding: 1.5rem;
    }
    
    .module-sub-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sub-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .module-header {
        padding: 1rem;
    }
    
    .module-header h3 {
        font-size: 1.3rem;
    }
    
    .module-content {
        padding: 1rem;
    }
    
    .sub-card {
        padding: 1rem;
    }
    
    .sub-card h4 {
        font-size: 1rem;
    }
    
    .sub-card li {
        font-size: 0.85rem;
    }
}

/* Modül Header için en güçlü override kuralları */
.module-main-card .module-header {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem !important;
}

.module-main-card .module-header * {
    text-align: left !important;
}

.module-main-card .module-header h3 {
    text-align: left !important;
    margin-left: 0 !important;
}

/* H3 için ekstra güçlü override */
.module-main-card .module-header h3,
.module-main-card .module-header h3 *,
.module-main-card .module-header h3::before,
.module-main-card .module-header h3::after {
    text-align: left !important;
    text-align-last: left !important;
    direction: ltr !important;
}

/* H3 için daha spesifik ve güçlü kurallar */
.module-main-card .module-header h3 {
    text-align: left !important;
    text-align-last: left !important;
    direction: ltr !important;
    float: left !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.module-main-card .module-header .module-icon {
    justify-content: center !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: flex !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.module-main-card .module-header .module-icon i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
}

/* Modül Image için en güçlü override kuralları */
.module-main-card .module-image {
    min-height: 200px !important;
    height: 200px !important;
    max-height: 200px !important;
}

.module-main-card .module-image img {
    height: 200px !important;
    object-fit: cover !important;
}

/* Sub-card'lar için beyaz arka plan korunacak */
.module-main-card .sub-card {
    background: var(--white) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    padding: 1.5rem !important;
}

/* Modüller Sayfası için Yeni Section Stilleri */

/* Hero Section - Sadece Modüller Sayfasında */
.moduller-page .hero-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Hero-Features Bridge - Sadece Modüller Sayfasında */
.moduller-page .hero-features-bridge {
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-blue) 0%, rgba(39, 44, 52, 0.9) 25%, rgba(39, 44, 52, 0.6) 50%, rgba(39, 44, 52, 0.3) 75%, var(--gray-50) 100%);
    position: relative;
    z-index: 1;
}

.moduller-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.moduller-page .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.moduller-page .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--white);
}

.moduller-page .hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 500;
}

.moduller-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.moduller-page .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.moduller-page .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.moduller-page .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.moduller-page .hero-image {
    text-align: center;
}

.moduller-page .hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Neden Maxsteel ERP Section - Sadece Modüller Sayfasında */
.moduller-page .why-maxsteel-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.moduller-page .why-maxsteel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffa500" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.moduller-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.moduller-page .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(255, 165, 0, 0.1);
}

.moduller-page .section-header p {
    font-size: 1rem;
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.8;
}

.moduller-page .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.moduller-page .feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 165, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.moduller-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #ff8c00, var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.moduller-page .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.2);
}

.moduller-page .feature-card:hover::before {
    transform: scaleX(1);
}

.moduller-page .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.moduller-page .feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.moduller-page .feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.moduller-page .feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.moduller-page .feature-card:hover h3 {
    color: var(--accent-orange);
}

.moduller-page .feature-card p {
    color: var(--text);
    line-height: 1.5;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.moduller-page .feature-card:hover p {
    opacity: 1;
}

/* Teknik Özellikler Section - Sadece Modüller Sayfasında */
.moduller-page .technical-features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.moduller-page .technical-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffa500" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.moduller-page .tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.moduller-page .tech-image {
    text-align: center;
    position: relative;
    order: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moduller-page .tech-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-left: 1rem;
    order: 2;
}

.moduller-page .tech-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.moduller-page .tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-orange), #ff8c00);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.moduller-page .tech-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.15);
}

.moduller-page .tech-item:hover::before {
    transform: scaleY(1);
}

.moduller-page .tech-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease;
}

.moduller-page .tech-item:hover h3 {
    color: var(--accent-orange);
}

.moduller-page .tech-item h3 i {
    color: var(--accent-orange);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.moduller-page .tech-item:hover h3 i {
    transform: scale(1.1);
}

.moduller-page .tech-item p {
    color: var(--text);
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.moduller-page .tech-item:hover p {
    opacity: 1;
}

.moduller-page .tech-image {
    text-align: center;
    position: relative;
}

.moduller-page .tech-img {
    width: 100%;
    max-width: 450px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
}

.moduller-page .tech-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
    filter: brightness(1.1) contrast(1.1);
}

/* Responsive Design - Sadece Modüller Sayfasında */
@media (max-width: 1200px) {
    .moduller-page .hero-content {
        gap: 3rem;
    }
    
    .moduller-page .tech-content {
        gap: 3rem;
    }
    
    .moduller-page .features-grid {
        gap: 1rem;
    }
}

@media (max-width: 1000px) {
    .moduller-page .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .moduller-page .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .moduller-page .tech-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .moduller-page .tech-image {
        order: 1;
        height: auto;
        margin-bottom: 2rem;
    }
    
    .moduller-page .tech-text {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding-left: 0;
        order: 2;
    }
    
    .moduller-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .moduller-page .hero-section {
        padding: 4rem 0;
    }
    
    .moduller-page .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .moduller-page .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .moduller-page .stat-number {
        font-size: 2rem;
    }
    
    .moduller-page .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .moduller-page .why-maxsteel-section,
    .moduller-page .technical-features-section,
    .moduller-page .integration-benefits {
        padding: 3rem 0;
    }
    
    .moduller-page .section-header h2 {
        font-size: 1.8rem;
    }
    
    .moduller-page .feature-card {
        padding: 1.5rem;
    }
    
    .moduller-page .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .moduller-page .feature-icon i {
        font-size: 1.5rem;
    }
    
    .moduller-page .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .moduller-page .tech-text {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 0;
        order: 2;
    }
    
    .moduller-page .tech-image {
        order: 1;
        height: auto;
        margin-bottom: 1.5rem;
    }
    
    .moduller-page .tech-img {
        max-width: 400px;
        height: auto;
    }
    
    .moduller-page .tech-item {
        padding: 1.5rem;
    }
    
    .moduller-page .integration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .moduller-page .integration-visual {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .moduller-page .integration-features {
        order: 2;
    }
    
    .moduller-page .integration-img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .moduller-page .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .moduller-page .feature-card {
        padding: 1.2rem;
    }
    
    .moduller-page .tech-item {
        padding: 1.2rem;
    }
    
    .moduller-page .section-header h2 {
        font-size: 1.6rem;
    }
    
    .moduller-page .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .moduller-page .feature-card p {
        font-size: 0.9rem;
    }
    
    .moduller-page .tech-content {
        gap: 1.5rem;
    }
    
    .moduller-page .tech-text {
        gap: 0.8rem;
    }
    
    .moduller-page .tech-image {
        margin-bottom: 1rem;
    }
    
    .moduller-page .tech-img {
        max-width: 350px;
        height: auto;
    }
    
    .moduller-page .tech-item {
        padding: 1rem;
    }
    
    .moduller-page .tech-item h3 {
        font-size: 0.95rem;
    }
    
    .moduller-page .tech-item p {
        font-size: 0.85rem;
    }
}

/* Modüller Arası Entegrasyon Section - Sadece Modüller Sayfasında */
.moduller-page .integration-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.moduller-page .integration-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffa500" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.moduller-page .integration-header {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.moduller-page .integration-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: none;
}

.moduller-page .integration-header p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
    max-width: none;
}

.moduller-page .integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.moduller-page .integration-visual {
    text-align: center;
}

.moduller-page .integration-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
}

.moduller-page .integration-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
    filter: brightness(1.1) contrast(1.1);
}

.moduller-page .integration-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.moduller-page .integration-features .feature {
    margin-bottom: 0;
}

.moduller-page .integration-features .feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.moduller-page .integration-features .feature p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Modüller Sayfası için Özel Maxsteel Hero Stilleri */
.moduller-page .maxsteel-hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.moduller-page .maxsteel-hero .hero-main {
    margin-bottom: 2rem;
}

.moduller-page .maxsteel-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.moduller-page .maxsteel-hero .hero-text h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.moduller-page .maxsteel-hero .hero-text h2 {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.moduller-page .maxsteel-hero .hero-text p {
    color: var(--gray-200);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.moduller-page .maxsteel-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Moduller Sayfası için Hero Stats Stilleri */
.moduller-page .maxsteel-hero .hero-stats-section {
    margin-top: 2rem;
}

.moduller-page .maxsteel-hero .hero-stats {
    display: flex;
    gap: 1rem;
    width: 100%;
    overflow-x: auto;
}

.moduller-page .maxsteel-hero .stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.moduller-page .maxsteel-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.moduller-page .maxsteel-hero .stat-label {
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
}





/* Kurucularımız Section */
.founders-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.founders-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.founders-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.founders-section .section-header p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.founder-image {
    height: 300px;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.founder-info {
    padding: 2rem;
}

.founder-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Misyon & Vizyon Section */
.mission-vision-section {
    padding: 12rem 0 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content,
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.vision-content {
    margin-top: 4rem;
}

.mission-text,
.vision-text {
    padding-right: 2rem;
}

.vision-text {
    padding-right: 0;
    padding-left: 2rem;
}

.mission-text h2,
.vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.mission-text p,
.vision-text p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.1rem;
}

.mission-image,
.vision-image {
    text-align: center;
}

.mission-img,
.vision-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mission-img:hover,
.vision-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Neler Yapıyoruz Section */
.what-we-do-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.what-we-do-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.what-we-do-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.what-we-do-section .section-header p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tecrübemiz Section */
.experience-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.experience-text p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.experience-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.experience-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.experience-image {
    text-align: center;
}

.experience-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Değerlerimiz Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.values-section .section-header p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* SSS Sayfası Stilleri */
.sss-hero {
    padding: 10rem 0 4.8rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sss-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sss-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sss-hero .hero-text p {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sss-hero .hero-image {
    text-align: center;
}

.sss-hero .hero-img {
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* SSS Hero-Features Bridge */
.sss-hero-bridge {
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-blue-dark) 0%, rgba(39, 44, 52, 0.9) 25%, rgba(39, 44, 52, 0.6) 50%, rgba(39, 44, 52, 0.3) 75%, var(--gray-50) 100%);
    position: relative;
    z-index: 1;
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    padding: 12rem 0 5rem 0; /* Top padding arttırıldı */
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero .hero-text p {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.contact-hero .hero-cta .btn i {
    margin-right: 0.5rem; /* İkon ve yazı arasına boşluk */
}

.contact-hero .hero-image {
    text-align: center;
}

.contact-hero .hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Hero Bridge */
.contact-hero-bridge {
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-blue-dark) 0%, rgba(39, 44, 52, 0.9) 25%, rgba(39, 44, 52, 0.6) 50%, rgba(39, 44, 52, 0.3) 75%, var(--gray-50) 100%);
    position: relative;
    z-index: 1;
}

/* Contact Info & Maps Section */
.contact-info-maps-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-maps-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr; /* Sol kolon daha geniş, sağ kolon biraz dar */
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

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

.contact-info-column .section-header {
    text-align: left;
    margin-bottom: 0;
}

.contact-info-column .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info-column .section-header p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 380px; /* Sol kolon genişliği daha da arttırıldı */
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1rem;
    color: var(--white);
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-info-text p a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-text p a:hover {
    color: var(--accent-orange);
}



.maps-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maps-column .section-header {
    text-align: left;
    margin-bottom: 0;
}

.maps-column .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.maps-column .section-header p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.maps-column .maps-container {
    flex: 1;
    min-height: 450px; /* Widget yüksekliği daha da azaltıldı */
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.maps-column .maps-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 450px !important; /* iframe yüksekliği de daha da azaltıldı */
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.contact-card p a:hover {
    color: var(--accent-orange);
}

.contact-status {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Maps Section */
.maps-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.maps-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.maps-container iframe {
    border-radius: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--accent-orange);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, var(--accent-orange-light) 0%, var(--white) 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--gray-50) 100%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .founders-grid,
    .mission-vision-grid,
    .services-grid,
    .values-grid {
        gap: 2rem;
    }
}

@media (max-width: 1000px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-text,
    .vision-text {
        padding: 0;
        order: 1;
    }
    
    .mission-image,
    .vision-image {
        order: 2;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .sss-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sss-hero .hero-text {
        order: 1;
    }
    
    .sss-hero .hero-image {
        order: 2;
    }
    
    .sss-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-hero .hero-text {
        order: 1;
    }
    
    .contact-hero .hero-image {
        order: 2;
    }
    
    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-cta {
        justify-content: center;
    }
    
    .contact-maps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-column .section-header,
    .maps-column .section-header {
        text-align: center;
    }
    
    .maps-column .maps-container {
        min-height: 500px;
    }
    
    .maps-column .maps-container iframe {
        min-height: 500px !important;
    }
    
    .contact-info-row {
        padding: 0.3rem 0;
        gap: 0.8rem;
    }
    
    .contact-info-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 8rem 0 4rem 0;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .sss-hero {
        padding: 8rem 0 2.4rem 0;
    }
    
    .sss-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .sss-hero .hero-text p {
        font-size: 1.1rem;
    }
    
    .contact-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .contact-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-text p {
        font-size: 1.1rem;
    }
    
    .contact-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-maps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-column .section-header h2,
    .maps-column .section-header h2 {
        font-size: 2rem;
    }
    
    .maps-column .maps-container {
        min-height: 450px;
    }
    
    .maps-column .maps-container iframe {
        min-height: 450px !important;
    }
    
    .contact-info-row {
        padding: 0.25rem 0;
        gap: 0.7rem;
    }
    
    .contact-info-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-info-text h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .founders-section,
    .what-we-do-section,
    .experience-section,
    .values-section {
        padding: 3rem 0;
    }
    
    .mission-vision-section {
        padding: 8rem 0 3rem 0;
    }
    
    .founders-section .section-header h2,
    .what-we-do-section .section-header h2,
    .experience-text h2,
    .values-section .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-info {
        padding: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .service-card,
    .value-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 7rem 0 2rem 0;
    }
    
    .sss-hero {
        padding: 6rem 0 1.8rem 0;
    }
    
    .sss-hero .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .sss-hero .hero-text p {
        font-size: 1rem;
    }
    
    .contact-hero {
        padding: 6rem 0 2rem 0; /* Top padding arttırıldı */
    }
    
    .contact-hero .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero .hero-text p {
        font-size: 1rem;
    }
    
    .contact-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-hero .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-maps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-column .section-header h2,
    .maps-column .section-header h2 {
        font-size: 1.8rem;
    }
    
    .maps-column .maps-container {
        min-height: 400px;
    }
    
        .maps-column .maps-container iframe {
        min-height: 400px !important;
    }
    



    
    .contact-info-row {
        padding: 0.2rem 0;
        gap: 0.6rem;
    }
    
    .contact-info-icon {
        width: 28px;
        height: 28px;
    }
    
    .contact-info-text h3 {
        font-size: 0.95rem;
    }
    
    .contact-info-text p {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .founders-section .section-header h2,
    .what-we-do-section .section-header h2,
    .experience-text h2,
    .values-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .founder-info h3 {
        font-size: 1.3rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card h3,
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    /* Contact Form Mobile Responsive */
    .contact-form-section {
        padding: 3rem 0;
    }
    
}

/* Contact Info & Maps Section - İkinci Kopya için CSS */
.contact-info-maps-section-copy {
    padding: 5rem 0;
    background: var(--white);
}

.contact-maps-grid-copy {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-column-copy {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-column-copy .section-header-copy {
    text-align: left;
    margin-bottom: 0;
}

.contact-info-column-copy .section-header-copy h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info-column-copy .section-header-copy p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-image-copy {
    text-align: center;
    margin: 1rem 0;
}

.contact-hero-img-copy {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}



.contact-form-column-copy {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-column-copy .section-header-copy {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form-column-copy .section-header-copy h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: none;
    font-family: var(--font-heading);
}

.contact-form-column-copy .section-header-copy p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-family: var(--font-body);
}

.contact-form-container-copy {
    flex: 1;
    background: var(--accent-orange);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
    border: none;
}

.contact-form-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-copy label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.form-group-copy input,
.form-group-copy textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    font-family: var(--font-body);
}

.form-group-copy input:focus,
.form-group-copy textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 200, 19, 0.1);
}

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

.form-group-copy textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-copy .btn {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-copy .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
    background: var(--primary-blue);
}

/* Mobile Responsive için ikinci kopya */
@media (max-width: 768px) {
    .contact-maps-grid-copy {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-column-copy .section-header-copy h2,
    .maps-column-copy .section-header-copy h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container-copy {
        padding: 1.5rem;
    }
    
    .form-row-copy {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-hero-img-copy {
        max-width: 100%;
        height: 180px;
    }
    

}

/* Referanslar Sayfası Stilleri */

/* Referanslar Sayfası Özel Stilleri */
.references-page .hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.references-page .hero-subtitle {
    color: var(--accent-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* Referanslar Bölümü */
.references-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.references-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.references-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.references-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Referanslar Grid */
.references-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reference-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.reference-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

/* Logo Bölümü */
.reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo {
    border-color: var(--accent-orange);
    background: var(--white);
}

.company-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-item:hover .company-logo {
    filter: grayscale(0%);
}

/* İçerik Bölümü */
.reference-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.reference-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visible-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-family: var(--font-body);
}

.hidden-text {
    display: none;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.hidden-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.hidden-text p:last-child {
    margin-bottom: 0;
}

/* Devamını Oku Butonu */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    align-self: flex-start;
}

.read-more-btn:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 19, 0.3);
}

.read-more-btn.expanded {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .reference-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .reference-logo {
        align-self: center;
        max-width: 150px;
    }
    
    .company-logo {
        max-width: 100px;
        max-height: 60px;
    }
    
    .references-section .section-header h2 {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .read-more-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    
    .reference-item {
        padding: 1rem;
    }
    
    .references-section {
        padding: 3rem 0;
    }
}

/* Success Message */
.success-message {
    background: var(--support-emerald);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.success-message i {
    font-size: 1.2rem;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}
